diff --git a/.vscode/settings.json b/.vscode/settings.json index 6bc12e3..aa07064 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,16 +1,16 @@ { - "eslint.workingDirectories": [ - { - "mode": "auto" - } - ], - "editor.defaultFormatter": "biomejs.biome", - "editor.formatOnPaste": true, - "editor.formatOnSave": true, - "[typescript]": { - "editor.defaultFormatter": "biomejs.biome" - }, - "[json]": { - "editor.defaultFormatter": "biomejs.biome" - } + "eslint.workingDirectories": [ + { + "mode": "auto" + } + ], + "editor.defaultFormatter": "biomejs.biome", + "editor.formatOnPaste": true, + "editor.formatOnSave": true, + "[typescript]": { + "editor.defaultFormatter": "biomejs.biome" + }, + "[json]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + } } diff --git a/README.md b/README.md index 01021b5..e20bec3 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ We recommend using [mise](https://mise.jdx.dev/) for managing tool versions. A ` # Or start a specific service pnpm --filter @atlas/cyclist-profile dev + pnpm --filter @atlas/bicycle-racks dev ``` 5. **Building:** @@ -68,6 +69,7 @@ We recommend using [mise](https://mise.jdx.dev/) for managing tool versions. A ` # Or build a specific application pnpm --filter @atlas/cyclist-profile build + pnpm --filter @atlas/bicycle-racks build ``` 6. **Testing:** @@ -77,6 +79,7 @@ We recommend using [mise](https://mise.jdx.dev/) for managing tool versions. A ` # Or test a specific application pnpm --filter @atlas/cyclist-profile test + pnpm --filter @atlas/bicycle-racks test ``` 7. **Code Quality:** @@ -101,7 +104,8 @@ atlas/ │ └── workflows/ # GitHub Actions workflows ├── apps/ # Applications │ ├── docs/ # API documentation site -│ └── cyclist-profile/ # Cyclist profile service +│ ├── cyclist-profile/ # Cyclist profile service +│ └── bicycle-racks/ # Bicycle parking facilities service ├── docs/ # Documentation │ ├── CREATE_NEW_SERVICE.md # Guide for creating new services │ ├── SCAFFOLDING_TOOL.md # Scaffolding tool documentation diff --git a/apps/bicycle-racks/.env.example b/apps/bicycle-racks/.env.example new file mode 100644 index 0000000..fdd12fd --- /dev/null +++ b/apps/bicycle-racks/.env.example @@ -0,0 +1,25 @@ +# Environment Configuration + +# Node Environment +NODE_ENV=development + +# Logging +LOG_LEVEL=info + +# Server +PORT=3005 + +# Database +DATABASE_URL=postgres://postgres:postgres@localhost:5432/atlas_dev + +# Or use individual settings: +DB_HOST=localhost +DB_PORT=5432 +DB_USER=postgres +DB_PASSWORD=postgres +DB_NAME=atlas_dev + +# SSL Configuration +# Path to SSL CA certificate for production databases (e.g., Digital Ocean) +# When set, SSL will be automatically enabled +# DATABASE_SSL_CA=/path/to/ca-certificate.crt diff --git a/apps/bicycle-racks/.env.test b/apps/bicycle-racks/.env.test new file mode 100644 index 0000000..705ce23 --- /dev/null +++ b/apps/bicycle-racks/.env.test @@ -0,0 +1,10 @@ +NODE_ENV=test +LOG_LEVEL=error +PORT=3005 +DATABASE_URL=postgres://postgres:postgres@localhost:5432/atlas_test?sslmode=disable +DB_HOST=localhost +DB_PORT=5432 +DB_USER=postgres +DB_PASSWORD=postgres +DB_NAME=atlas_test +DB_SSL=false \ No newline at end of file diff --git a/apps/bicycle-racks/Dockerfile b/apps/bicycle-racks/Dockerfile new file mode 100644 index 0000000..5556008 --- /dev/null +++ b/apps/bicycle-racks/Dockerfile @@ -0,0 +1,86 @@ +# Prune stage - Use turbo to create a subset of the monorepo with only the packages needed +FROM node:22.15.0-slim AS pruner + +# Set working directory +WORKDIR /app + +# Install pnpm and turbo +RUN corepack enable && corepack prepare pnpm@10.10.0 --activate && \ + npm install -g turbo + +# Copy repo configuration +COPY package.json pnpm-lock.yaml pnpm-workspace.yaml turbo.json ./ + +# Copy the source code needed for turbo prune +COPY apps/bicycle-racks/package.json ./apps/bicycle-racks/package.json +COPY packages/typescript-config/package.json ./packages/typescript-config/package.json +COPY packages/database/package.json ./packages/database/package.json + +# Use turbo to prune the monorepo to only the bicycle-racks app and its dependencies +RUN turbo prune --scope=@atlas/bicycle-racks --docker + +# Build stage - Use the pruned repo to build the app +FROM node:22.15.0-slim AS builder + +# Set working directory +WORKDIR /app + +# Install pnpm +RUN corepack enable && corepack prepare pnpm@10.10.0 --activate + +# Copy pruned lockfile and package.json files +COPY --from=pruner /app/out/json/ . +COPY --from=pruner /app/out/pnpm-lock.yaml ./pnpm-lock.yaml +COPY --from=pruner /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml + +# Install dependencies +RUN pnpm install --frozen-lockfile + +# Copy source files from pruned repo +COPY --from=pruner /app/out/full/ . + +# Copy the rest of the source code +COPY apps/bicycle-racks ./apps/bicycle-racks +COPY packages/typescript-config ./packages/typescript-config +COPY packages/database ./packages/database +COPY turbo.json ./turbo.json + +# Build database package first (required dependency) +RUN pnpm --filter @atlas/database build + +# Build the bicycle-racks app +RUN pnpm --filter @atlas/bicycle-racks build + +# Production stage +FROM node:22.15.0-slim AS production + +# Set working directory +WORKDIR /app + +# Install pnpm +RUN corepack enable && corepack prepare pnpm@10.10.0 --activate + +# Copy pruned lockfile and package.json files +COPY --from=pruner /app/out/json/ . +COPY --from=pruner /app/out/pnpm-lock.yaml ./pnpm-lock.yaml +COPY --from=pruner /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml + +# Install production dependencies only +RUN pnpm install --frozen-lockfile --prod + +# Copy built files from builder stage +COPY --from=builder /app/apps/bicycle-racks/dist ./apps/bicycle-racks/dist +COPY --from=builder /app/packages/database/dist ./packages/database/dist +# Copy migrations folder from database package +COPY --from=builder /app/packages/database/src/migrations ./packages/database/src/migrations + +# Set environment variables +ENV NODE_ENV=production +ENV LOG_LEVEL=info +ENV PORT=3005 + +# Expose port (can be overridden at runtime) +EXPOSE ${PORT} + +# Default command to start the application +CMD ["node", "apps/bicycle-racks/dist/index.js"] diff --git a/apps/bicycle-racks/README.md b/apps/bicycle-racks/README.md new file mode 100644 index 0000000..b2e59f4 --- /dev/null +++ b/apps/bicycle-racks/README.md @@ -0,0 +1,270 @@ +# Bicycle Racks API + +REST API service for managing and querying bicycle parking facilities data across Brazil, with special focus on Recife city. + +## Requirements + +- Node.js 22.15.0 +- pnpm 10.10.0 +- PostgreSQL database + +We recommend using [mise](https://mise.jdx.dev/) for managing tool versions. A `.tool-versions` file is included in the repository root. + +## Getting Started + +### Development with Docker + +The easiest way to get started is using Docker Compose: + +```bash +# Start the application and database +docker compose up -d + +# Run database migrations +docker compose exec app pnpm db:migrate + +# View logs +docker compose logs -f + +# Stop the application +docker compose down +``` + +### Manual Setup + +If you prefer to run the application without Docker: + +```bash +# Install dependencies (from monorepo root) +pnpm install + +# Start the development server +pnpm --filter @atlas/bicycle-racks dev + +# In another terminal, run migrations +pnpm --filter @atlas/bicycle-racks db:migrate + +``` + +The application will be available at http://localhost:3005 + +## Environment Variables + +Create a `.env` file in the app directory (see `.env.example`): + +```bash +NODE_ENV=development +LOG_LEVEL=info +PORT=3005 + +# Database +DATABASE_URL=postgres://postgres:postgres@localhost:5432/atlas_dev +# Or use individual settings: +DB_HOST=localhost +DB_PORT=5432 +DB_USER=postgres +DB_PASSWORD=postgres +DB_NAME=atlas_dev +DB_SSL=false +``` + +## Database Management + +This app uses the shared `@atlas/database` package for database management. + +```bash +# Generate new migrations (from database package) +pnpm --filter @atlas/database db:generate + +# Apply migrations +pnpm --filter @atlas/database db:migrate + +# View database with Drizzle Studio +pnpm --filter @atlas/database db:studio + +# Seed the database with sample data (if available) +pnpm --filter @atlas/database db:seed +``` + +## Development + +```bash +# Start development server with hot reload +pnpm --filter @atlas/bicycle-racks dev + +# Run tests +pnpm --filter @atlas/bicycle-racks test + +# Run tests in watch mode +pnpm --filter @atlas/bicycle-racks test:watch + +# Type checking +pnpm --filter @atlas/bicycle-racks check-types + +# Linting +pnpm --filter @atlas/bicycle-racks lint + +# Format code +pnpm --filter @atlas/bicycle-racks format +``` + +## Building + +```bash +# Build the application +pnpm --filter @atlas/bicycle-racks build + +# Start production server +pnpm --filter @atlas/bicycle-racks start +``` + +## API Endpoints + +The API provides the following endpoints with optional city filtering: + +### Core Endpoints + +- `GET /v1/bicycle-racks` - List all bicycle racks +- `GET /v1/bicycle-racks/{id}` - Get specific bicycle rack by ID +- `GET /v1/bicycle-racks/stats` - Get statistics about bicycle racks +- `GET /v1/bicycle-racks/geojson` - Get bicycle racks as GeoJSON +- `GET /v1/bicycle-racks/nearby` - Find nearby bicycle racks + +### City Filtering + +All endpoints support optional `city` parameter for filtering: + +```bash +# Get all bicycle racks in Brazil (5,598 total) +curl "http://localhost:3005/v1/bicycle-racks" + +# Get only Recife bicycle racks (578 total) +curl "http://localhost:3005/v1/bicycle-racks?city=Recife" + +# Get Recife statistics +curl "http://localhost:3005/v1/bicycle-racks/stats?city=Recife" + +# Get Recife data as GeoJSON +curl "http://localhost:3005/v1/bicycle-racks/geojson?city=Recife" + +# Find nearby racks in Recife (Marco Zero area) +curl "http://localhost:3005/v1/bicycle-racks/nearby?lat=-8.0631&lng=-34.8713&radius=1000&city=Recife" +``` + +### Query Parameters + +- `city` (optional) - Filter by city name (e.g., "Recife") +- `covered` (optional) - Filter by covered status ("yes", "no") +- `access` (optional) - Filter by access type ("yes", "private", "permissive", "customers") +- `capacity_min` (optional) - Minimum capacity filter +- `capacity_max` (optional) - Maximum capacity filter +- `operator` (optional) - Filter by operator name + +## API Documentation + +The API documentation is automatically generated from the OpenAPI specification. + +```bash +# Generate OpenAPI spec +pnpm --filter @atlas/bicycle-racks generate-openapi + +# View in the docs app +pnpm --filter @atlas/docs dev +# Then open http://localhost:3001 +``` + +## Docker Deployment + +The BicycleRacks API can be deployed as a Docker container. The container image is automatically built and pushed to GitHub Container Registry (ghcr.io) when changes are merged to the main branch. + +### Running with Docker + +```bash +# Pull the latest image +docker pull ghcr.io/ameciclo/atlas/bicycle-racks:latest + +# Run the container with PostgreSQL +docker compose up -d +``` + +The API will be available at http://localhost:3005 + +### Building Locally + +```bash +# From the bicycle-racks app directory +docker compose up -d + +# Or from the root of the monorepo +docker build -t atlas-bicycle-racks -f apps/bicycle-racks/Dockerfile . +docker run -p 3005:3005 --env-file .env atlas-bicycle-racks +``` + +## Health Check + +The API includes a health check endpoint: + +``` +GET /health +``` + +Response: +```json +{ + "status": "ok", + "timestamp": "2023-07-01T12:34:56.789Z", + "service": "bicycle-racks", + "database": "connected" +} +``` + +## Project Structure + +``` +apps/bicycle-racks/ +├── src/ +│ ├── app.ts # App configuration +│ ├── index.ts # Entry point +│ ├── env.ts # Environment variables +│ ├── db/ # Database +│ │ ├── index.ts # Database connection +│ │ └── schema.ts # Re-exports from @atlas/database +│ ├── lib/ # Shared utilities +│ │ ├── create-app.ts # App factory +│ │ ├── types.ts # TypeScript types +│ │ └── constants.ts # Constants +│ ├── middlewares/ # Middleware +│ │ └── pino-logger.ts # Logger middleware +│ └── routes/ # API routes +│ ├── health.ts # Health check +│ └── example/ # Example routes +├── test/ # Tests +├── Dockerfile # Docker configuration +├── docker-compose.yml # Docker Compose configuration +├── package.json # Dependencies and scripts +├── tsconfig.json # TypeScript configuration +└── vitest.config.ts # Vitest configuration +``` + +**Note:** Database schema is defined in `packages/database/src/schemas/bicycle-racks/schema.ts` and shared across the monorepo. + +## Data Sources + +The API serves bicycle parking facilities data from: + +- **Brazil-wide data**: OpenStreetMap bicycle parking facilities across Brazil (5,598 total) +- **Recife-specific data**: Enhanced dataset with city mapping for precise filtering (578 in Recife) +- **Real-time filtering**: Efficient JOIN-based queries for city-specific data retrieval + +### Database Tables + +- `bicycle_racks` - Main table with bicycle parking facilities data +- `bicycle_rack_cities` - City mapping table for efficient filtering by city name + +## Contributing + +See the main [README](../../README.md) for contribution guidelines. + +## License + +This project is licensed under the MIT License - see the [LICENSE](../../LICENSE) file for details. diff --git a/apps/bicycle-racks/docker-compose.yml b/apps/bicycle-racks/docker-compose.yml new file mode 100644 index 0000000..2eb3add --- /dev/null +++ b/apps/bicycle-racks/docker-compose.yml @@ -0,0 +1,89 @@ +services: + app: + image: atlas-bicycle-racks + build: + context: ../.. + dockerfile: ./apps/bicycle-racks/Dockerfile + ports: + - "${PORT:-3005}:${PORT:-3005}" + environment: + - NODE_ENV=production + - LOG_LEVEL=info + - PORT=${PORT:-3005} + - DB_HOST=postgres + - DB_PORT=5432 + - DB_USER=postgres + - DB_PASSWORD=postgres + - DB_NAME=atlas_dev + - DATABASE_URL=postgres://postgres:postgres@postgres:5432/atlas_dev + depends_on: + migrate: + condition: service_completed_successfully + seed: + condition: service_completed_successfully + restart: unless-stopped + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:3005/health"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 10s + + migrate: + image: atlas-bicycle-racks + build: + context: ../.. + dockerfile: ./apps/bicycle-racks/Dockerfile + command: node apps/bicycle-racks/dist/db/migrate.js + environment: + - NODE_ENV=production + - DB_HOST=postgres + - DB_PORT=5432 + - DB_USER=postgres + - DB_PASSWORD=postgres + - DB_NAME=atlas_dev + - DATABASE_URL=postgres://postgres:postgres@postgres:5432/atlas_dev + depends_on: + postgres: + condition: service_healthy + restart: on-failure + + seed: + image: atlas-bicycle-racks + build: + context: ../.. + dockerfile: ./apps/bicycle-racks/Dockerfile + command: node apps/bicycle-racks/dist/db/seed.js + environment: + - NODE_ENV=production + - DB_HOST=postgres + - DB_PORT=5432 + - DB_USER=postgres + - DB_PASSWORD=postgres + - DB_NAME=atlas_dev + - DATABASE_URL=postgres://postgres:postgres@postgres:5432/atlas_dev + depends_on: + migrate: + condition: service_completed_successfully + restart: on-failure + profiles: + - with-seed + + postgres: + image: postgres:16-alpine + environment: + - POSTGRES_USER=postgres + - POSTGRES_PASSWORD=postgres + - POSTGRES_DB=atlas_dev + ports: + - "5432:5432" + volumes: + - postgres_data:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL", "pg_isready -U postgres"] + interval: 5s + timeout: 5s + retries: 5 + +volumes: + postgres_data: diff --git a/apps/bicycle-racks/package.json b/apps/bicycle-racks/package.json new file mode 100644 index 0000000..7bcf869 --- /dev/null +++ b/apps/bicycle-racks/package.json @@ -0,0 +1,40 @@ +{ + "name": "@atlas/bicycle-racks", + "version": "0.1.0", + "description": "API service for bicycle_racks", + "type": "module", + "main": "./dist/index.js", + "scripts": { + "dev": "tsx watch src/index.ts", + "build": "tsc && pnpm generate-openapi", + "start": "node dist/index.js", + "lint": "biome lint .", + "format": "biome format .", + "check-types": "tsc --noEmit --project tsconfig.test.json", + "test": "NODE_ENV=test vitest --run", + "test:watch": "NODE_ENV=test vitest --watch", + "generate-openapi": "tsx src/generate-openapi.ts", + "pre-dev": "pnpm generate-openapi" + }, + "dependencies": { + "@hono/node-server": "^1.14.1", + "@hono/zod-openapi": "^0.19.6", + "dotenv": "^16.5.0", + "hono": "^4.7.7", + "hono-pino": "^0.8.0", + "pino": "^9.6.0", + "pino-pretty": "^13.0.0", + "stoker": "^1.4.2", + "zod": "^3.24.4", + "@atlas/database": "workspace:*", + "drizzle-orm": "^0.43.1", + "pg": "^8.14.1" + }, + "devDependencies": { + "@types/node": "^22.15.17", + "tsx": "^4.19.3", + "typescript": "^5.8.3", + "vitest": "^3.1.3", + "@types/pg": "^8.11.13" + } +} diff --git a/apps/bicycle-racks/src/app.ts b/apps/bicycle-racks/src/app.ts new file mode 100644 index 0000000..facd32a --- /dev/null +++ b/apps/bicycle-racks/src/app.ts @@ -0,0 +1,9 @@ +import createApp from "./lib/create-app.js"; +import healthRoutes from "./routes/health.js"; +import bicycleRacksRoutes from "./routes/bicycle-racks.index.js"; + +const app = createApp() + .route("/", healthRoutes) + .route("/v1/", bicycleRacksRoutes); + +export default app; diff --git a/apps/bicycle-racks/src/db/bicicletarios-brasil.geojson b/apps/bicycle-racks/src/db/bicicletarios-brasil.geojson new file mode 100644 index 0000000..9a0aae3 --- /dev/null +++ b/apps/bicycle-racks/src/db/bicicletarios-brasil.geojson @@ -0,0 +1,139778 @@ +{ + "type": "FeatureCollection", + "generator": "overpass-turbo", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", + "timestamp": "2025-10-26T13:20:02Z", + "features": [ + { + "type": "Feature", + "properties": { + "@id": "way/892510925" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -68.7460672, + -11.0130092 + ], + [ + -68.7460771, + -11.0130893 + ], + [ + -68.7460619, + -11.0130911 + ] + ] + }, + "id": "way/892510925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/892510928" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -68.7460357, + -11.0128142 + ], + [ + -68.7460205, + -11.012816 + ], + [ + -68.7460106, + -11.0127359 + ] + ] + }, + "id": "way/892510928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/892510963" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -68.7460619, + -11.0130911 + ], + [ + -68.746052, + -11.013011 + ], + [ + -68.7460672, + -11.0130092 + ] + ] + }, + "id": "way/892510963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/892510964" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -68.7460106, + -11.0127359 + ], + [ + -68.7460258, + -11.0127341 + ], + [ + -68.7460357, + -11.0128142 + ] + ] + }, + "id": "way/892510964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/430421046" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -51.2407336, + -30.0338792 + ], + [ + -51.2407154, + -30.0339273 + ], + [ + -51.2406972, + -30.0339754 + ] + ] + }, + "id": "way/430421046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/490758078" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -51.2406586, + -30.033858 + ], + [ + -51.2406404, + -30.033906 + ], + [ + -51.2406223, + -30.0339541 + ] + ] + }, + "id": "way/490758078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/606792830" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -51.2406223, + -30.0339541 + ], + [ + -51.2406972, + -30.0339754 + ] + ] + }, + "id": "way/606792830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/606792836" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -51.2406586, + -30.033858 + ], + [ + -51.2407336, + -30.0338792 + ] + ] + }, + "id": "way/606792836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37748777" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -51.1999892, + -30.0255489 + ], + [ + -51.2008371, + -30.0247011 + ], + [ + -51.2016572, + -30.0253623 + ], + [ + -51.201634, + -30.0253845 + ], + [ + -51.2009167, + -30.0260767 + ], + [ + -51.2007667, + -30.0262104 + ], + [ + -51.2012933, + -30.0266529 + ], + [ + -51.2014499, + -30.026511 + ], + [ + -51.2014768, + -30.0264866 + ], + [ + -51.2016956, + -30.0266908 + ], + [ + -51.2018709, + -30.0269375 + ], + [ + -51.2019329, + -30.027215 + ], + [ + -51.2018809, + -30.0285181 + ], + [ + -51.2018493, + -30.0285477 + ], + [ + -51.2014932, + -30.0285273 + ], + [ + -51.2013887, + -30.028398 + ], + [ + -51.2007809, + -30.0283764 + ], + [ + -51.2006255, + -30.0284845 + ], + [ + -51.2004594, + -30.0284771 + ], + [ + -51.2003659, + -30.0284729 + ], + [ + -51.2002689, + -30.0284269 + ], + [ + -51.1997857, + -30.0278279 + ], + [ + -51.1996524, + -30.0275882 + ], + [ + -51.1995294, + -30.0270603 + ], + [ + -51.1995257, + -30.0265639 + ], + [ + -51.1997038, + -30.0260055 + ], + [ + -51.1999892, + -30.0255489 + ] + ] + }, + "id": "way/37748777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552551541" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -51.1979752, + -30.0275113 + ], + [ + -51.1979829, + -30.0274222 + ], + [ + -51.1981211, + -30.026001 + ], + [ + -51.1983413, + -30.0248006 + ], + [ + -51.1986873, + -30.0248911 + ], + [ + -51.1995889, + -30.0249046 + ], + [ + -51.1996793, + -30.0254881 + ], + [ + -51.1996253, + -30.0256869 + ], + [ + -51.1994986, + -30.025991 + ], + [ + -51.1993342, + -30.0265016 + ], + [ + -51.1993306, + -30.0270927 + ], + [ + -51.1993623, + -30.0272672 + ], + [ + -51.1992792, + -30.0272782 + ], + [ + -51.1991582, + -30.0272941 + ], + [ + -51.1991343, + -30.0272973 + ], + [ + -51.1991134, + -30.0273 + ], + [ + -51.1988963, + -30.0273285 + ], + [ + -51.1989058, + -30.0273894 + ], + [ + -51.1988482, + -30.0273964 + ], + [ + -51.1979752, + -30.0275113 + ] + ] + }, + "id": "way/552551541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951121" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -48.1072412, + -15.8304759 + ], + [ + -48.1072189, + -15.8304649 + ], + [ + -48.1071225, + -15.830649 + ] + ] + }, + "id": "way/918951121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951122" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -48.1071447, + -15.8306598 + ], + [ + -48.1072412, + -15.8304759 + ] + ] + }, + "id": "way/918951122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951123" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -48.1071225, + -15.830649 + ], + [ + -48.1071447, + -15.8306598 + ] + ] + }, + "id": "way/918951123" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/7894456", + "access": "yes", + "animal": "birds", + "bicycle_parking": "stands", + "leisure": "park", + "loc_name": "Parcão", + "name": "Parque Moinhos de Vento", + "name:en": "Moinhos de Vento Park", + "natural": "grassland", + "sidewalk": "both", + "start_date": "1972", + "surface": "gravel", + "tourism": "attraction", + "type": "multipolygon", + "wikidata": "Q6894667", + "wikipedia": "pt:Parque Moinhos de Vento", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1999541, + -30.0266244 + ] + }, + "id": "relation/7894456" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/8440034", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "description": "Paraciclos da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Fr 09:00-21:00; Sa-Su 10:00-21:00", + "operator": "Usina do Gasômetro", + "supervised": "yes", + "type": "multipolygon", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2406779, + -30.0339167 + ] + }, + "id": "relation/8440034" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/12140313", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "type": "multipolygon", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -68.7460645, + -11.0130501 + ] + }, + "id": "relation/12140313" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/12140314", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "type": "multipolygon", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -68.7460231, + -11.0127751 + ] + }, + "id": "relation/12140314" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/12463578", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "type": "multipolygon", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1071819, + -15.8305624 + ] + }, + "id": "relation/12463578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/27625194", + "access": "permissive", + "amenity": "bicycle_parking", + "covered": "yes", + "operator": "Universidade Federal do Pará", + "source": "survey", + "surface": "paving_stones", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7606908, + -1.049801 + ] + }, + "id": "way/27625194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/119392588", + "addr:city": "Goiânia", + "addr:street": "Avenida dos Alpes", + "addr:suburb": "Jardim Europa", + "amenity": "bus_station", + "bicycle_parking": "yes", + "bus": "yes", + "description": "Terminal_de_ônibus", + "layer": "1", + "name": "Terminal Bandeiras", + "network": "Rede Metropolitana de Transportes Coletivos", + "operator": "Redemob Consórcio", + "public_transport": "station", + "source": "http://www.rmtcgoiania.com.br/terminais", + "wheelchair": "limited", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3102007, + -16.7103135 + ] + }, + "id": "way/119392588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/131439919", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1312451, + -22.904834 + ] + }, + "id": "way/131439919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/138566122", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "270", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação USP Leste", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5033496, + -23.4859843 + ] + }, + "id": "way/138566122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/163500497", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "226", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Primavera - Interlagos", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6919467, + -23.722394 + ] + }, + "id": "way/163500497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187031254", + "addr:city": "Rio de Janeiro", + "addr:housenumber": "1071", + "addr:postcode": "21021-380", + "addr:street": "Rua Filomena Nunes", + "addr:suburb": "Olaria", + "amenity": "courthouse", + "bicycle_parking": "wall_hoops", + "building": "yes", + "capacity": "12", + "covered": "no", + "name": "Fórum Regional da Leopoldina", + "opening_hours": "Mo-Fr 08:00-18:00", + "source": "Bing", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2664153, + -22.8436858 + ] + }, + "id": "way/187031254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187473984", + "access": "private", + "bicycle": "no", + "bicycle_parking": "no", + "highway": "service", + "motorcycle": "no", + "service": "driveway", + "surface": "concrete", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6013107, + -27.1387492 + ] + }, + "id": "way/187473984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/202233343", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4425921, + -21.1802737 + ] + }, + "id": "way/202233343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/202665256", + "bicycle_parking": "rack", + "building": "retail", + "covered": "yes", + "lit": "yes", + "name": "Santana Parque Shopping", + "shop": "mall", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644756, + -23.4828219 + ] + }, + "id": "way/202665256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/208537789", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1760821, + -22.9566949 + ] + }, + "id": "node/208537789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/241778154", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4704045, + -27.6028692 + ] + }, + "id": "way/241778154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/257316920", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5818748, + -23.6329186 + ] + }, + "id": "way/257316920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/261280236", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1911305, + -21.8077251 + ] + }, + "id": "way/261280236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/264549826", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "roof", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9051547, + -22.0224229 + ] + }, + "id": "way/264549826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/264549835", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "roof", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9051608, + -22.0223775 + ] + }, + "id": "way/264549835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/264985281", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8545196, + -26.2527033 + ] + }, + "id": "way/264985281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/264985283", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8545232, + -26.2526247 + ] + }, + "id": "way/264985283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/264985285", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "21", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8546738, + -26.2535313 + ] + }, + "id": "way/264985285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/273209192", + "amenity": "bicycle_parking", + "capacity": "20", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6181385, + -20.1511054 + ] + }, + "id": "way/273209192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/280517267", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no", + "surface": "paving_stones", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7169492, + -29.7137967 + ] + }, + "id": "way/280517267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/281068318", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.85569, + -26.2543547 + ] + }, + "id": "way/281068318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284852099", + "amenity": "bicycle_parking", + "name": "Bicicletaria do João Carlos", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9051089, + -24.1224407 + ] + }, + "id": "way/284852099" + }, + { + "type": "Feature", + "properties": { + "@id": "node/299617743", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "200", + "covered": "yes", + "fee": "no", + "name": "PUC-Rio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2321213, + -22.9792554 + ] + }, + "id": "node/299617743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/303051460", + "bicycle_parking": "stands", + "building": "yes", + "capacity": "108", + "covered": "yes", + "name": "Retiro", + "public_transport": "station", + "railway": "station", + "station": "subway", + "subway": "yes", + "surveillance": "indoor", + "wikidata": "Q17631144", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4721295, + -12.9560311 + ] + }, + "id": "way/303051460" + }, + { + "type": "Feature", + "properties": { + "@id": "node/303337911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.124192, + -22.8940529 + ] + }, + "id": "node/303337911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/303370296" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7608614, + -1.0498293 + ] + }, + "id": "node/303370296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/303370378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7608508, + -1.0498672 + ] + }, + "id": "node/303370378" + }, + { + "type": "Feature", + "properties": { + "@id": "node/303376026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7605201, + -1.0497727 + ] + }, + "id": "node/303376026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/303376027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7605307, + -1.0497348 + ] + }, + "id": "node/303376027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/325219437", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "64", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Campo Limpo", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7733483, + -23.6312533 + ] + }, + "id": "way/325219437" + }, + { + "type": "Feature", + "properties": { + "@id": "node/327410562", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1781648, + -22.9356172 + ] + }, + "id": "node/327410562" + }, + { + "type": "Feature", + "properties": { + "@id": "node/331631023", + "amenity": "bicycle_parking", + "capacity": "15", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1697711, + -22.9549734 + ] + }, + "id": "node/331631023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/332238483", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "paliteiro", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1805903, + -22.9648264 + ] + }, + "id": "node/332238483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/334701632", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8138359, + -26.2893365 + ] + }, + "id": "way/334701632" + }, + { + "type": "Feature", + "properties": { + "@id": "node/338792635", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1769282, + -22.957843 + ] + }, + "id": "node/338792635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/338798493", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1840564, + -22.9478189 + ] + }, + "id": "node/338798493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/344186902", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3215356, + -20.3922363 + ] + }, + "id": "way/344186902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/344566781", + "amenity": "bicycle_parking", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3424368, + -20.4385616 + ] + }, + "id": "way/344566781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/353502636", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4371412, + -22.6495343 + ] + }, + "id": "way/353502636" + }, + { + "type": "Feature", + "properties": { + "@id": "node/365743387", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "source": "Bing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1694194, + -22.9637971 + ] + }, + "id": "node/365743387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/365743916", + "amenity": "bicycle_parking", + "capacity": "3", + "source": "Bing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1697464, + -22.9639107 + ] + }, + "id": "node/365743916" + }, + { + "type": "Feature", + "properties": { + "@id": "node/365744391", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "source": "Bing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1687596, + -22.9635007 + ] + }, + "id": "node/365744391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/365744408", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "source": "Bing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1689038, + -22.9635513 + ] + }, + "id": "node/365744408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/390223828", + "access": "customers", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4537701, + -23.4858335 + ] + }, + "id": "way/390223828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/393529645", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3167905, + -20.3919128 + ] + }, + "id": "way/393529645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/412272173", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1815213, + -22.9465323 + ] + }, + "id": "node/412272173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/413622244", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2508505, + -21.123694 + ] + }, + "id": "way/413622244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/413624758", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.248559, + -21.1042891 + ] + }, + "id": "way/413624758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/413624759", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2503588, + -21.1042023 + ] + }, + "id": "way/413624759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/413624760", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2493371, + -21.1054478 + ] + }, + "id": "way/413624760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/413624762", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2490236, + -21.1054956 + ] + }, + "id": "way/413624762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/413630394", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2606779, + -21.1398338 + ] + }, + "id": "way/413630394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/413717245", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2489291, + -21.1046665 + ] + }, + "id": "way/413717245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/414695097", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2501178, + -21.1033634 + ] + }, + "id": "way/414695097" + }, + { + "type": "Feature", + "properties": { + "@id": "way/414700348", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2512291, + -21.1217465 + ] + }, + "id": "way/414700348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/417260446", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2483294, + -21.1045562 + ] + }, + "id": "way/417260446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/419118616", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2491733, + -21.1040864 + ] + }, + "id": "way/419118616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/422126327", + "amenity": "bicycle_parking", + "building": "roof", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7299922, + -23.5583541 + ] + }, + "id": "way/422126327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/422943782", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7256585, + -23.558205 + ] + }, + "id": "way/422943782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/436182529", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2986564, + -20.3556837 + ] + }, + "id": "way/436182529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/436182531", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2985797, + -20.3533951 + ] + }, + "id": "way/436182531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446759978", + "amenity": "bicycle_parking", + "building": "roof", + "name": "Bicicletário", + "roof:colour": "grey", + "roof:shape": "flat", + "source": "Unifei", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.449402, + -22.4145074 + ] + }, + "id": "way/446759978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/450520926", + "bicycle_parking": "wave", + "foot": "use_sidepath", + "highway": "secondary", + "lanes": "2", + "maxspeed": "50", + "name": "Rua Félix Busso Asseburg", + "old_name": "Praça Félix Busso Asseburg", + "oneway": "yes", + "sidewalk:both": "separate", + "source:name": "Lei 5.531/2010", + "surface": "asphalt", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6545246, + -26.9067266 + ] + }, + "id": "way/450520926" + }, + { + "type": "Feature", + "properties": { + "@id": "node/454457637", + "amenity": "bicycle_parking", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1778071, + -22.9555492 + ] + }, + "id": "node/454457637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/458346362", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.174493, + -26.7439595 + ] + }, + "id": "way/458346362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/462160204", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "surface": "paved", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3202291, + -20.5299137 + ] + }, + "id": "way/462160204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/466687595", + "access": "yes", + "amenity": "bicycle_parking", + "authentication:biometric": "yes", + "authentication:none": "no", + "bicycle_parking": "building", + "bike_ride": "bus;subway", + "building": "yes", + "capacity": "149", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Butantã", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaQuatro", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7084503, + -23.5715292 + ] + }, + "id": "way/466687595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/475996261", + "amenity": "bicycle_parking", + "capacity": "30", + "fee": "no", + "layer": "-1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1731429, + -22.9071513 + ] + }, + "id": "node/475996261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/477155423", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.176429, + -26.7379987 + ] + }, + "id": "way/477155423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/477794069", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "yes", + "fee": "no", + "operator": "Rede Top Supermercados", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744719, + -26.7334134 + ] + }, + "id": "way/477794069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/478460432", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no", + "operator": "Farmalan", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1769954, + -26.7312733 + ] + }, + "id": "way/478460432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/478460433", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "fee": "no", + "operator": "Farmalan", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1771025, + -26.7313547 + ] + }, + "id": "way/478460433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/483697220", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "20", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7018347, + -23.5616032 + ] + }, + "id": "way/483697220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/484571287", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8173764, + -7.1621279 + ] + }, + "id": "way/484571287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/485976590", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "47", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:00-22:00", + "operator": "Shopping Praia de Belas", + "supervised": "yes", + "website": "https://iguatemi.com.br/praiadebelasshopping", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273655, + -30.0497775 + ] + }, + "id": "way/485976590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/485976591", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:00-22:00", + "operator": "Shopping Praia de Belas", + "supervised": "yes", + "website": "https://iguatemi.com.br/praiadebelasshopping", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.226776, + -30.0496229 + ] + }, + "id": "way/485976591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/486129667", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "11", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 11:00-20:00", + "operator": "Moinhos Shopping", + "supervised": "no", + "website": "https://www.moinhosshopping.com.br/", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2013892, + -30.0238048 + ] + }, + "id": "way/486129667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/486722089", + "access": "private", + "amenity": "bicycle_parking", + "building": "roof", + "covered": "yes", + "operator": "Embraco", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8723294, + -26.2616958 + ] + }, + "id": "way/486722089" + }, + { + "type": "Feature", + "properties": { + "@id": "way/487730159", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "description": "Paraciclos da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Casa de Cultura Mario Quintana", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2346191, + -30.0307959 + ] + }, + "id": "way/487730159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/488389907", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7324789, + -23.5458675 + ] + }, + "id": "way/488389907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/493020012", + "amenity": "bicycle_parking", + "surface": "asphalt", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.0363064, + -22.5984656 + ] + }, + "id": "way/493020012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/496250362", + "amenity": "bicycle_parking", + "capacity": "17", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7164859, + -29.7188919 + ] + }, + "id": "way/496250362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/496540101", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "name": "Bicicletário do Centro de Humanidades II", + "operator": "Universidade Federal do Ceará", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5390256, + -3.7400332 + ] + }, + "id": "way/496540101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/500455010", + "access": "permissive", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7014312, + -23.5647179 + ] + }, + "id": "way/500455010" + }, + { + "type": "Feature", + "properties": { + "@id": "node/501404665", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.1989803, + -5.84244 + ] + }, + "id": "node/501404665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/503649076", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5134927, + -18.5739411 + ] + }, + "id": "way/503649076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/503649117", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5136287, + -18.5752807 + ] + }, + "id": "way/503649117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/508831574", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "17", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7177901, + -29.7224771 + ] + }, + "id": "way/508831574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/511205192", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "10", + "free": "yes", + "source": "survey", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7164554, + -29.7147277 + ] + }, + "id": "way/511205192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/511205195", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "20", + "free": "yes", + "source": "survey", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.718108, + -29.7208518 + ] + }, + "id": "way/511205195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/515023206", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.714532, + -29.71745 + ] + }, + "id": "way/515023206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/515023207", + "amenity": "bicycle_parking", + "capacity": "12", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7147418, + -29.7174809 + ] + }, + "id": "way/515023207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/523905449", + "bicycle_parking": "floor", + "leisure": "park", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2816701, + -22.6280262 + ] + }, + "id": "way/523905449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/523905450", + "bicycle_parking": "floor", + "leisure": "park", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2820174, + -22.628046 + ] + }, + "id": "way/523905450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/527166756", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1843705, + -22.9493785 + ] + }, + "id": "node/527166756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/527320340", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "building": "shed", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Su 09:00-18:00", + "operator": "Parque Gigante", + "supervised": "yes", + "website": "https://www.internacional.com.br/", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2382604, + -30.0630528 + ] + }, + "id": "way/527320340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/527338791", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1884034, + -22.9494454 + ] + }, + "id": "node/527338791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/528273465", + "access": "yes", + "addr:housenumber": "2091", + "addr:street": "Avenida Sapucaia", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "150", + "covered": "yes", + "fee": "no", + "lit": "yes", + "name": "Bicicletário Municipal", + "opening_hours": "Mo-Fr 05:00-23:55", + "operator": "Prefeitura", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1491177, + -29.8233779 + ] + }, + "id": "way/528273465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/528813731", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "covered": "no", + "fee": "yes", + "surface": "asphalt", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8314851, + -29.7068885 + ] + }, + "id": "way/528813731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/532511164", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "82", + "covered": "no", + "fee": "no", + "lit": "no", + "opening_hours": "24/7", + "operator": "Prefeitura", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1826351, + -29.9188764 + ] + }, + "id": "way/532511164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/533915669", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.1196358, + -22.740101 + ] + }, + "id": "node/533915669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/535689027", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "34", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Pinheiros", + "operator": "Socicam", + "operator:type": "private", + "operator:wikidata": "Q3069359", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7020999, + -23.567092 + ] + }, + "id": "way/535689027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/535728001", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6136149, + -3.8539269 + ] + }, + "id": "way/535728001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/540762601", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "180", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Franco da Rocha", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.726199, + -23.3299989 + ] + }, + "id": "way/540762601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/543219235", + "amenity": "bicycle_parking", + "building": "industrial", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8196535, + -23.1686028 + ] + }, + "id": "way/543219235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/544261922", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "name": "Bicicletário Rústico", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5078848, + -27.5796947 + ] + }, + "id": "way/544261922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/544261923", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "name": "Bicicletário Rústico", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.507979, + -27.5796953 + ] + }, + "id": "way/544261923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/544521943", + "access": "private", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5935821, + -3.8070698 + ] + }, + "id": "way/544521943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/544775252", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0218882, + -28.4792394 + ] + }, + "id": "way/544775252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/544848453", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0198717, + -28.4816223 + ] + }, + "id": "way/544848453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/547385915", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2074041, + -22.115108 + ] + }, + "id": "way/547385915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/548642905", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3103635, + -22.7337945 + ] + }, + "id": "way/548642905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552441134", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1845838, + -1.1988499 + ] + }, + "id": "way/552441134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/561367248", + "access": "private", + "amenity": "bicycle_parking", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9440121, + -21.1051329 + ] + }, + "id": "way/561367248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/562107862", + "access": "private", + "amenity": "bicycle_parking", + "covered": "yes", + "operator": "D.R.E", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9486532, + -21.1076495 + ] + }, + "id": "way/562107862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/562181417", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1928253, + -22.9762808 + ] + }, + "id": "node/562181417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565576212", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.334668, + -20.3563436 + ] + }, + "id": "way/565576212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/590859350", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6664889, + -23.5626203 + ] + }, + "id": "way/590859350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/590871632", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0492688, + -24.5576323 + ] + }, + "id": "way/590871632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/590871641", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0451678, + -24.5679254 + ] + }, + "id": "way/590871641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/591104615", + "amenity": "bicycle_parking", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.1066623, + -24.5591387 + ] + }, + "id": "way/591104615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/591448494", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.3455613, + -15.4668132 + ] + }, + "id": "way/591448494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/593151215", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5294425, + -19.4776345 + ] + }, + "id": "way/593151215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/593860438", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1442353, + -25.0592375 + ] + }, + "id": "way/593860438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/594287323", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4935251, + -28.9475788 + ] + }, + "id": "way/594287323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598430416", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "30", + "covered": "yes", + "fee": "no", + "operator": "Rede Top Supermercados", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1748647, + -26.7331185 + ] + }, + "id": "way/598430416" + }, + { + "type": "Feature", + "properties": { + "@id": "node/605075791", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.106232, + -22.7546564 + ] + }, + "id": "node/605075791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/607513133", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1070561, + -22.7624846 + ] + }, + "id": "node/607513133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/607513261", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1077534, + -22.7613667 + ] + }, + "id": "node/607513261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698148", + "amenity": "bicycle_parking", + "building": "yes", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3592297, + -12.9223829 + ] + }, + "id": "way/607698148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698149", + "amenity": "bicycle_parking", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3793424, + -12.9255268 + ] + }, + "id": "way/607698149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698150", + "amenity": "bicycle_parking", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3944365, + -12.9342452 + ] + }, + "id": "way/607698150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698154", + "amenity": "bicycle_parking", + "building": "yes", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4301411, + -12.9574537 + ] + }, + "id": "way/607698154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698155", + "amenity": "bicycle_parking", + "building": "yes", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4352587, + -12.9636153 + ] + }, + "id": "way/607698155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698156", + "amenity": "bicycle_parking", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4707138, + -12.9776574 + ] + }, + "id": "way/607698156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698157", + "amenity": "bicycle_parking", + "building": "yes", + "capacity": "108", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4766085, + -12.9700331 + ] + }, + "id": "way/607698157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698158", + "amenity": "bicycle_parking", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4847119, + -12.9845309 + ] + }, + "id": "way/607698158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698159", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4700513, + -12.9409696 + ] + }, + "id": "way/607698159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698160", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4672095, + -12.9251486 + ] + }, + "id": "way/607698160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/607698161", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4726674, + -12.9562222 + ] + }, + "id": "way/607698161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/608717189", + "amenity": "bicycle_parking", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1077339, + -22.7622945 + ] + }, + "id": "node/608717189" + }, + { + "type": "Feature", + "properties": { + "@id": "node/608717193", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1074121, + -22.7623737 + ] + }, + "id": "node/608717193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/608717198", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1076803, + -22.7629673 + ] + }, + "id": "node/608717198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/609506547", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "building": "yes", + "covered": "yes", + "operator": "CCR - Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3422883, + -12.9039015 + ] + }, + "id": "way/609506547" + }, + { + "type": "Feature", + "properties": { + "@id": "node/612558195", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.0889328, + -12.6425606 + ] + }, + "id": "node/612558195" + }, + { + "type": "Feature", + "properties": { + "@id": "node/614482631", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2914342, + -22.9473536 + ] + }, + "id": "node/614482631" + }, + { + "type": "Feature", + "properties": { + "@id": "node/614496057", + "amenity": "bicycle_parking", + "capacity": "6", + "source": "GPS; survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1735775, + -22.9034134 + ] + }, + "id": "node/614496057" + }, + { + "type": "Feature", + "properties": { + "@id": "node/614496447", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.281176, + -22.9557608 + ] + }, + "id": "node/614496447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/618097612", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1662756, + -32.0751276 + ] + }, + "id": "way/618097612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/618117142", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3180418, + -22.8399639 + ] + }, + "id": "way/618117142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/618678688", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "26", + "covered": "yes", + "fee": "no", + "height": "3.54", + "name": "Bicicletário Terminal Varginha", + "opening_hours": "24/7", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7166215, + -23.766907 + ] + }, + "id": "way/618678688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623339450", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "42", + "covered": "yes", + "fee": "no", + "height": "4.053", + "name": "Bicicletário Terminal AE Carvalho", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4755964, + -23.5176094 + ] + }, + "id": "way/623339450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624296747", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "28", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1790542, + -26.7388995 + ] + }, + "id": "way/624296747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624296750", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744219, + -26.7333029 + ] + }, + "id": "way/624296750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/625764235", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "30", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9344691, + -8.1683675 + ] + }, + "id": "way/625764235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/634985153", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958319, + -19.8568175 + ] + }, + "id": "way/634985153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/640678301", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "operator": "Terminal Guaraituba", + "supervised": "no", + "surface": "asphalt", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1695405, + -25.3503047 + ] + }, + "id": "way/640678301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/663209176", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Sapiens Parque", + "smoothness": "excellent", + "supervised": "no", + "surface": "paving_stones", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.44447, + -27.4304908 + ] + }, + "id": "way/663209176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/664883313", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "178", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Grajaú", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "Via Mobilidade", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6961936, + -23.7360626 + ] + }, + "id": "way/664883313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/668678501", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8524671, + -20.3441217 + ] + }, + "id": "way/668678501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/669118381", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4530173, + -1.3548006 + ] + }, + "id": "way/669118381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/674239799", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1571749, + -26.8557719 + ] + }, + "id": "way/674239799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/679925461", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "Bicicletário", + "covered": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2401103, + -2.5153301 + ] + }, + "id": "way/679925461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/681462695", + "area": "yes", + "bicycle_parking": "pista_de_manobras", + "leisure": "track", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.36671, + -22.7499796 + ] + }, + "id": "way/681462695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/681772917", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9813063, + -8.0639838 + ] + }, + "id": "way/681772917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/682137699", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "156", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Pirituba", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7268465, + -23.4870444 + ] + }, + "id": "way/682137699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/682148690", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3141362, + -22.7055291 + ] + }, + "id": "way/682148690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/682193333", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9936029, + -18.9628298 + ] + }, + "id": "way/682193333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/683026733", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3678563, + -23.5406198 + ] + }, + "id": "way/683026733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/683217762", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.409435, + -23.9606366 + ] + }, + "id": "way/683217762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/683750616", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4595489, + -22.4503033 + ] + }, + "id": "way/683750616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/688401408", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.069173, + -22.3528333 + ] + }, + "id": "way/688401408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/690061920", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.9660406, + -8.2604703 + ] + }, + "id": "way/690061920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/697657607", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8403018, + -24.4873952 + ] + }, + "id": "way/697657607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/698745615", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "fee": "no", + "lit": "yes", + "name": "Bicicletário Terminal Água Espraiada", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6946098, + -23.6140303 + ] + }, + "id": "way/698745615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/698759080", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "144", + "covered": "yes", + "fee": "no", + "location": "underground", + "name": "Bicicletário Estação Campo Belo", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "url": "https://www.viamobilidade.com.br/guia-do-usuario/bicicletas", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6824789, + -23.6185706 + ] + }, + "id": "way/698759080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699217995", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "building:levels": "1", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2030874, + -23.2702947 + ] + }, + "id": "way/699217995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704227866", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "576", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Suzano", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3076478, + -23.5352219 + ] + }, + "id": "way/704227866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704356614", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4228103, + -25.6243001 + ] + }, + "id": "way/704356614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/704889596", + "amenity": "bicycle_parking", + "capacity": "3", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1783754, + -22.925174 + ] + }, + "id": "node/704889596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/704889604", + "amenity": "bicycle_parking", + "capacity": "1", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1782252, + -22.9251098 + ] + }, + "id": "node/704889604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/704992190", + "amenity": "bicycle_parking", + "capacity": "5", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1758564, + -22.9279405 + ] + }, + "id": "node/704992190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/708149106", + "amenity": "bicycle_parking", + "area": "yes", + "bike_ride": "yes", + "name": "Acesso Principal Ciclovia Marginal Pinheiros", + "parking": "carports", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6841144, + -23.6948828 + ] + }, + "id": "way/708149106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/712669948", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4199857, + -12.9444975 + ] + }, + "id": "way/712669948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713042093", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.945366, + -29.4486382 + ] + }, + "id": "way/713042093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713042098", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9497373, + -29.4468917 + ] + }, + "id": "way/713042098" + }, + { + "type": "Feature", + "properties": { + "@id": "way/714148513", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9729571, + -30.1251904 + ] + }, + "id": "way/714148513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715945825", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "155", + "covered": "yes", + "height": "3.072", + "name": "Bicicletário Estação Guilhermina Esperança", + "opening_hours": "Mo-Su 06:00-22:00", + "opening_hours:covid19": "Mo-Su 07:00-20:00", + "operator": "Metrô", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5176175, + -23.5305839 + ] + }, + "id": "way/715945825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718349148", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9437308, + -29.4489091 + ] + }, + "id": "way/718349148" + }, + { + "type": "Feature", + "properties": { + "@id": "node/724757320", + "amenity": "bicycle_parking", + "capacity": "5", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4481124, + -22.8758141 + ] + }, + "id": "node/724757320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/726593618", + "access": "yes", + "amenity": "bicycle_parking", + "area": "yes", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no", + "name": "Bicicletário", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5637881, + -3.7764837 + ] + }, + "id": "way/726593618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/727632327", + "amenity": "bicycle_parking", + "capacity": "8", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1982123, + -22.9560372 + ] + }, + "id": "node/727632327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/730870939", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9505587, + -8.0140088 + ] + }, + "id": "way/730870939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/733172196", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "334", + "covered": "yes", + "description": "Bicicletário da Estação Prefeito Celso Daniel - Santo André. Requer cadastro e apresentação de documentos. Visite o website para horários e detalhes.", + "fee": "no", + "name": "Bicicletário Terminal Metropolitano Santo André", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "EMTU", + "operator:type": "public", + "supervised": "yes", + "website": "https://www.cptm.sp.gov.br/sua-viagem/bicicletas-CPTM/Pages/Bicicletario.aspx", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.529066, + -23.6515218 + ] + }, + "id": "way/733172196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/734028237", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "70", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Cidade Tiradentes", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "Tembici", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4087069, + -23.5832522 + ] + }, + "id": "way/734028237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/737029358", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "80", + "covered": "yes", + "fee": "no", + "indoor": "yes", + "lit": "yes", + "name": "Bicicletário Estação Santa Cruz", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "url": "https://www.viamobilidade.com.br/guia-do-usuario/bicicletas", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6370968, + -23.5978587 + ] + }, + "id": "way/737029358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/737473190", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.2180221, + -9.4378735 + ] + }, + "id": "way/737473190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/741276306", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1924391, + -1.1850261 + ] + }, + "id": "way/741276306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/742691015", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.311287, + -20.3420442 + ] + }, + "id": "way/742691015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/748840005", + "access": "yes", + "amenity": "bicycle_parking", + "amenity_1": "motorcycle_parking", + "fee": "no", + "surface": "paved", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2588502, + -20.2592777 + ] + }, + "id": "way/748840005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/750798614", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7372966, + 2.8039994 + ] + }, + "id": "way/750798614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/754303530", + "amenity": "bicycle_parking", + "highway": "footway", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5243981, + -27.6053148 + ] + }, + "id": "way/754303530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/758228910", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9643767, + -8.1480558 + ] + }, + "id": "way/758228910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/762670707", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "building": "yes", + "capacity": "50", + "covered": "yes", + "name": "Bicicletário Estação Mendes", + "note": "Bicicletário Estação Mendes", + "operator": "CPTM", + "operator:type": "public", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7094903, + -23.7555519 + ] + }, + "id": "way/762670707" + }, + { + "type": "Feature", + "properties": { + "@id": "node/763824959", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1911335, + -22.9641101 + ] + }, + "id": "node/763824959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/768959274", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8724442, + -15.7655901 + ] + }, + "id": "node/768959274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/771839321", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1977653, + -22.9845627 + ] + }, + "id": "node/771839321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775146268", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Shopping Max&Flora", + "operator:type": "business", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5206096, + -27.5964118 + ] + }, + "id": "way/775146268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782277873", + "access": "private", + "amenity": "bicycle_parking", + "capacity": "50", + "covered": "yes", + "description": "Biciletário_Dom_Pedro_II", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0820844, + -26.9153355 + ] + }, + "id": "way/782277873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782466658", + "access": "yes", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.822148, + -21.3174836 + ] + }, + "id": "way/782466658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/798106718", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3421876, + -12.9027366 + ] + }, + "id": "way/798106718" + }, + { + "type": "Feature", + "properties": { + "@id": "node/810362121", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2024-11-03", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1767063, + -22.9311147 + ] + }, + "id": "node/810362121" + }, + { + "type": "Feature", + "properties": { + "@id": "node/814237411", + "amenity": "bicycle_parking", + "capacity": "9", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.173598, + -22.9524756 + ] + }, + "id": "node/814237411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/817335294", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1354397, + -26.9138635 + ] + }, + "id": "way/817335294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/823859845", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "14", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9686638, + -8.1174788 + ] + }, + "id": "way/823859845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824254060", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8409266, + -24.2813431 + ] + }, + "id": "way/824254060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824627785", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.842715, + -24.2956811 + ] + }, + "id": "way/824627785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/827146295", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4576206, + -12.9761328 + ] + }, + "id": "way/827146295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/827182391", + "access": "customers", + "addr:street": "Rua Rio Branco nº 36 E", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "1968", + "covered": "yes", + "fee": "yes", + "name": "Bicicletário Estação Mauá", + "opening_hours": "24/7", + "operator": "ASCOBIKE", + "operator:type": "private", + "phone": "+55 (11) 4514-2996", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.462169, + -23.6674909 + ] + }, + "id": "way/827182391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/831335180", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "covered": "yes", + "fee": "no", + "operator": "SME", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7261111, + -23.8282284 + ] + }, + "id": "way/831335180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/831449250", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "261", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Autódromo", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "Via Mobilidade", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6882519, + -23.7052472 + ] + }, + "id": "way/831449250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/838078984" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6544593, + -26.9072683 + ] + }, + "id": "node/838078984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/841962199", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7687605, + -24.7289423 + ] + }, + "id": "way/841962199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/852186532", + "amenity": "bicycle_parking", + "capacity": "18", + "name": "Estacionamento de Bicicleta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2519295, + -25.4506383 + ] + }, + "id": "node/852186532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/852186535", + "amenity": "bicycle_parking", + "capacity": "20", + "name": "Estacionamento de Bicicleta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2508562, + -25.4544104 + ] + }, + "id": "node/852186535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/854077419", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "yes", + "fee": "no", + "operator": "Grupo Big", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9291894, + -8.0973501 + ] + }, + "id": "way/854077419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/856172602", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "lockers", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.1838608, + -23.5080632 + ] + }, + "id": "way/856172602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/863997086", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "100", + "covered": "yes", + "description": "Bicicletário da estação do monotrilho que fará conexão com a ciclovia existente", + "landuse": "construction", + "layer": "0", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7026862, + -23.6223035 + ] + }, + "id": "way/863997086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/865743637", + "amenity": "bicycle_parking", + "capacity": "18", + "name": "Estacionamento de Bicicleta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2509671, + -25.4504852 + ] + }, + "id": "node/865743637" + }, + { + "type": "Feature", + "properties": { + "@id": "node/865743643", + "amenity": "bicycle_parking", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.251512, + -25.4525444 + ] + }, + "id": "node/865743643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/875928097", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "20", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4908715, + -22.7442799 + ] + }, + "id": "way/875928097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/888605512", + "amenity": "bicycle_parking", + "capacity": "15", + "covered": "no", + "fee": "no", + "operator": "Shopping Tijuca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2347608, + -22.9216512 + ] + }, + "id": "node/888605512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895031808", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1000", + "covered": "no", + "fee": "no", + "level": "0", + "lit": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9253003, + -8.0611674 + ] + }, + "id": "way/895031808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/897358193", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "fee": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5334876, + -23.6461619 + ] + }, + "id": "way/897358193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/912538672", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "50", + "operator": "Condaominio Amizade", + "operator:type": "business", + "surface": "paved", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2048238, + -22.8024113 + ] + }, + "id": "way/912538672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951133", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159749, + -15.8148914 + ] + }, + "id": "way/918951133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951134", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159524, + -15.8149336 + ] + }, + "id": "way/918951134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951135", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159285, + -15.8149812 + ] + }, + "id": "way/918951135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951136", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1160023, + -15.8148483 + ] + }, + "id": "way/918951136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918951137", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.116021, + -15.8148137 + ] + }, + "id": "way/918951137" + }, + { + "type": "Feature", + "properties": { + "@id": "node/921822286", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2976397, + -20.2808486 + ] + }, + "id": "node/921822286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/921822294", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.293048, + -20.2827911 + ] + }, + "id": "node/921822294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/922790294", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.082889, + -26.4764463 + ] + }, + "id": "way/922790294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/942402204", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9101278, + -8.1208314 + ] + }, + "id": "way/942402204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/942402205", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9102313, + -8.1212612 + ] + }, + "id": "way/942402205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/942402206", + "amenity": "bicycle_parking", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9102938, + -8.1215319 + ] + }, + "id": "way/942402206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/942593085", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "250", + "covered": "yes", + "level": "0", + "operator": "ViaQuatro", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7366743, + -23.5900517 + ] + }, + "id": "way/942593085" + }, + { + "type": "Feature", + "properties": { + "@id": "node/952402264", + "amenity": "bicycle_parking", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.2586329, + -18.9171018 + ] + }, + "id": "node/952402264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/954400389", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "64", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal São Miguel", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.433808, + -23.4919492 + ] + }, + "id": "way/954400389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/955494640", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0450422, + -15.8320555 + ] + }, + "id": "way/955494640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/956366236", + "access": "yes", + "amenity": "bicycle_parking", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1729166, + -26.6854399 + ] + }, + "id": "way/956366236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979341205", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "196", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Comendador Ermelino", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4811059, + -23.4850798 + ] + }, + "id": "way/979341205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979341206", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "208", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação São Miguel Paulista", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4439193, + -23.4902892 + ] + }, + "id": "way/979341206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979341207", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "256", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Jardim Helena - Vila Mara", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4212459, + -23.4918737 + ] + }, + "id": "way/979341207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979341208", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "256", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Itaim Paulista", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4035105, + -23.4938886 + ] + }, + "id": "way/979341208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979341209", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "240", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Jardim Romano", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3851655, + -23.4849273 + ] + }, + "id": "way/979341209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979348497", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "200", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Engenheiro Goulart (Norte)", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5202651, + -23.4970408 + ] + }, + "id": "way/979348497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979348498", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "74", + "covered": "yes", + "fee": "no", + "layer": "-1", + "name": "Bicicletário Estação Engenheiro Goulart (Sul)", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5202347, + -23.498908 + ] + }, + "id": "way/979348498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979348499", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "192", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Guarulhos CECAP", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4955502, + -23.4482799 + ] + }, + "id": "way/979348499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979348500", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "100", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Aeroporto Guarulhos", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.495024, + -23.4327476 + ] + }, + "id": "way/979348500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979348501", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "136", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Ferraz de Vasconcelos", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3678589, + -23.5406478 + ] + }, + "id": "way/979348501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979348502", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "60", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Poá", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3438261, + -23.5252237 + ] + }, + "id": "way/979348502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979348503", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "84", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Calmon Viana", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "wikidata": "Q10275620", + "wikipedia": "pt:Estação Calmon Viana", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.332351, + -23.5257724 + ] + }, + "id": "way/979348503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979352626", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "164", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Tamanduateí", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.588876, + -23.5922618 + ] + }, + "id": "way/979352626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979352627", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "262", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Jurubatuba", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7015958, + -23.6779556 + ] + }, + "id": "way/979352627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979355386", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "94", + "covered": "yes", + "fee": "no", + "layer": "-1", + "name": "Bicicletário Estação Vila Olímpia", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6920543, + -23.5936655 + ] + }, + "id": "way/979355386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979355387", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "60", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Cidade Universitária", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7116715, + -23.5570337 + ] + }, + "id": "way/979355387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979355388", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "233", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Villa Lobos - Jaguaré", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7324795, + -23.5458428 + ] + }, + "id": "way/979355388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979417384", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "144", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Ceasa", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7427981, + -23.5367137 + ] + }, + "id": "way/979417384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979417385", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "166", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Osasco", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7758792, + -23.5283162 + ] + }, + "id": "way/979417385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979417386", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "145", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Carapicuíba", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8354228, + -23.5188905 + ] + }, + "id": "way/979417386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979417387", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "117", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Jardim Belval", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8891196, + -23.5137265 + ] + }, + "id": "way/979417387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979420369", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "279", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Jardim Silveira", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8936499, + -23.5242154 + ] + }, + "id": "way/979420369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979420370", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "279", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Jandira", + "opening_hours": "Mo-Su,PH 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9017089, + -23.5275322 + ] + }, + "id": "way/979420370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979420371", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "160", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Engenheiro Cardoso", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9283794, + -23.5350056 + ] + }, + "id": "way/979420371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979420372", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "480", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Itapevi", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9350366, + -23.5448995 + ] + }, + "id": "way/979420372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979421702", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "144", + "covered": "yes", + "fee": "no", + "layer": "-1", + "name": "Bicicletário Estação Vila Aurora", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7478512, + -23.438572 + ] + }, + "id": "way/979421702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979421703", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "67", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Caieiras", + "opening_hours": "Mo-Su 04:00-23:59", + "operator": "CPTM", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7513122, + -23.366064 + ] + }, + "id": "way/979421703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979423306", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "68", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Metropolitano São Bernardo do Campo", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "EMTU", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5524152, + -23.6978638 + ] + }, + "id": "way/979423306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979423307", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "roof", + "capacity": "68", + "fee": "no", + "name": "Bicicletário Estação/Terminal Jabaquara", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "EMTU", + "operator:type": "public", + "supervised": "yes", + "wikidata": "Q5244789", + "wikipedia": "pt:Terminal Intermodal Jabaquara", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6401937, + -23.6466937 + ] + }, + "id": "way/979423307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979425620", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "55", + "covered": "yes", + "fee": "no", + "layer": "-1", + "name": "Bicicletário Estação/Terminal Itaquera", + "opening_hours": "Mo-Su 06:00-22:00", + "opening_hours:covid19": "Mo-Su 07:00-20:00", + "operator": "Metrô", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4719643, + -23.5425655 + ] + }, + "id": "way/979425620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979425621", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "110", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Carrão", + "opening_hours": "Mo-Su 06:00-22:00", + "opening_hours:covid19": "Mo-Su 07:00-20:00", + "operator": "Metrô", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5648458, + -23.538903 + ] + }, + "id": "way/979425621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979425622", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "20", + "covered": "yes", + "description": "Entrada dentro da estação, baixando as escadas", + "fee": "no", + "layer": "-1", + "name": "Bicicletário Estação Sé", + "opening_hours": "Mo-Su 06:00-22:00", + "opening_hours:covid19": "Mo-Su 07:00-20:00", + "operator": "Metrô", + "operator:type": "public", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6336888, + -23.5509167 + ] + }, + "id": "way/979425622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/979425623", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "100", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Largo da Batata (Estação Faria Lima)", + "opening_hours": "24/7", + "operator": "Tembici", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6943983, + -23.5673683 + ] + }, + "id": "way/979425623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/981320058", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1298359, + -26.8957075 + ] + }, + "id": "way/981320058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/981320064", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.129979, + -26.8954725 + ] + }, + "id": "way/981320064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/981370384", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "covered", + "capacity": "850", + "covered": "yes", + "fee": "no", + "operator": "Prefeitura Municipal de Niterói", + "operator:type": "government", + "start_date": "2017-03-01", + "website": "http://niteroidebicicleta.rj.gov.br/bicicletario-arariboia/", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1243948, + -22.8941829 + ] + }, + "id": "way/981370384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/984724986", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "lockers", + "capacity": "16", + "covered": "yes", + "fee": "no", + "opening_hours": "Mo-Fr 08:00-19:00; Sa 08:00-13:00; Su,PH off", + "operator": "BikePoint Floripa", + "operator:type": "private", + "shower": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5520489, + -27.5984969 + ] + }, + "id": "way/984724986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987778700", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "117", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Pinheiros", + "opening_hours": "Mo-Su 04:40-24:00", + "operator": "ViaQuatro", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7014334, + -23.5674273 + ] + }, + "id": "way/987778700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987780989", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "80", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Morumbi", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaQuatro", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7235454, + -23.5859441 + ] + }, + "id": "way/987780989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987788235", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "30", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Hospital São Paulo", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6457323, + -23.5987698 + ] + }, + "id": "way/987788235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987788236", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "36", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação AACD Servidor", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6519769, + -23.5979753 + ] + }, + "id": "way/987788236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987789310", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "68", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Moema", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6618352, + -23.6038974 + ] + }, + "id": "way/987789310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987789786", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "92", + "covered": "yes", + "fee": "no", + "layer": "1", + "name": "Bicicletário Estação Eucaliptos", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6685425, + -23.6093396 + ] + }, + "id": "way/987789786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987790372", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "capacity": "30", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Brooklin", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6886533, + -23.6270999 + ] + }, + "id": "way/987790372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987791152", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "84", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Borba Gato", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6930155, + -23.6336135 + ] + }, + "id": "way/987791152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987792505", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "126", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Alto da Boa Vista", + "opening_hours": "Mo-Su 06:00-22:00", + "operator": "ViaMobilidade", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6993014, + -23.6409977 + ] + }, + "id": "way/987792505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987795585", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "15", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Parelheiros", + "opening_hours": "24/7", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7268737, + -23.8282875 + ] + }, + "id": "way/987795585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990560668", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "50", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Grajaú", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6963091, + -23.7362345 + ] + }, + "id": "way/990560668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990567286", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Bicicletário Terminal Jardim Ângela", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7745551, + -23.6910084 + ] + }, + "id": "way/990567286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990569747", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "106", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Capelinha", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7613442, + -23.6550675 + ] + }, + "id": "way/990569747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990570215", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "72", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal João Dias", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7330791, + -23.6438944 + ] + }, + "id": "way/990570215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990572210", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "10", + "covered": "yes", + "fee": "no", + "level": "1", + "name": "Bicicletário Terminal Santo Amaro", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7112422, + -23.6545518 + ] + }, + "id": "way/990572210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990575308", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Jardim Britânia", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7869726, + -23.4324341 + ] + }, + "id": "way/990575308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990575808", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "74", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Lapa", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7003195, + -23.5203245 + ] + }, + "id": "way/990575808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990576808", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "24", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Vila Nova Cachoeirinha", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6689576, + -23.474636 + ] + }, + "id": "way/990576808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990576956", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "7", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Casa Verde", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6625909, + -23.496047 + ] + }, + "id": "way/990576956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990579625", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "38", + "covered": "no", + "fee": "no", + "name": "Bicicletário Terminal Vila Carrão", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.522687, + -23.5581962 + ] + }, + "id": "way/990579625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990580079", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "28", + "covered": "no", + "fee": "no", + "name": "Bicicletário Terminal Penha", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5469116, + -23.5192945 + ] + }, + "id": "way/990580079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990580921", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "54", + "covered": "yes", + "fee": "no", + "level": "-1", + "name": "Bicicletário Terminal Aricanduva", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5548217, + -23.5279334 + ] + }, + "id": "way/990580921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990582141", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "41", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Amaral Gurgel", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6485814, + -23.5387436 + ] + }, + "id": "way/990582141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990583721", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "66", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Princesa Isabel", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644982, + -23.5341232 + ] + }, + "id": "way/990583721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990584152", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "22", + "covered": "no", + "fee": "no", + "name": "Bicicletário Terminal Bandeira", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6403116, + -23.5492726 + ] + }, + "id": "way/990584152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990586140", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "156", + "covered": "yes", + "fee": "no", + "layer": "-1", + "name": "Bicicletário Terminal Parque Dom Pedro II", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6299181, + -23.5480223 + ] + }, + "id": "way/990586140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990586141", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "58", + "covered": "no", + "fee": "no", + "name": "Bicicletário Terminal Mercado", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6300439, + -23.5459281 + ] + }, + "id": "way/990586141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990852848", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "building": "yes", + "capacity": "40", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Estação Pedro II (Oeste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6275424, + -23.5499514 + ] + }, + "id": "way/990852848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990852849", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Pedro II (Leste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.626409, + -23.549945 + ] + }, + "id": "way/990852849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990854526", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "48", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Ana Neri (Oeste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6150999, + -23.5591051 + ] + }, + "id": "way/990854526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990854527", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "42", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Ana Neri (Leste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6150178, + -23.5583855 + ] + }, + "id": "way/990854527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990855224", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Alberto Lion (Leste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6106561, + -23.5641374 + ] + }, + "id": "way/990855224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990855225", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Alberto Lion (Oeste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6120222, + -23.5644915 + ] + }, + "id": "way/990855225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990856175", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "42", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação CA Ypiranga", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6026312, + -23.5742213 + ] + }, + "id": "way/990856175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990872255", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação NS Aparecida (Oeste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5980745, + -23.5913632 + ] + }, + "id": "way/990872255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990872256", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "22", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação NS Aparecida (Leste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5975479, + -23.5912885 + ] + }, + "id": "way/990872256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990874655", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Rua do Grito (Oeste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5974913, + -23.5982428 + ] + }, + "id": "way/990874655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990874656", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "62", + "covered": "no", + "fee": "no", + "name": "Bicicletário Estação Rua do Grito (Leste)", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5969327, + -23.5982871 + ] + }, + "id": "way/990874656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990876169", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "146", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Sacomã", + "operator": "Socicam", + "operator:type": "private", + "supervised": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6033058, + -23.6036418 + ] + }, + "id": "way/990876169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990877261", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "32", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Vila Prudente", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5836292, + -23.5850569 + ] + }, + "id": "way/990877261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990878228", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "42", + "covered": "no", + "fee": "no", + "name": "Bicicletário Terminal Sapopemba", + "operator": "Socicam", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.501486, + -23.6142941 + ] + }, + "id": "way/990878228" + }, + { + "type": "Feature", + "properties": { + "@id": "way/995272336", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6467185, + -20.43991 + ] + }, + "id": "way/995272336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/999574534", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.175978, + -22.5102496 + ] + }, + "id": "way/999574534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1007481360", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9218769, + -22.4994501 + ] + }, + "id": "way/1007481360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1007844168", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6582743, + -27.0153896 + ] + }, + "id": "way/1007844168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1007844169", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6591832, + -27.0166981 + ] + }, + "id": "way/1007844169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1007844170", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6605161, + -27.0165084 + ] + }, + "id": "way/1007844170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008865394", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "130", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Cecap", + "note": "O uso é gratuito. Para usufruir é necessário apresentar documento com foto e ter cadeado próprio.", + "opening_hours": "Mo-Sa 06:00-22:00", + "operator": "EMTU - GDF", + "operator:type": "public", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4966325, + -23.462229 + ] + }, + "id": "way/1008865394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1011854903", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6532089, + -27.0243227 + ] + }, + "id": "way/1011854903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1011854905", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.655405, + -27.0273856 + ] + }, + "id": "way/1011854905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1011854906", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6549089, + -27.0265778 + ] + }, + "id": "way/1011854906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1011854907", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6554177, + -27.0268902 + ] + }, + "id": "way/1011854907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1011854908", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6514341, + -27.0216578 + ] + }, + "id": "way/1011854908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1011854909", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6509653, + -27.0216694 + ] + }, + "id": "way/1011854909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1011854911", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6590477, + -27.016163 + ] + }, + "id": "way/1011854911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1014955396", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9626654, + -8.0233161 + ] + }, + "id": "way/1014955396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1016601222", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6282612, + -29.958755 + ] + }, + "id": "way/1016601222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1017704428", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.0072488, + -8.0212814 + ] + }, + "id": "way/1017704428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1018943843", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9495941, + -8.0588537 + ] + }, + "id": "way/1018943843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1023664092", + "access": "private", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8820044, + -8.0146425 + ] + }, + "id": "way/1023664092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1023700590", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8825872, + -8.0140246 + ] + }, + "id": "way/1023700590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1023718703", + "amenity": "bicycle_parking", + "description": "bicicletário e dock de patinete elétrico", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8988341, + -8.0376272 + ] + }, + "id": "way/1023718703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1025570799", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.943208, + -8.0448078 + ] + }, + "id": "way/1025570799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1026704125", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2743154, + -22.9625588 + ] + }, + "id": "way/1026704125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1028236204", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "surface", + "capacity": "23", + "fixme": "Há uma área onde tem bicicletário, não sei exatamente a capacidade máxima deste suporte superficial no pátio/arena do campus.", + "operator": "PUCG-UFF", + "operator:type": "university", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3262201, + -21.7647347 + ] + }, + "id": "way/1028236204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1028789522", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "surface", + "capacity": "10", + "description": "Há uma área a jusante do bloco A, onde se coloca e fixa as bikes do estudantes desta instituição e campus da UFF.", + "operator": "PUCG-UFF", + "operator:type": "university", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264603, + -21.7649838 + ] + }, + "id": "way/1028789522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1028789971", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "surface", + "capacity": "12", + "operator": "PUCG-UFF", + "operator:type": "university", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261485, + -21.7654726 + ] + }, + "id": "way/1028789971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1029561490", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "informal", + "capacity": "6", + "operator": "PUCG-UFF", + "operator:type": "university", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3268933, + -21.765454 + ] + }, + "id": "way/1029561490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1030046081", + "access": "permit", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "yes", + "operator": "Correios", + "operator:type": "public/government", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3193397, + -21.7581325 + ] + }, + "id": "way/1030046081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1030052828", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "surface", + "capacity": "12", + "operator": "PMCG", + "operator:type": "public", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.321439, + -21.7574914 + ] + }, + "id": "way/1030052828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1036403150", + "access": "private", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8446453, + -7.9569718 + ] + }, + "id": "way/1036403150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1036403151", + "access": "private", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8452886, + -7.9571903 + ] + }, + "id": "way/1036403151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1038329474", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.250227, + -25.4505614 + ] + }, + "id": "way/1038329474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1051344997", + "amenity": "bicycle_parking", + "capacity": "15", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2519213, + -25.4490394 + ] + }, + "id": "way/1051344997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1051406626", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3360688, + -21.7618047 + ] + }, + "id": "way/1051406626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1061526430", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "covered": "no", + "fee": "no", + "operator": "Condomínio Completo Piedade", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.311307, + -22.8905515 + ] + }, + "id": "way/1061526430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1061526441", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3114225, + -22.8898694 + ] + }, + "id": "way/1061526441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1061545023", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.311114, + -22.8904768 + ] + }, + "id": "way/1061545023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1061895542", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3117744, + -22.8903769 + ] + }, + "id": "way/1061895542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1064127045", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "building": "yes", + "capacity": "27", + "covered": "no", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no", + "surface": "paving_stones", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6677479, + -27.6457209 + ] + }, + "id": "way/1064127045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1071809317", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9579456, + -21.1102882 + ] + }, + "id": "way/1071809317" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1073053589", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "name": "Extra" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0717364, + -10.9480912 + ] + }, + "id": "node/1073053589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1080533800", + "amenity": "bicycle_parking", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0594485, + -10.9446155 + ] + }, + "id": "node/1080533800" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1081107397", + "amenity": "bicycle_parking", + "fee": "no", + "name": "Shopping Riomar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0484481, + -10.9437252 + ] + }, + "id": "node/1081107397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1086840283", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5417853, + -9.361843 + ] + }, + "id": "way/1086840283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1091241489", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0998814, + -26.2497983 + ] + }, + "id": "way/1091241489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1091754299", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6060058, + -3.8174309 + ] + }, + "id": "way/1091754299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1093929894", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "234", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Aeroporo de Guarulhos", + "opening_hours": "24/7", + "operator": "GRU Airport", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4847084, + -23.4253737 + ] + }, + "id": "way/1093929894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1093932126", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "202", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal de Cargas - Aeroporto", + "opening_hours": "24/7", + "operator": "GRU Airport", + "operator:type": "private", + "supervised": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4873922, + -23.4243866 + ] + }, + "id": "way/1093932126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1099448842", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2513391, + -25.4527702 + ] + }, + "id": "way/1099448842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1099841980", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6743561, + -26.9332012 + ] + }, + "id": "way/1099841980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1101577494", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.160252, + -6.4948264 + ] + }, + "id": "way/1101577494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1101930849", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7386678, + -28.1450693 + ] + }, + "id": "way/1101930849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1101930853", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.729853, + -28.1463497 + ] + }, + "id": "way/1101930853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1104422142", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7274003, + -28.1275739 + ] + }, + "id": "way/1104422142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1104828116", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "11", + "fee": "no", + "lit": "yes", + "smoothness": "good", + "surface": "paving_stones", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6549189, + -26.9178799 + ] + }, + "id": "way/1104828116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1104828117", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "fee": "no", + "lit": "yes", + "smoothness": "good", + "surface": "paving_stones", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6553306, + -26.9180206 + ] + }, + "id": "way/1104828117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1106478592", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1925373, + -18.6523221 + ] + }, + "id": "way/1106478592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1107989615", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9992596, + -8.0169409 + ] + }, + "id": "way/1107989615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1108187782", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "crossing": "uncontrolled", + "crossing:markings": "yes", + "crossing_ref": "zebra", + "fee": "no", + "highway": "crossing", + "source": "Bing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.183479, + -22.9705456 + ] + }, + "id": "node/1108187782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1115086108", + "amenity": "bicycle_parking", + "capacity": "20", + "source": "Note #1732303", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7395092, + -29.705263 + ] + }, + "id": "way/1115086108" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1116708256", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3994256, + -22.722692 + ] + }, + "id": "way/1116708256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1116708257", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3988257, + -22.7220479 + ] + }, + "id": "way/1116708257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1117013852", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.7906063, + -23.1974228 + ] + }, + "id": "way/1117013852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1117541983", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0704359, + -22.8152996 + ] + }, + "id": "node/1117541983" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1120614474", + "access": "permissive", + "amenity": "bicycle_parking", + "capacity": "30", + "covered": "no", + "name": "bicicletário da CHESF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9305952, + -8.0653027 + ] + }, + "id": "node/1120614474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1127347156", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6856284, + -26.930611 + ] + }, + "id": "way/1127347156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1130997111", + "bicycle_parking": "building", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5126683, + -17.6899321 + ] + }, + "id": "way/1130997111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1132330172", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "operator": "Koch", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6170105, + -27.0946999 + ] + }, + "id": "way/1132330172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133801220", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4927796, + -3.842549 + ] + }, + "id": "way/1133801220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133801446", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4932849, + -3.8424331 + ] + }, + "id": "way/1133801446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1143260928", + "amenity": "bicycle_parking", + "name": "Estacionamento Teatro Municipal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7422689, + -24.7191807 + ] + }, + "id": "node/1143260928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1147338865", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "covered": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4900843, + -11.862085 + ] + }, + "id": "way/1147338865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1148200345", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "13", + "covered": "no", + "source": "Bing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1695528, + -22.9635201 + ] + }, + "id": "node/1148200345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1155351638", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3240969, + -31.7811827 + ] + }, + "id": "way/1155351638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1155351639", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.322908, + -31.7806813 + ] + }, + "id": "way/1155351639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1155439617", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "6", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4335493, + -12.9282618 + ] + }, + "id": "way/1155439617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1160681776", + "amenity": "bicycle_parking", + "capacity": "0", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1936602, + -23.0846589 + ] + }, + "id": "way/1160681776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1161842390", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "shed", + "covered": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9031346, + -27.1428654 + ] + }, + "id": "way/1161842390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1162894323", + "addr:city": "Alegrete", + "addr:country": "BR", + "addr:state": "RS", + "bicycle_parking": "wall_loops", + "building": "roof", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.7680991, + -29.789339 + ] + }, + "id": "way/1162894323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1163718948", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Paragem Espaço Cerâmica", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5797409, + -23.6247967 + ] + }, + "id": "way/1163718948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1168778742", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5117757, + -22.7710088 + ] + }, + "id": "way/1168778742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175128285", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.466632, + -28.9505941 + ] + }, + "id": "way/1175128285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1187727924", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3719798, + -22.8620141 + ] + }, + "id": "node/1187727924" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1189224015", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1683882, + -21.8004664 + ] + }, + "id": "way/1189224015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1202373492", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.541802, + -3.7184757 + ] + }, + "id": "way/1202373492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1202986581", + "access": "yes", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1957245, + -22.7950051 + ] + }, + "id": "way/1202986581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1203331404", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "operator": "SOCICAM", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5874345, + -3.7899389 + ] + }, + "id": "way/1203331404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1203770450", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1451416, + -30.0313243 + ] + }, + "id": "way/1203770450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1203770622", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1446588, + -30.029935 + ] + }, + "id": "way/1203770622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204476127", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário de Visitantes", + "operator": "IFMG Campus Betim", + "operator:type": "public", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1184011, + -19.9376284 + ] + }, + "id": "way/1204476127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204476128", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário Superior", + "operator": "IFMG Campus Betim", + "operator:type": "public", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1183031, + -19.93817 + ] + }, + "id": "way/1204476128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1208353705", + "amenity": "bicycle_parking", + "name": "Bicicletario", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6096479, + -3.8889836 + ] + }, + "id": "way/1208353705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1208877106", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1454133, + -30.0324392 + ] + }, + "id": "way/1208877106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1214798059", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2246898, + -26.532755 + ] + }, + "id": "way/1214798059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1224652208", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4517404, + -1.3401549 + ] + }, + "id": "way/1224652208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1239776403", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "22", + "covered": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1633796, + -26.7071737 + ] + }, + "id": "way/1239776403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1241843366", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4947116, + -12.9119969 + ] + }, + "id": "way/1241843366" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1245888364", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "covered": "yes", + "fee": "no", + "operator": "Bosch Rexroth", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1719722, + -26.7190809 + ] + }, + "id": "way/1245888364" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1247753494", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "16", + "covered": "no", + "fee": "no", + "operator": "SMTT", + "operator:type": "government", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0488438, + -10.909286 + ] + }, + "id": "way/1247753494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1262516623", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "school", + "covered": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1180657, + -19.9377902 + ] + }, + "id": "way/1262516623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1288468894", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bike_ride": "yes", + "capacity": "20", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897272, + -7.9088961 + ] + }, + "id": "way/1288468894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1294586591", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "building": "service", + "capacity": "10", + "covered": "no", + "fee": "no", + "start_date": "2020-08-31", + "substation": "minor_distribution", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7430406, + -23.2826069 + ] + }, + "id": "way/1294586591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1299581322", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9121498, + -8.1152242 + ] + }, + "id": "way/1299581322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1303681659", + "amenity": "bicycle_parking", + "capacity": "30", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2123722, + -22.9600202 + ] + }, + "id": "node/1303681659" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307360945", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1730733, + -22.9652795 + ] + }, + "id": "node/1307360945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307361000", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1665925, + -22.962484 + ] + }, + "id": "node/1307361000" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307361002", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1728861, + -22.9651968 + ] + }, + "id": "node/1307361002" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307367015", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.176267, + -22.9667518 + ] + }, + "id": "node/1307367015" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307367039", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "bicycle_parking:pt": "Jujubinha", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1743063, + -22.9655235 + ] + }, + "id": "node/1307367039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307368006", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "Pente", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1810208, + -22.9694591 + ] + }, + "id": "node/1307368006" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307368010", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "bicycle_parking:pt": "Jujubinha", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1805441, + -22.9688578 + ] + }, + "id": "node/1307368010" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307368033", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1819727, + -22.9701314 + ] + }, + "id": "node/1307368033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307368037", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1818301, + -22.970027 + ] + }, + "id": "node/1307368037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307368048", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1803534, + -22.9690369 + ] + }, + "id": "node/1307368048" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307372714", + "amenity": "bicycle_parking", + "capacity": "13" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1858581, + -22.9731909 + ] + }, + "id": "node/1307372714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307372744", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.186758, + -22.9749136 + ] + }, + "id": "node/1307372744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307372790", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.186072, + -22.9738768 + ] + }, + "id": "node/1307372790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307372799", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1866516, + -22.9747408 + ] + }, + "id": "node/1307372799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307373000", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1872853, + -22.9751382 + ] + }, + "id": "node/1307373000" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307373903", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1885983, + -22.9783713 + ] + }, + "id": "node/1307373903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307373907", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1886959, + -22.9786236 + ] + }, + "id": "node/1307373907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307380721", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1894912, + -22.9827076 + ] + }, + "id": "node/1307380721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1307380757", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1895214, + -22.9824501 + ] + }, + "id": "node/1307380757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1318816356", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "lockers", + "building": "yes", + "fee": "no", + "surface": "concrete", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6667354, + -22.9357732 + ] + }, + "id": "way/1318816356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1320692670", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "operator": "Ternium", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.7195547, + -22.9026252 + ] + }, + "id": "way/1320692670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1327073662", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "garage", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.3188811, + -1.2917168 + ] + }, + "id": "way/1327073662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1330091803", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no", + "layer": "1", + "lit": "yes", + "name": "Bicicletário 99", + "source": "https://oestadoce.com.br/home-carrossel/app-de-mobilidade-firma-parceria-e-reforma-bicicletario-da-capital/", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5639971, + -3.7762527 + ] + }, + "id": "way/1330091803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1337702002", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.094157, + -32.0398068 + ] + }, + "id": "way/1337702002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1337832856", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "26", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5030981, + -9.3828255 + ] + }, + "id": "way/1337832856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1340154867", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "14", + "covered": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.099526, + -22.2309798 + ] + }, + "id": "way/1340154867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694087" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3102631, + -16.7098199 + ] + }, + "id": "node/1341694087" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3107914, + -16.7093279 + ] + }, + "id": "node/1341694103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3108021, + -16.7110306 + ] + }, + "id": "node/1341694141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694170" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3102418, + -16.7097281 + ] + }, + "id": "node/1341694170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.310185, + -16.7096737 + ] + }, + "id": "node/1341694180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3101556, + -16.7114025 + ] + }, + "id": "node/1341694206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694218" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3096235, + -16.7092244 + ] + }, + "id": "node/1341694218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1341694255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3095993, + -16.7094085 + ] + }, + "id": "node/1341694255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1343565305", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2262395, + -22.9879214 + ] + }, + "id": "way/1343565305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1343565308", + "amenity": "bicycle_parking", + "bicycle_parking": "safe_loops", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2159197, + -22.9862676 + ] + }, + "id": "way/1343565308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1343565315", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2243582, + -22.9874067 + ] + }, + "id": "way/1343565315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1356893391", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6696024, + -23.5215305 + ] + }, + "id": "way/1356893391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1358702074", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.7943728, + -9.5149207 + ] + }, + "id": "way/1358702074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1361473428", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8978077, + -23.8716109 + ] + }, + "id": "way/1361473428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1366047296", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1190353, + -15.8268194 + ] + }, + "id": "way/1366047296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1370098278", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1132216, + -22.883504 + ] + }, + "id": "way/1370098278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1371028558", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "600", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Pingo d'Água", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.646847, + -22.9657153 + ] + }, + "id": "way/1371028558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1371237005", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "250", + "covered": "yes", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6211559, + -22.9681281 + ] + }, + "id": "way/1371237005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1371241572", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "250", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Mato Alto - Norte", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5951881, + -22.9937501 + ] + }, + "id": "way/1371241572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1371241573", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "capacity": "250", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Mato Alto - Sul", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5978757, + -22.9939411 + ] + }, + "id": "way/1371241573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1382385717", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3784062, + -1.461986 + ] + }, + "id": "way/1382385717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1382385718", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778669, + -1.4620606 + ] + }, + "id": "way/1382385718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1382385719", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778596, + -1.4621452 + ] + }, + "id": "way/1382385719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1386356355", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "yes", + "name": "Pedal Vitta", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6356636, + -22.766114 + ] + }, + "id": "way/1386356355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387118222", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "building": "yes", + "capacity": "15", + "covered": "yes", + "operator": "Grupo JAL", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3656682, + -22.7952962 + ] + }, + "id": "way/1387118222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388130324", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0706969, + -22.8170353 + ] + }, + "id": "way/1388130324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1391603938", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3811775, + -1.47151 + ] + }, + "id": "way/1391603938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395855238", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "yes", + "fee": "no", + "operator": "Supermercado Beira Rio", + "smoothness": "excellent", + "surface": "concrete", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8577071, + -21.359225 + ] + }, + "id": "way/1395855238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1400714809" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1244903, + -22.8943457 + ] + }, + "id": "node/1400714809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1418773555", + "amenity": "bicycle_parking", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1786946, + -26.7530294 + ] + }, + "id": "way/1418773555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1419632566", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6755272, + -23.4995071 + ] + }, + "id": "way/1419632566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1424694752", + "access": "yes", + "amenity": "bicycle_parking", + "fee": "no", + "operator": "GV Shoppimg", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9513973, + -18.8540474 + ] + }, + "id": "way/1424694752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1429082980", + "access": "customers", + "addr:housenumber": "950", + "addr:street": "Avenida Limeira", + "amenity": "bicycle_parking", + "building": "container", + "fee": "yes", + "mobile": "+55 19 98112 7800", + "name": "Bike Hotel", + "website": "https://www.bikehotel.com.br/index.html", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6469782, + -22.702789 + ] + }, + "id": "way/1429082980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1429823270", + "amenity": "bicycle_parking", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4225354, + -19.8828556 + ] + }, + "id": "way/1429823270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1431800998", + "amenity": "bicycle_parking", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3168578, + -16.6065677 + ] + }, + "id": "way/1431800998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1432338831", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "operator": "FACENS", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4313704, + -23.470732 + ] + }, + "id": "way/1432338831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1433091719", + "amenity": "bicycle_parking", + "capacity": "10", + "fee": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4658845, + -23.5821023 + ] + }, + "id": "way/1433091719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1436716908", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "covered": "no", + "fee": "no", + "operator": "My Style Jacarépaguá", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3657351, + -22.9417792 + ] + }, + "id": "way/1436716908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1436716909", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "covered": "no", + "fee": "no", + "operator": "My Style Jacarépaguá", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3650157, + -22.9415636 + ] + }, + "id": "way/1436716909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1436716910", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "My Style Jacarépaguá", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3659829, + -22.9424128 + ] + }, + "id": "way/1436716910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1436716919", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "covered": "no", + "fee": "no", + "operator": "My Style Jacarépaguá", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3654932, + -22.9424481 + ] + }, + "id": "way/1436716919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1436716920", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "covered": "no", + "fee": "no", + "operator": "My Style Jacarépaguá", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3648539, + -22.9422696 + ] + }, + "id": "way/1436716920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1444034885", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8389336, + -5.0359981 + ] + }, + "id": "way/1444034885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1444034887", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8386177, + -5.0353251 + ] + }, + "id": "way/1444034887" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1446550160" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1314547, + -22.9049347 + ] + }, + "id": "node/1446550160" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1446550164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.131448, + -22.9049452 + ] + }, + "id": "node/1446550164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1446550174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1310409, + -22.9047229 + ] + }, + "id": "node/1446550174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1446550188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1310356, + -22.90473 + ] + }, + "id": "node/1446550188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1459803291", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "yes", + "operator": "Shopping Barra" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5246767, + -13.0080296 + ] + }, + "id": "node/1459803291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1519436179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5032325, + -23.4859625 + ] + }, + "id": "node/1519436179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1519436181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5033307, + -23.4858761 + ] + }, + "id": "node/1519436181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1519436184" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5034666, + -23.486006 + ] + }, + "id": "node/1519436184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1519436188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5033684, + -23.4860924 + ] + }, + "id": "node/1519436188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1556478783", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4948576, + -27.680184 + ] + }, + "id": "node/1556478783" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1556478794", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4935964, + -27.6809211 + ] + }, + "id": "node/1556478794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1565182308", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.170721, + -22.9270924 + ] + }, + "id": "node/1565182308" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1565182322", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1707963, + -22.927253 + ] + }, + "id": "node/1565182322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1565182329", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1718547, + -22.9299846 + ] + }, + "id": "node/1565182329" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1565182335", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1728096, + -22.9334096 + ] + }, + "id": "node/1565182335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579707882", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "yes", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1722516, + -22.9139566 + ] + }, + "id": "node/1579707882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579719435", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1753897, + -22.9535314 + ] + }, + "id": "node/1579719435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889464", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "70" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1984919, + -22.9833294 + ] + }, + "id": "node/1579889464" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889471", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "operator": "Casa de Cultura Laura Alvim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1991525, + -22.9866274 + ] + }, + "id": "node/1579889471" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889490", + "amenity": "bicycle_parking", + "capacity": "9", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1988159, + -22.9870318 + ] + }, + "id": "node/1579889490" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889493", + "amenity": "bicycle_parking", + "capacity": "30", + "check_date": "2025-09-05", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1907397, + -22.9870369 + ] + }, + "id": "node/1579889493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889526", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1963876, + -22.987513 + ] + }, + "id": "node/1579889526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889530", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.194727, + -22.9879424 + ] + }, + "id": "node/1579889530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889545", + "amenity": "bicycle_parking", + "capacity": "9", + "check_date": "2025-06-16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1909951, + -22.9894196 + ] + }, + "id": "node/1579889545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889559", + "amenity": "bicycle_parking", + "capacity": "7", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1910051, + -22.9896495 + ] + }, + "id": "node/1579889559" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1579889560", + "amenity": "bicycle_parking", + "capacity": "36", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1912048, + -22.9898701 + ] + }, + "id": "node/1579889560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1607720221", + "amenity": "bicycle_parking", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3044634, + -23.0091765 + ] + }, + "id": "node/1607720221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1628185465" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3112407, + -20.3420849 + ] + }, + "id": "node/1628185465" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1641806473", + "amenity": "bicycle_parking", + "name": "bicicletário do banco santander" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9119148, + -8.0557354 + ] + }, + "id": "node/1641806473" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1663523369", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9573688, + -12.2848563 + ] + }, + "id": "node/1663523369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1672902956", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1673489, + -22.9545059 + ] + }, + "id": "node/1672902956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1673649112", + "amenity": "bicycle_parking", + "capacity": "5", + "name": "Todo Dia" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9625187, + -12.2531221 + ] + }, + "id": "node/1673649112" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1678273356", + "amenity": "bicycle_parking", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9244554, + -8.0580881 + ] + }, + "id": "node/1678273356" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1701761104", + "amenity": "bicycle_parking", + "capacity": "7", + "covered": "no", + "opening_hours": "Mo-Su 08:00-17:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2205184, + -22.9662384 + ] + }, + "id": "node/1701761104" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1701768026", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "check_date": "2024-12-31", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1975841, + -22.955996 + ] + }, + "id": "node/1701768026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1701768028", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2020154, + -22.9600217 + ] + }, + "id": "node/1701768028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1701768030", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1910677, + -22.9537297 + ] + }, + "id": "node/1701768030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1710707459", + "amenity": "bicycle_parking", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2214975, + -22.9811474 + ] + }, + "id": "node/1710707459" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1720947462", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -39.0893402, + -12.658351 + ] + }, + "id": "node/1720947462" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1721337834", + "amenity": "bicycle_parking", + "capacity": "4", + "covered": "no", + "description": "paraciclo de guidon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5031895, + -27.6663119 + ] + }, + "id": "node/1721337834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1726018647", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4923812, + -27.6818101 + ] + }, + "id": "node/1726018647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1726018652", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no", + "description": "paraciclo de guidon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5233169, + -27.5996164 + ] + }, + "id": "node/1726018652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1726018653", + "amenity": "bicycle_parking", + "capacity": "12", + "covered": "no", + "description": "paraciclo de guidon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5213111, + -27.6028821 + ] + }, + "id": "node/1726018653" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1731179318", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "name": "Madereira Cerqueira" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9495492, + -12.2591745 + ] + }, + "id": "node/1731179318" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1737747013", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4904458, + -27.6820412 + ] + }, + "id": "node/1737747013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1738681218", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "yes", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4933794, + -27.6812723 + ] + }, + "id": "node/1738681218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1738827781", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5456503, + -27.5850088 + ] + }, + "id": "node/1738827781" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751723731" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6919079, + -23.7222447 + ] + }, + "id": "node/1751723731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751723734" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6920044, + -23.7222509 + ] + }, + "id": "node/1751723734" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751723741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6918891, + -23.7225371 + ] + }, + "id": "node/1751723741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751723743" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6919856, + -23.7225433 + ] + }, + "id": "node/1751723743" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751804661" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6919657, + -23.5934773 + ] + }, + "id": "node/1751804661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751804663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6921143, + -23.593468 + ] + }, + "id": "node/1751804663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751804680" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.692143, + -23.5938537 + ] + }, + "id": "node/1751804680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1751804682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6919944, + -23.593863 + ] + }, + "id": "node/1751804682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1752004534", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2335794, + -22.9226726 + ] + }, + "id": "node/1752004534" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1757825311", + "amenity": "bicycle_parking", + "covered": "no", + "name": "Academia Maciste" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9521126, + -12.2681815 + ] + }, + "id": "node/1757825311" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1762707377", + "amenity": "bicycle_parking", + "bicycle_parking": "wave", + "capacity": "13", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5159827, + -27.5986156 + ] + }, + "id": "node/1762707377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1765125129", + "access": "destination", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "yes", + "opening_hours": "Mo-Sa 05:00-24:00; Su 06:00-23:00", + "operator": "Metrô Rio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2235416, + -22.9204664 + ] + }, + "id": "node/1765125129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1770155667", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.0746476, + -23.4332887 + ] + }, + "id": "node/1770155667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1770155672", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.0766259, + -23.4333335 + ] + }, + "id": "node/1770155672" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1770155680", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.072509, + -23.4334588 + ] + }, + "id": "node/1770155680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1775509389", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5257014, + -12.997771 + ] + }, + "id": "node/1775509389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1788101450", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "80", + "covered": "yes", + "fee": "no", + "name": "MetrôRio Estação Pavuna", + "operator": "MetrôRio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3651709, + -22.8064243 + ] + }, + "id": "node/1788101450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254652", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4235922, + -23.9074283 + ] + }, + "id": "node/1801254652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254665", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4237703, + -23.9061565 + ] + }, + "id": "node/1801254665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254698", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.423824, + -23.9060437 + ] + }, + "id": "node/1801254698" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254781", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4234753, + -23.9077111 + ] + }, + "id": "node/1801254781" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254782", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4197578, + -23.9149396 + ] + }, + "id": "node/1801254782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254783", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4195164, + -23.9150524 + ] + }, + "id": "node/1801254783" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254788", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.415949, + -23.9176907 + ] + }, + "id": "node/1801254788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801254930", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4157666, + -23.9178672 + ] + }, + "id": "node/1801254930" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801255256", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4272773, + -23.899925 + ] + }, + "id": "node/1801255256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801255264", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4273323, + -23.8997367 + ] + }, + "id": "node/1801255264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801255285", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4317029, + -23.8940217 + ] + }, + "id": "node/1801255285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256074", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4331205, + -23.8967302 + ] + }, + "id": "node/1801256074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256224", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.432922, + -23.8962373 + ] + }, + "id": "node/1801256224" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256332", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.432863, + -23.8961098 + ] + }, + "id": "node/1801256332" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256389", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4325438, + -23.8951534 + ] + }, + "id": "node/1801256389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256390", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4319511, + -23.8935005 + ] + }, + "id": "node/1801256390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256391", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4310847, + -23.8933044 + ] + }, + "id": "node/1801256391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256814", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4332037, + -23.896767 + ] + }, + "id": "node/1801256814" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801256815", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4310794, + -23.8931842 + ] + }, + "id": "node/1801256815" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801257184", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4214529, + -23.8899428 + ] + }, + "id": "node/1801257184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801257185", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4231186, + -23.8896528 + ] + }, + "id": "node/1801257185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801257186", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4233251, + -23.8896135 + ] + }, + "id": "node/1801257186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801257187", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4253528, + -23.8892138 + ] + }, + "id": "node/1801257187" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801257188", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4255755, + -23.889177 + ] + }, + "id": "node/1801257188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801257196", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4268066, + -23.8889391 + ] + }, + "id": "node/1801257196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1801257198", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4295398, + -23.8884167 + ] + }, + "id": "node/1801257198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1808437623", + "amenity": "bicycle_parking", + "bicycle": "yes", + "covered": "yes", + "name": "Bicicletário CPTM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5890304, + -23.5921394 + ] + }, + "id": "node/1808437623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1808437646", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5905613, + -23.593135 + ] + }, + "id": "node/1808437646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1811237590" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6013375, + -27.1388421 + ] + }, + "id": "node/1811237590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1814465619", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1247458, + -22.8964051 + ] + }, + "id": "node/1814465619" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1828029501", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.0208107, + -19.9741525 + ] + }, + "id": "node/1828029501" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1831316118", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2323173, + -22.9245187 + ] + }, + "id": "node/1831316118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1847455104", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5196291, + -27.599827 + ] + }, + "id": "node/1847455104" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1847455119", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5212593, + -27.6005373 + ] + }, + "id": "node/1847455119" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1847479745", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5125692, + -27.5999532 + ] + }, + "id": "node/1847479745" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1937511281", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2701765, + -25.4142716 + ] + }, + "id": "node/1937511281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1949942536", + "amenity": "bicycle_parking", + "capacity": "23", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1693556, + -22.9549074 + ] + }, + "id": "node/1949942536" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1949942543", + "amenity": "bicycle_parking", + "capacity": "22", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1690525, + -22.9549814 + ] + }, + "id": "node/1949942543" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1949942544", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1689211, + -22.9547443 + ] + }, + "id": "node/1949942544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1974955980", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6575271, + -23.5901404 + ] + }, + "id": "node/1974955980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1976954103", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no", + "name": "Secretaria de Transportes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1833211, + -22.9684815 + ] + }, + "id": "node/1976954103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977039846", + "amenity": "bicycle_parking", + "bicycle_parking": "pórtico", + "capacity": "16", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1091801, + -22.9044737 + ] + }, + "id": "node/1977039846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977788431", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "25", + "fee": "no", + "name": "Tribunal de Justiça" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1723165, + -22.9052979 + ] + }, + "id": "node/1977788431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977852179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2662887, + -22.8434098 + ] + }, + "id": "node/1977852179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977852180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2667251, + -22.8437632 + ] + }, + "id": "node/1977852180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977852182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2661055, + -22.8436083 + ] + }, + "id": "node/1977852182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977852183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2665349, + -22.8439618 + ] + }, + "id": "node/1977852183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977967909", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "name": "Atacadão" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3116212, + -22.8538486 + ] + }, + "id": "node/1977967909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1978000203", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "yes", + "fee": "no", + "name": "Leroy Merlin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3640408, + -22.9943083 + ] + }, + "id": "node/1978000203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1978012152", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3606234, + -23.0002994 + ] + }, + "id": "node/1978012152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1978027991", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2617179, + -22.9195468 + ] + }, + "id": "node/1978027991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1981139573", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "25", + "covered": "no", + "operator": "Parque Lage" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2130219, + -22.9610703 + ] + }, + "id": "node/1981139573" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1981146785", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "operator": "Cobal do Humaitá" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.196622, + -22.9556809 + ] + }, + "id": "node/1981146785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1981544388" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.601319, + -27.1386563 + ] + }, + "id": "node/1981544388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1981544393" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6012917, + -27.1388327 + ] + }, + "id": "node/1981544393" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1990989755", + "amenity": "restaurant;bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "cuisine": "regional", + "name": "Adega do Cesare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1886117, + -22.9859005 + ] + }, + "id": "node/1990989755" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001257498", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1245112, + -22.897236 + ] + }, + "id": "node/2001257498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001259816", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1253966, + -22.8856356 + ] + }, + "id": "node/2001259816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001261120", + "amenity": "bicycle_parking", + "bicycle_parking": "pórtico", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1305251, + -22.8993553 + ] + }, + "id": "node/2001261120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001315286", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "25", + "covered": "no", + "fee": "no", + "operator": "Universidade Veiga de Almeida" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2215243, + -22.9122745 + ] + }, + "id": "node/2001315286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001383283", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "25", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2089748, + -22.8032858 + ] + }, + "id": "node/2001383283" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001392488", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2102358, + -22.8059513 + ] + }, + "id": "node/2001392488" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001403748", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2101362, + -22.8059287 + ] + }, + "id": "node/2001403748" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2001409704", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.209084, + -22.8056667 + ] + }, + "id": "node/2001409704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2007238091", + "amenity": "bicycle_parking", + "capacity": "30", + "covered": "no", + "fee": "no", + "operator": "Governo do Estado" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1836835, + -22.938026 + ] + }, + "id": "node/2007238091" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2011047664", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Mundial" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3280765, + -22.8330503 + ] + }, + "id": "node/2011047664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2011047678", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Guanabara" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3288438, + -22.8322738 + ] + }, + "id": "node/2011047678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2014138682", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "check_date": "2025-06-29", + "covered": "no", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1861474, + -22.9519984 + ] + }, + "id": "node/2014138682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2014576877", + "amenity": "bicycle_parking", + "capacity": "10", + "fee": "no", + "shelter": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2226773, + -22.9645391 + ] + }, + "id": "node/2014576877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2021881722", + "amenity": "bicycle_parking", + "capacity": "37", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3199204, + -22.8220767 + ] + }, + "id": "node/2021881722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2021881728", + "amenity": "bicycle_parking", + "capacity": "24", + "check_date": "2024-04-06", + "covered": "no", + "fee": "no", + "operator": "Shopping Nova América", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2740824, + -22.8773699 + ] + }, + "id": "node/2021881728" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2021881820", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "40", + "covered": "yes", + "fee": "no", + "operator": "Shopping Via Brasil", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3197164, + -22.8237412 + ] + }, + "id": "node/2021881820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2025035829", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5000944, + -20.6674993 + ] + }, + "id": "node/2025035829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2026296368", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator": "Lagoon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2170823, + -22.9760702 + ] + }, + "id": "node/2026296368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2026305823", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2312657, + -22.9142417 + ] + }, + "id": "node/2026305823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2026305824", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2313444, + -22.9133197 + ] + }, + "id": "node/2026305824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2029104436", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "check_date:capacity": "2022-10-20", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2646346, + -22.9223366 + ] + }, + "id": "node/2029104436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2029104437", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "check_date:capacity": "2022-10-24", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2644469, + -22.9227204 + ] + }, + "id": "node/2029104437" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2038032579", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1832348, + -22.9477202 + ] + }, + "id": "node/2038032579" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2038041242", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "check_date": "2025-06-20", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1649133, + -22.9544242 + ] + }, + "id": "node/2038041242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2038047181", + "amenity": "bicycle_parking", + "capacity": "6", + "check_date": "2024-12-31", + "covered": "yes", + "fee": "no", + "operator": "Supermercado Mundial", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1826, + -22.9505866 + ] + }, + "id": "node/2038047181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2038054325", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "check_date": "2025-07-09", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1823318, + -22.9506508 + ] + }, + "id": "node/2038054325" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2038070842", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no", + "operator": "Supermercado Prezunic", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1889433, + -22.9568222 + ] + }, + "id": "node/2038070842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2038070857", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1890803, + -22.9571853 + ] + }, + "id": "node/2038070857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2038139851", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.184445, + -22.9525973 + ] + }, + "id": "node/2038139851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2044450113", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9526819, + -12.2638689 + ] + }, + "id": "node/2044450113" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2051573021", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Centro Comercial Copacabana" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1844744, + -22.9695412 + ] + }, + "id": "node/2051573021" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2052767174", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Clube de Regatas Botafogo", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1805937, + -22.9486673 + ] + }, + "id": "node/2052767174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2052820350", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "name": "Loteria" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9526812, + -12.2635979 + ] + }, + "id": "node/2052820350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2063479779", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9549743, + -12.2557579 + ] + }, + "id": "node/2063479779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2065753180", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "check_date": "2025-06-20", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1651702, + -22.9558887 + ] + }, + "id": "node/2065753180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2065758489", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2053503, + -22.9120973 + ] + }, + "id": "node/2065758489" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2065799881", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "28", + "covered": "yes", + "fee": "no", + "opening_hours": "Mo-Fr 07:00-22:00", + "operator": "Centro Empresarial Mourisco", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.180953, + -22.950378 + ] + }, + "id": "node/2065799881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2066433295", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2071123, + -22.9830936 + ] + }, + "id": "node/2066433295" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2066433296", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2070614, + -22.9831204 + ] + }, + "id": "node/2066433296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2067020231", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.523399, + -27.6027437 + ] + }, + "id": "node/2067020231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071691768", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.225888, + -22.9830193 + ] + }, + "id": "node/2071691768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071693629", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.227052, + -22.9838539 + ] + }, + "id": "node/2071693629" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071693835", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2269742, + -22.9837798 + ] + }, + "id": "node/2071693835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071711405", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2283847, + -22.9854786 + ] + }, + "id": "node/2071711405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071712765", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.228527, + -22.9859059 + ] + }, + "id": "node/2071712765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071718109", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2283876, + -22.9859971 + ] + }, + "id": "node/2071718109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071720146", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2281192, + -22.9858872 + ] + }, + "id": "node/2071720146" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071722995", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2277948, + -22.9857872 + ] + }, + "id": "node/2071722995" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071723916", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2275992, + -22.9857107 + ] + }, + "id": "node/2071723916" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071725967", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2278082, + -22.985928 + ] + }, + "id": "node/2071725967" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071727055", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.227626, + -22.9858564 + ] + }, + "id": "node/2071727055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071728227", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2274087, + -22.9857526 + ] + }, + "id": "node/2071728227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071731608", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2271271, + -22.9854958 + ] + }, + "id": "node/2071731608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071731849", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2270922, + -22.9854835 + ] + }, + "id": "node/2071731849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071736584", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.226765, + -22.9853577 + ] + }, + "id": "node/2071736584" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071738454", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.226368, + -22.985239 + ] + }, + "id": "node/2071738454" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071738731", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.226419, + -22.9852515 + ] + }, + "id": "node/2071738731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071739893", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.226309, + -22.9853526 + ] + }, + "id": "node/2071739893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071741634", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2258584, + -22.9851995 + ] + }, + "id": "node/2071741634" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071744634", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2256224, + -22.9849872 + ] + }, + "id": "node/2071744634" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071747622", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2252469, + -22.9844118 + ] + }, + "id": "node/2071747622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071748226", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2252365, + -22.9844463 + ] + }, + "id": "node/2071748226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071753741", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2229241, + -22.9842317 + ] + }, + "id": "node/2071753741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071754003", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2228624, + -22.9843822 + ] + }, + "id": "node/2071754003" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071754240", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2224574, + -22.9841452 + ] + }, + "id": "node/2071754240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071754245", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2223984, + -22.9841131 + ] + }, + "id": "node/2071754245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071754525", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2223823, + -22.984402 + ] + }, + "id": "node/2071754525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071756545", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2235483, + -22.9817352 + ] + }, + "id": "node/2071756545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071809797", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2238469, + -22.9812436 + ] + }, + "id": "node/2071809797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071814099", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2222318, + -22.9806808 + ] + }, + "id": "node/2071814099" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071814551", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2224356, + -22.9806659 + ] + }, + "id": "node/2071814551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071884011", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2219236, + -22.9840539 + ] + }, + "id": "node/2071884011" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071884582", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2215481, + -22.9838144 + ] + }, + "id": "node/2071884582" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071884741", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2210519, + -22.9839032 + ] + }, + "id": "node/2071884741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071889053", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2208856, + -22.9840514 + ] + }, + "id": "node/2071889053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071889124", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2209285, + -22.9840414 + ] + }, + "id": "node/2071889124" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071889876", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2204967, + -22.9838316 + ] + }, + "id": "node/2071889876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071890201", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2200622, + -22.9839328 + ] + }, + "id": "node/2071890201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071890750", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2198503, + -22.9836638 + ] + }, + "id": "node/2071890750" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071890780", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2197886, + -22.983918 + ] + }, + "id": "node/2071890780" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071890909", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2191878, + -22.983686 + ] + }, + "id": "node/2071890909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071892115", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2191609, + -22.9838761 + ] + }, + "id": "node/2071892115" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071892382", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2192146, + -22.9838687 + ] + }, + "id": "node/2071892382" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071893929", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2184689, + -22.9838291 + ] + }, + "id": "node/2071893929" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071894528", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2184528, + -22.9836539 + ] + }, + "id": "node/2071894528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071894532", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2184046, + -22.983649 + ] + }, + "id": "node/2071894532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071894713", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.217624, + -22.9839402 + ] + }, + "id": "node/2071894713" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071896125", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2177689, + -22.9830463 + ] + }, + "id": "node/2071896125" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2071897719", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2177796, + -22.9829994 + ] + }, + "id": "node/2071897719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2077538393", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2301123, + -22.9788931 + ] + }, + "id": "node/2077538393" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2077541071", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2319602, + -22.9791127 + ] + }, + "id": "node/2077541071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2077541073", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "28", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2319978, + -22.9793203 + ] + }, + "id": "node/2077541073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2079049877", + "amenity": "bicycle_parking", + "capacity": "14", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2706784, + -23.0005573 + ] + }, + "id": "node/2079049877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2079049896", + "amenity": "bicycle_parking", + "capacity": "14", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2709315, + -23.0006235 + ] + }, + "id": "node/2079049896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2086666447", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8548059, + -21.8744972 + ] + }, + "id": "node/2086666447" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2087905059", + "amenity": "bicycle_parking", + "capacity": "15", + "covered": "yes", + "fee": "no", + "operator": "Carioca Shopping", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3122036, + -22.8497156 + ] + }, + "id": "node/2087905059" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2093302491", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "yes", + "fee": "no", + "operator": "São Conrado Fashion Mall" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2599413, + -22.9967254 + ] + }, + "id": "node/2093302491" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2093398352", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1820087, + -22.9497835 + ] + }, + "id": "node/2093398352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2096687728", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4292009, + -21.2092885 + ] + }, + "id": "node/2096687728" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2096965820", + "amenity": "bicycle_parking", + "capacity": "5", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3413938, + -22.8681281 + ] + }, + "id": "node/2096965820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2100504927", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2061726, + -22.9821184 + ] + }, + "id": "node/2100504927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2101240407", + "amenity": "bicycle_parking", + "capacity": "5", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3277136, + -22.8338718 + ] + }, + "id": "node/2101240407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2101244250", + "amenity": "bicycle_parking", + "capacity": "10", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3255937, + -22.836157 + ] + }, + "id": "node/2101244250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2101249330", + "amenity": "bicycle_parking", + "capacity": "13", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3238147, + -22.8392848 + ] + }, + "id": "node/2101249330" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2102169438", + "amenity": "bicycle_parking", + "capacity": "5", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2052361, + -22.9604817 + ] + }, + "id": "node/2102169438" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2107821950", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.234279, + -22.9193366 + ] + }, + "id": "node/2107821950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2107831855", + "amenity": "bicycle_parking", + "capacity": "12", + "covered": "no", + "operator": "Prefeitura do Rio de Janeiro" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2045576, + -22.9112943 + ] + }, + "id": "node/2107831855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2107842845", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2498905, + -22.9200057 + ] + }, + "id": "node/2107842845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2107843171", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2498266, + -22.9184441 + ] + }, + "id": "node/2107843171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2107857232", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2438181, + -22.9158081 + ] + }, + "id": "node/2107857232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2107865980", + "amenity": "bicycle_parking", + "capacity": "26", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2492366, + -22.9226932 + ] + }, + "id": "node/2107865980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2110861069", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2338931, + -22.9201759 + ] + }, + "id": "node/2110861069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2110884739", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2241928, + -22.9804906 + ] + }, + "id": "node/2110884739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2110915175", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2238673, + -22.9808305 + ] + }, + "id": "node/2110915175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2110927219", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2261089, + -22.9830382 + ] + }, + "id": "node/2110927219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2110930268", + "amenity": "bicycle_parking", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2263066, + -22.983013 + ] + }, + "id": "node/2110930268" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2111549855", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9573482, + -12.2846045 + ] + }, + "id": "node/2111549855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2114217121", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1160511, + -15.8154964 + ] + }, + "id": "node/2114217121" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2118345610", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4994137, + -23.4824263 + ] + }, + "id": "node/2118345610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2122108148" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.442586, + -21.1802558 + ] + }, + "id": "node/2122108148" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2122108149" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.442605, + -21.1802593 + ] + }, + "id": "node/2122108149" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2122108151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4425791, + -21.1802881 + ] + }, + "id": "node/2122108151" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2122108152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4425982, + -21.1802916 + ] + }, + "id": "node/2122108152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2124196790", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1217804, + -15.80523 + ] + }, + "id": "node/2124196790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300707" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452445, + -23.4831909 + ] + }, + "id": "node/2126300707" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446099, + -23.4819933 + ] + }, + "id": "node/2126300711" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300716" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6441712, + -23.4832432 + ] + }, + "id": "node/2126300716" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300717" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444907, + -23.4825612 + ] + }, + "id": "node/2126300717" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300719" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449356, + -23.4819456 + ] + }, + "id": "node/2126300719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300725" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6441666, + -23.4832404 + ] + }, + "id": "node/2126300725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300727" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6442937, + -23.4825406 + ] + }, + "id": "node/2126300727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300731" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447572, + -23.4837379 + ] + }, + "id": "node/2126300731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300756" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444874, + -23.4825651 + ] + }, + "id": "node/2126300756" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6442964, + -23.482536 + ] + }, + "id": "node/2126300765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300784" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444322, + -23.4835449 + ] + }, + "id": "node/2126300784" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2126300788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644653, + -23.4837111 + ] + }, + "id": "node/2126300788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2131012488", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Copacabana Center", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2532062, + -30.1036994 + ] + }, + "id": "node/2131012488" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2131503662" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2274003, + -30.0498549 + ] + }, + "id": "node/2131503662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2139469143", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2035377, + -5.8130902 + ] + }, + "id": "node/2139469143" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2146431257", + "amenity": "bicycle_parking", + "capacity": "16", + "covered": "yes", + "fee": "no", + "source": "survey", + "type": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3242011, + -22.8475598 + ] + }, + "id": "node/2146431257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2158063537", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3113994, + -22.8245309 + ] + }, + "id": "node/2158063537" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2161232020", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Intercontinental", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3190011, + -22.8270505 + ] + }, + "id": "node/2161232020" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2167689210", + "amenity": "bicycle_parking", + "capacity": "700", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2469499, + -22.6780705 + ] + }, + "id": "node/2167689210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2182252359", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator": "Helisul", + "source": "survey", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2165507, + -22.9707321 + ] + }, + "id": "node/2182252359" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2182332893", + "amenity": "bicycle_parking", + "capacity": "11", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2163694, + -22.973672 + ] + }, + "id": "node/2182332893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2182369768", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2152446, + -22.9795118 + ] + }, + "id": "node/2182369768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2182536296", + "amenity": "bicycle_parking", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2117165, + -22.9803297 + ] + }, + "id": "node/2182536296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2182536358", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.195466, + -22.9846385 + ] + }, + "id": "node/2182536358" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2184992867", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1821278, + -22.8971689 + ] + }, + "id": "node/2184992867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2189982214", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2215381, + -22.9218978 + ] + }, + "id": "node/2189982214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2190493770", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2409861, + -22.9149607 + ] + }, + "id": "node/2190493770" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2190717257", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2495592, + -22.9732887 + ] + }, + "id": "node/2190717257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2191439506", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2263015, + -22.9731106 + ] + }, + "id": "node/2191439506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2191457174", + "amenity": "bicycle_parking", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.221355, + -22.9217742 + ] + }, + "id": "node/2191457174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2191484651", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1772246, + -22.934185 + ] + }, + "id": "node/2191484651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2191532409", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1730293, + -22.9041085 + ] + }, + "id": "node/2191532409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239147442", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3610902, + -22.9181996 + ] + }, + "id": "node/2239147442" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239170919", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3895162, + -22.9997502 + ] + }, + "id": "node/2239170919" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239171334", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "15", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1697683, + -22.9366771 + ] + }, + "id": "node/2239171334" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239201884", + "amenity": "bicycle_parking", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1952976, + -22.9515614 + ] + }, + "id": "node/2239201884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239207503", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Centro de Convenções SulAmérica", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2080428, + -22.9123617 + ] + }, + "id": "node/2239207503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239224377", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "yes", + "name": "Bicicletário CCAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1936398, + -22.9527499 + ] + }, + "id": "node/2239224377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239226508", + "amenity": "bicycle_parking", + "capacity": "100", + "covered": "no", + "fee": "yes", + "note": "Paid bicycle parking, intended for electrical bicycles (which are forbidden in the other three)", + "operator": "PUC-Rio", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2319256, + -22.9788213 + ] + }, + "id": "node/2239226508" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239241026", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1962139, + -22.9528362 + ] + }, + "id": "node/2239241026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239258733", + "amenity": "bicycle_parking", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1924165, + -22.9501468 + ] + }, + "id": "node/2239258733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2239389671", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1087276, + -22.9051397 + ] + }, + "id": "node/2239389671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2252951231", + "amenity": "bicycle_parking", + "covered": "no", + "name": "Museu Nacional de Brasília" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8787827, + -15.7977974 + ] + }, + "id": "node/2252951231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2263514663", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.34225, + -23.0101048 + ] + }, + "id": "node/2263514663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2271686545", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8666298, + -23.17958 + ] + }, + "id": "node/2271686545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2271686550", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8842676, + -23.1808299 + ] + }, + "id": "node/2271686550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2271691764", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8897827, + -23.1717216 + ] + }, + "id": "node/2271691764" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2271691769", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8916035, + -23.1710507 + ] + }, + "id": "node/2271691769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2278896228", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8804779, + -23.1993289 + ] + }, + "id": "node/2278896228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2279064241", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6629794, + -23.5882303 + ] + }, + "id": "node/2279064241" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2279064246", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6610487, + -23.5854611 + ] + }, + "id": "node/2279064246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2279064256", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6603238, + -23.5912024 + ] + }, + "id": "node/2279064256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2279064261", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6592038, + -23.5893246 + ] + }, + "id": "node/2279064261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2279064274", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "check_date": "2023-09-21", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6568001, + -23.5881946 + ] + }, + "id": "node/2279064274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2279064296", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6628512, + -23.5886419 + ] + }, + "id": "node/2279064296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283525309", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "12", + "covered": "no", + "fee": "no", + "old_operator": "Walmart" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2843973, + -22.8838949 + ] + }, + "id": "node/2283525309" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283536647", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "covered": "no", + "fee": "no", + "operator": "Prezunic", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.291065, + -22.9052708 + ] + }, + "id": "node/2283536647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283556406", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "11", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2415281, + -22.9320953 + ] + }, + "id": "node/2283556406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283556813", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3641159, + -22.9286592 + ] + }, + "id": "node/2283556813" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283559761", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2345541, + -22.9253168 + ] + }, + "id": "node/2283559761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283565413", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4069075, + -22.9188865 + ] + }, + "id": "node/2283565413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283567520", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4067414, + -22.9188469 + ] + }, + "id": "node/2283567520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283567643", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1762214, + -22.9523277 + ] + }, + "id": "node/2283567643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283571271", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3723602, + -22.9486128 + ] + }, + "id": "node/2283571271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283571771", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4508952, + -23.0194608 + ] + }, + "id": "node/2283571771" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283579684", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3597792, + -22.9988911 + ] + }, + "id": "node/2283579684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283587300", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "source": "survey", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.38662, + -22.9183161 + ] + }, + "id": "node/2283587300" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283587303", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "source": "survey", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3871569, + -22.9184014 + ] + }, + "id": "node/2283587303" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283590677", + "amenity": "bicycle_parking", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3610388, + -22.9470787 + ] + }, + "id": "node/2283590677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283597369", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3843928, + -23.0015478 + ] + }, + "id": "node/2283597369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283605421", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4392232, + -23.0068108 + ] + }, + "id": "node/2283605421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283606749", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1998411, + -22.9563876 + ] + }, + "id": "node/2283606749" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283621867", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4731403, + -23.031633 + ] + }, + "id": "node/2283621867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283621885", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4743318, + -23.0313115 + ] + }, + "id": "node/2283621885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283621920", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4753803, + -23.031134 + ] + }, + "id": "node/2283621920" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283621921", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4757219, + -23.0311237 + ] + }, + "id": "node/2283621921" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283622146", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4766684, + -23.0311171 + ] + }, + "id": "node/2283622146" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283622467", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4783124, + -23.0312893 + ] + }, + "id": "node/2283622467" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283622485", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4779749, + -23.0312626 + ] + }, + "id": "node/2283622485" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283622486", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "check_date": "2025-03-17", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4794254, + -23.0315192 + ] + }, + "id": "node/2283622486" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283622491", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "check_date": "2025-03-17", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4797579, + -23.031541 + ] + }, + "id": "node/2283622491" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631373", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4922519, + -23.034601 + ] + }, + "id": "node/2283631373" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631556", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4918774, + -23.0345538 + ] + }, + "id": "node/2283631556" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631571", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4898203, + -23.0342278 + ] + }, + "id": "node/2283631571" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631572", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4900992, + -23.0342522 + ] + }, + "id": "node/2283631572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631599", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4890907, + -23.0340943 + ] + }, + "id": "node/2283631599" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631612", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4888654, + -23.034035 + ] + }, + "id": "node/2283631612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631651", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4876102, + -23.0338129 + ] + }, + "id": "node/2283631651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2283631652", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4878123, + -23.0338567 + ] + }, + "id": "node/2283631652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2292886503", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0304339, + -22.9440466 + ] + }, + "id": "node/2292886503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2302017709", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "12", + "covered": "no", + "fee": "no", + "operator": "Leroy Merlin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2831937, + -22.8842703 + ] + }, + "id": "node/2302017709" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2302020933", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2220338, + -22.9264208 + ] + }, + "id": "node/2302020933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2302025718", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "pescocinho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2346829, + -22.9228144 + ] + }, + "id": "node/2302025718" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2311493108", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.012886, + -22.8401168 + ] + }, + "id": "node/2311493108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2321008400", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8797026, + -15.7891978 + ] + }, + "id": "node/2321008400" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2321390537", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2120566, + -22.959807 + ] + }, + "id": "node/2321390537" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2321390544", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2126586, + -22.961135 + ] + }, + "id": "node/2321390544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2321392573", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2047494, + -22.9630559 + ] + }, + "id": "node/2321392573" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2321418194", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2281278, + -22.9155166 + ] + }, + "id": "node/2321418194" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2322568812", + "amenity": "bicycle_parking", + "capacity": "4", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1966711, + -22.9558648 + ] + }, + "id": "node/2322568812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2323260235", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1834013, + -22.9509366 + ] + }, + "id": "node/2323260235" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2323264120", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1796414, + -22.89946 + ] + }, + "id": "node/2323264120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2323265963", + "amenity": "bicycle_parking", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3495134, + -23.0053303 + ] + }, + "id": "node/2323265963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2323271192", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3352968, + -22.9990377 + ] + }, + "id": "node/2323271192" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2328693821", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2012553, + -5.7844391 + ] + }, + "id": "node/2328693821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356434352", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Academia Zanco", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3082237, + -22.8302688 + ] + }, + "id": "node/2356434352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356454250", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Espaço de Desenvolvimento Infantil Deputado Pedro Fernandes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3202938, + -22.8237201 + ] + }, + "id": "node/2356454250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356464308", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3236546, + -22.8451351 + ] + }, + "id": "node/2356464308" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356479910", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2292058, + -22.9169248 + ] + }, + "id": "node/2356479910" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356497524", + "amenity": "bicycle_parking", + "capacity": "7", + "covered": "no", + "fee": "no", + "operator": "Academia Physical", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2315228, + -22.9158996 + ] + }, + "id": "node/2356497524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356504604", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "7", + "check_date": "2024-01-17", + "covered": "no", + "fee": "no", + "operator": "Hortifruti", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2444487, + -22.9271546 + ] + }, + "id": "node/2356504604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356580860", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "128", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5332584, + -22.8607066 + ] + }, + "id": "node/2356580860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356700052", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "153", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6821379, + -22.9150012 + ] + }, + "id": "node/2356700052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356703046", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6806109, + -22.9208603 + ] + }, + "id": "node/2356703046" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356703851", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6851594, + -22.9155855 + ] + }, + "id": "node/2356703851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356705667", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "36", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6856207, + -22.9152201 + ] + }, + "id": "node/2356705667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356706171", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6855744, + -22.914957 + ] + }, + "id": "node/2356706171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356742523", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "18", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1805345, + -22.9409357 + ] + }, + "id": "node/2356742523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356754855", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "18", + "covered": "yes", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3437362, + -22.8319972 + ] + }, + "id": "node/2356754855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356769835", + "access": "no", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "old_operator": "Walmart", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.227508, + -22.9203978 + ] + }, + "id": "node/2356769835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356772324", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Academia DNA", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2607487, + -22.9238864 + ] + }, + "id": "node/2356772324" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356776708", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2505105, + -22.9200377 + ] + }, + "id": "node/2356776708" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356776709", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2503849, + -22.9184636 + ] + }, + "id": "node/2356776709" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356777662", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1856033, + -22.9334608 + ] + }, + "id": "node/2356777662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356781387", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1782972, + -22.9308696 + ] + }, + "id": "node/2356781387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356786418", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "13", + "covered": "yes", + "fee": "no", + "operator": "Leroy Merlin", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1091634, + -22.8744202 + ] + }, + "id": "node/2356786418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356791542", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "24", + "covered": "yes", + "fee": "no", + "operator": "ACM", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1779702, + -22.9151214 + ] + }, + "id": "node/2356791542" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2356796426", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "15", + "covered": "no", + "fee": "no", + "operator": "Petrobras", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2873408, + -22.7166334 + ] + }, + "id": "node/2356796426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371414032", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "check_date": "2025-06-29", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1861642, + -22.9519914 + ] + }, + "id": "node/2371414032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371414040", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1847597, + -22.9514422 + ] + }, + "id": "node/2371414040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371414045", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1843938, + -22.9524925 + ] + }, + "id": "node/2371414045" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371414047", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "check_date": "2025-06-29", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1868479, + -22.9522013 + ] + }, + "id": "node/2371414047" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371414049", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1836099, + -22.9530157 + ] + }, + "id": "node/2371414049" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371414050", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1843113, + -22.9508503 + ] + }, + "id": "node/2371414050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371418207", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1842362, + -22.9332685 + ] + }, + "id": "node/2371418207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371418311", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1811785, + -22.9320779 + ] + }, + "id": "node/2371418311" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371418862", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1902782, + -22.965323 + ] + }, + "id": "node/2371418862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371420498", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3019367, + -22.8451623 + ] + }, + "id": "node/2371420498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2371427302", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2967438, + -23.0104208 + ] + }, + "id": "node/2371427302" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2374461158", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "yes", + "fee": "no", + "lit": "yes", + "operator": "PUCRS", + "supervised": "yes", + "website": "https://www.pucrs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1765468, + -30.0593523 + ] + }, + "id": "node/2374461158" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2377252830", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "description": "Bicicletário da Embarq Brasil", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2274138, + -30.0281996 + ] + }, + "id": "node/2377252830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2384410017", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1803523, + -22.9318164 + ] + }, + "id": "node/2384410017" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2384433187", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "90", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2349746, + -22.9952001 + ] + }, + "id": "node/2384433187" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2384486018", + "amenity": "bicycle_parking", + "capacity": "16", + "fee": "no", + "source": "survey", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1765872, + -22.9145356 + ] + }, + "id": "node/2384486018" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2384490968", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "check_date": "2025-06-18", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1740487, + -22.909404 + ] + }, + "id": "node/2384490968" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2410309795", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "25", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2324834, + -25.4506844 + ] + }, + "id": "node/2410309795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2410309802", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2303397, + -25.4516809 + ] + }, + "id": "node/2410309802" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2412004471", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5231614, + -27.5832204 + ] + }, + "id": "node/2412004471" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2412164730", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2715794, + -25.4297672 + ] + }, + "id": "node/2412164730" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2412234544", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2619811, + -25.4267994 + ] + }, + "id": "node/2412234544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2414009621", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2168961, + -22.9726034 + ] + }, + "id": "node/2414009621" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2414019380", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.233343, + -22.9252373 + ] + }, + "id": "node/2414019380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2414055784", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3836537, + -22.9584638 + ] + }, + "id": "node/2414055784" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2418339514", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "639", + "addr:postcode": "05415-011", + "addr:street": "Rua Joaquim Antunes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6824438, + -23.5632467 + ] + }, + "id": "node/2418339514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2420896416", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-18:00", + "operator": "Justiça do Trabalho", + "supervised": "yes", + "website": "https://www.trt4.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2279794, + -30.0509537 + ] + }, + "id": "node/2420896416" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2429157664", + "amenity": "bicycle_parking", + "capacity": "7", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1180133, + -22.8934411 + ] + }, + "id": "node/2429157664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2429158016", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "36", + "fee": "no", + "type": "wall_hoops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.118175, + -22.8927607 + ] + }, + "id": "node/2429158016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430547613", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1698256, + -22.8249749 + ] + }, + "id": "node/2430547613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430547614", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1693964, + -22.8248958 + ] + }, + "id": "node/2430547614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430547615", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1695761, + -22.8255064 + ] + }, + "id": "node/2430547615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430547616", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1691658, + -22.8250787 + ] + }, + "id": "node/2430547616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430575099", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2022392, + -22.8192592 + ] + }, + "id": "node/2430575099" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430575100", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.201338, + -22.8190268 + ] + }, + "id": "node/2430575100" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430575101", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2009625, + -22.8187945 + ] + }, + "id": "node/2430575101" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430575102", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2008311, + -22.8189823 + ] + }, + "id": "node/2430575102" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430575103", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2002732, + -22.8188365 + ] + }, + "id": "node/2430575103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430588645", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "18", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2367141, + -22.8947476 + ] + }, + "id": "node/2430588645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430588646", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2365961, + -22.8945054 + ] + }, + "id": "node/2430588646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430588647", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2365478, + -22.8944165 + ] + }, + "id": "node/2430588647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430600143", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "36", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0723347, + -22.8324791 + ] + }, + "id": "node/2430600143" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430602822", + "amenity": "bicycle_parking", + "capacity": "18", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0549941, + -22.8285398 + ] + }, + "id": "node/2430602822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2430603170", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1731353, + -22.9176409 + ] + }, + "id": "node/2430603170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2435833594", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1973254, + -22.9764485 + ] + }, + "id": "node/2435833594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2442319134", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9860003, + -22.8087407 + ] + }, + "id": "node/2442319134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2442325479", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1848845, + -22.9114166 + ] + }, + "id": "node/2442325479" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2449040589", + "amenity": "bicycle_parking", + "capacity": "16", + "covered": "yes", + "fee": "no", + "operator": "MetrôRio", + "source": "survey", + "type": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3348063, + -22.8426832 + ] + }, + "id": "node/2449040589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2450053496", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "yes", + "fee": "no", + "layer": "-1", + "note:pt": "No mezanino da estação de metrô (área paga)", + "source": "survey", + "type": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1871172, + -22.9670764 + ] + }, + "id": "node/2450053496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2450830865", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-19:30; Sa 07:30-18:30", + "operator": "Mercado Público", + "supervised": "no", + "website": "https://mercadopublico.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2275868, + -30.0270435 + ] + }, + "id": "node/2450830865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2450830866", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-19:30; Sa 07:30-18:30", + "operator": "Mercado Público", + "supervised": "no", + "website": "https://mercadopublico.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2283164, + -30.027249 + ] + }, + "id": "node/2450830866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2450830871", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-19:30; Sa 07:30-18:30", + "operator": "Mercado Público", + "supervised": "no", + "website": "https://mercadopublico.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273374, + -30.0276984 + ] + }, + "id": "node/2450830871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2450830872", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-19:30; Sa 07:30-18:30", + "operator": "Mercado Público", + "supervised": "no", + "website": "https://mercadopublico.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2280804, + -30.0279016 + ] + }, + "id": "node/2450830872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2459507053", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9499064, + -12.2538042 + ] + }, + "id": "node/2459507053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2461863953", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1139139, + -22.9037343 + ] + }, + "id": "node/2461863953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2468387967", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "yes", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2036556, + -22.9101242 + ] + }, + "id": "node/2468387967" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2468389382", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2885195, + -22.9045783 + ] + }, + "id": "node/2468389382" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2468391203", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2929124, + -22.9052023 + ] + }, + "id": "node/2468391203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2468392030", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2864505, + -22.904471 + ] + }, + "id": "node/2468392030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2468394552", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "26", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2832901, + -22.9034673 + ] + }, + "id": "node/2468394552" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2468395237", + "access": "customers", + "amenity": "bicycle_parking", + "capacity": "9", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1928509, + -22.9532901 + ] + }, + "id": "node/2468395237" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2468396931", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0929976, + -22.9205515 + ] + }, + "id": "node/2468396931" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2472937516", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.224086, + -22.9848736 + ] + }, + "id": "node/2472937516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2472937517", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2240022, + -22.9851546 + ] + }, + "id": "node/2472937517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2472940898", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1884594, + -22.9674312 + ] + }, + "id": "node/2472940898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2486753947", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no", + "type": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1226902, + -22.8895245 + ] + }, + "id": "node/2486753947" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2486756993", + "amenity": "bicycle_parking", + "bicycle_parking": "pórtico", + "capacity": "12", + "fee": "no", + "source": "survey", + "type": "stand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1220479, + -22.891422 + ] + }, + "id": "node/2486756993" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2486757099", + "amenity": "bicycle_parking", + "bicycle_parking": "pórtico", + "capacity": "12", + "fee": "no", + "source": "survey", + "type": "stand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1216293, + -22.8914058 + ] + }, + "id": "node/2486757099" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2490497424", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Academia Workout", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1973597, + -22.954865 + ] + }, + "id": "node/2490497424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2490497425", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no", + "operator": "Farma Hall", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1979874, + -22.9558455 + ] + }, + "id": "node/2490497425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2490507737", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1884573, + -22.9672178 + ] + }, + "id": "node/2490507737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2490509837", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1866066, + -22.9668943 + ] + }, + "id": "node/2490509837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2490516576", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "operator": "Bar Lagoa", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2033443, + -22.9799162 + ] + }, + "id": "node/2490516576" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2490519307", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1742254, + -22.9424793 + ] + }, + "id": "node/2490519307" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2493693718" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4704224, + -27.602753 + ] + }, + "id": "node/2493693718" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2493693719" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.470513, + -27.6027836 + ] + }, + "id": "node/2493693719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2493693720" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4703689, + -27.6028003 + ] + }, + "id": "node/2493693720" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2493693721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4704008, + -27.602813 + ] + }, + "id": "node/2493693721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2493693722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4702961, + -27.6029304 + ] + }, + "id": "node/2493693722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2493693723" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4704142, + -27.6029854 + ] + }, + "id": "node/2493693723" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2508372409", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8933589, + -15.7957581 + ] + }, + "id": "node/2508372409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2509615827", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1862088, + -22.9336028 + ] + }, + "id": "node/2509615827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2511592672", + "amenity": "bicycle_parking", + "capacity": "200", + "name": "Ressacada", + "operator": "Avaí Futebol Clube", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5326687, + -27.6666549 + ] + }, + "id": "node/2511592672" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2513054757", + "addr:city": "São Paulo", + "addr:housenumber": "169", + "addr:postcode": "05422-010", + "addr:street": "Rua dos Pinheiros", + "amenity": "bicycle_parking", + "name": "Bicicletário Kebab Paris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6799008, + -23.5645066 + ] + }, + "id": "node/2513054757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2524451225", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Bradesco Seguros", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2134334, + -22.9209651 + ] + }, + "id": "node/2524451225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2524455557", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.207945, + -22.915552 + ] + }, + "id": "node/2524455557" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2524474367", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1898359, + -22.9359921 + ] + }, + "id": "node/2524474367" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2535584178", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1778348, + -22.9304553 + ] + }, + "id": "node/2535584178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2535605927", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1914895, + -22.9385055 + ] + }, + "id": "node/2535605927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2537959703", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6427638, + -23.5877999 + ] + }, + "id": "node/2537959703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2542371071", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "9", + "operator": "Iracema Pães e Doces" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6533605, + -23.5340028 + ] + }, + "id": "node/2542371071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2547756422", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6655763, + -27.6278839 + ] + }, + "id": "node/2547756422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2550391230", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2796626, + -16.7439433 + ] + }, + "id": "node/2550391230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2551600040", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "check_date": "2025-07-19", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1760883, + -22.9099594 + ] + }, + "id": "node/2551600040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2551760751", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3406077, + -22.8701177 + ] + }, + "id": "node/2551760751" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2551782780", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3466569, + -22.851594 + ] + }, + "id": "node/2551782780" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2578705592", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.0078052, + -12.577415 + ] + }, + "id": "node/2578705592" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2585568886" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7264143, + -23.8281763 + ] + }, + "id": "node/2585568886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2585568900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7258227, + -23.8283285 + ] + }, + "id": "node/2585568900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2587394029", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1801384, + -22.9339966 + ] + }, + "id": "node/2587394029" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2587396522", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3253715, + -22.8492864 + ] + }, + "id": "node/2587396522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2587398673", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1770137, + -22.9291542 + ] + }, + "id": "node/2587398673" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2587402530", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "17", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2304014, + -22.9665723 + ] + }, + "id": "node/2587402530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2587403818", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2228145, + -22.908179 + ] + }, + "id": "node/2587403818" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2591714375", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "informal", + "covered": "no", + "description": "Improvisado, as bicicletas ficam presas em um corrimão perto da entrada do complexo. Existem guardas na proximidade, mas a segurança não é garantida." + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9006864, + -15.7806084 + ] + }, + "id": "node/2591714375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2612599878", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8474871, + -26.3456393 + ] + }, + "id": "node/2612599878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2621643538", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3651655, + -22.9945925 + ] + }, + "id": "node/2621643538" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2621643539", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3654337, + -22.9952097 + ] + }, + "id": "node/2621643539" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2621665038", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2027073, + -22.9642955 + ] + }, + "id": "node/2621665038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2621673347", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1918148, + -22.9638755 + ] + }, + "id": "node/2621673347" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2621685210", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1873624, + -22.9676119 + ] + }, + "id": "node/2621685210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2628525909", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5150738, + -12.9827581 + ] + }, + "id": "node/2628525909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2628797602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5818198, + -23.6328674 + ] + }, + "id": "node/2628797602" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2628797604" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.581925, + -23.6328688 + ] + }, + "id": "node/2628797604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2628797611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5818215, + -23.6329633 + ] + }, + "id": "node/2628797611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2628797614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5819298, + -23.6329698 + ] + }, + "id": "node/2628797614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2630641509", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8453797, + -26.3019795 + ] + }, + "id": "node/2630641509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2630641515", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8454009, + -26.3024673 + ] + }, + "id": "node/2630641515" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2631445632", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "fee": "no", + "fixme": "covered=?" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8447941, + -26.3015499 + ] + }, + "id": "node/2631445632" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2633096649", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8460466, + -26.3028829 + ] + }, + "id": "node/2633096649" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2633647822", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1031681, + -21.7622126 + ] + }, + "id": "node/2633647822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2634591408" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6545899, + -26.906185 + ] + }, + "id": "node/2634591408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2636970851", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1135085, + -26.505521 + ] + }, + "id": "node/2636970851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2638289715", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8453765, + -26.3008496 + ] + }, + "id": "node/2638289715" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2638327431", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8437522, + -26.3014378 + ] + }, + "id": "node/2638327431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2638327433", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8438736, + -26.3014455 + ] + }, + "id": "node/2638327433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2638327434", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8437584, + -26.3015349 + ] + }, + "id": "node/2638327434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2638327436", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8441584, + -26.3015672 + ] + }, + "id": "node/2638327436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2645898965", + "amenity": "bicycle_parking", + "fee": "yes", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.845275, + -26.3199364 + ] + }, + "id": "node/2645898965" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2649816665", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9511568, + -12.2781226 + ] + }, + "id": "node/2649816665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2660537719", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8461707, + -26.3167003 + ] + }, + "id": "node/2660537719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2661206363", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no", + "fee": "no", + "source": "survey", + "type": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.342081, + -22.8768148 + ] + }, + "id": "node/2661206363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2669115423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1912289, + -21.8076532 + ] + }, + "id": "node/2669115423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2669115425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.191032, + -21.807797 + ] + }, + "id": "node/2669115425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2669576630", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "14", + "covered": "no", + "description": "Paraciclo da Superintendência de Gestão da Informação", + "fee": "no", + "name": "Paraciclo SGI", + "note": "+ 1 paraciclo de roda para 7 bicicletas", + "operator": "Superintendência de Gestão da Informação", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5573895, + -20.4377508 + ] + }, + "id": "node/2669576630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2674191214", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8496572, + -26.3329584 + ] + }, + "id": "node/2674191214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2686628537", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2077195, + -22.9732308 + ] + }, + "id": "node/2686628537" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2686642186", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1776578, + -22.9002843 + ] + }, + "id": "node/2686642186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2700453550", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.774737, + -26.2877748 + ] + }, + "id": "node/2700453550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167688" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9050874, + -22.0223521 + ] + }, + "id": "node/2702167688" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167689" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9050827, + -22.022383 + ] + }, + "id": "node/2702167689" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167690" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9052388, + -22.0223721 + ] + }, + "id": "node/2702167690" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167693" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9050813, + -22.0223975 + ] + }, + "id": "node/2702167693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167694" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9052327, + -22.0224175 + ] + }, + "id": "node/2702167694" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167695" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9052341, + -22.0224029 + ] + }, + "id": "node/2702167695" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167698" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9050766, + -22.0224284 + ] + }, + "id": "node/2702167698" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702167699" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.905228, + -22.0224483 + ] + }, + "id": "node/2702167699" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702821018", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4680824, + -23.0288769 + ] + }, + "id": "node/2702821018" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702822939", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4733476, + -23.0304172 + ] + }, + "id": "node/2702822939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702825044", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2071367, + -22.9136081 + ] + }, + "id": "node/2702825044" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2702827768", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2164424, + -22.9629854 + ] + }, + "id": "node/2702827768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2706360384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8545755, + -26.2526159 + ] + }, + "id": "node/2706360384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2706360385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8544702, + -26.2526204 + ] + }, + "id": "node/2706360385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2706360395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8545742, + -26.2527066 + ] + }, + "id": "node/2706360395" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2706360396" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8544656, + -26.2527114 + ] + }, + "id": "node/2706360396" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2706360411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8547424, + -26.2535264 + ] + }, + "id": "node/2706360411" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2706360414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8546053, + -26.2535362 + ] + }, + "id": "node/2706360414" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2722645835", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9257363, + -26.2582168 + ] + }, + "id": "node/2722645835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2722645836", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9257341, + -26.2582388 + ] + }, + "id": "node/2722645836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2740490610", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0918932, + -22.921947 + ] + }, + "id": "node/2740490610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2741086821", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1747234, + -22.9125607 + ] + }, + "id": "node/2741086821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2741086822", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1743695, + -22.9126736 + ] + }, + "id": "node/2741086822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2752319393", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8930917, + -15.7949108 + ] + }, + "id": "node/2752319393" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2752319394", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8930165, + -15.7946155 + ] + }, + "id": "node/2752319394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027580", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.180536, + -22.9036684 + ] + }, + "id": "node/2753027580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027585", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1726379, + -22.9096799 + ] + }, + "id": "node/2753027585" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027598", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1716249, + -22.9090028 + ] + }, + "id": "node/2753027598" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027604", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1733229, + -22.9119174 + ] + }, + "id": "node/2753027604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027609", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1774331, + -22.9065642 + ] + }, + "id": "node/2753027609" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027616", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1809038, + -22.9075018 + ] + }, + "id": "node/2753027616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027622", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1818624, + -22.9025347 + ] + }, + "id": "node/2753027622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027627", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1817465, + -22.9017726 + ] + }, + "id": "node/2753027627" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027633", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "note:pt": "Conferir posição exata." + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.183019, + -22.9071971 + ] + }, + "id": "node/2753027633" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027649", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1764208, + -22.9062103 + ] + }, + "id": "node/2753027649" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027654", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1687919, + -22.906083 + ] + }, + "id": "node/2753027654" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027669", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1810888, + -22.9054441 + ] + }, + "id": "node/2753027669" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027675", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1760377, + -22.9122626 + ] + }, + "id": "node/2753027675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027689", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.174092, + -22.9098517 + ] + }, + "id": "node/2753027689" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027691", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1744618, + -22.9089251 + ] + }, + "id": "node/2753027691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027693", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1746697, + -22.9073997 + ] + }, + "id": "node/2753027693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027695", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.173417, + -22.9053709 + ] + }, + "id": "node/2753027695" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027697", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1751935, + -22.9063663 + ] + }, + "id": "node/2753027697" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027699", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1731932, + -22.911161 + ] + }, + "id": "node/2753027699" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2753027700", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1729168, + -22.9116109 + ] + }, + "id": "node/2753027700" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2763159909", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5157137, + -27.58952 + ] + }, + "id": "node/2763159909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2763159913", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5206664, + -27.6077861 + ] + }, + "id": "node/2763159913" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2765302747", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8228559, + -26.3197961 + ] + }, + "id": "node/2765302747" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2766485374", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9075271, + -26.2059598 + ] + }, + "id": "node/2766485374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2766485577", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9088757, + -26.2064874 + ] + }, + "id": "node/2766485577" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2766485629", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9074872, + -26.2066438 + ] + }, + "id": "node/2766485629" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2766485713", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9081051, + -26.206991 + ] + }, + "id": "node/2766485713" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2766485737", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9084587, + -26.2070653 + ] + }, + "id": "node/2766485737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2776374242", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8446786, + -26.3055817 + ] + }, + "id": "node/2776374242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2780886376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6181875, + -20.1510675 + ] + }, + "id": "node/2780886376" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2780886380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6181554, + -20.1511289 + ] + }, + "id": "node/2780886380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2780886415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6180895, + -20.1511375 + ] + }, + "id": "node/2780886415" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2780886416" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.618105, + -20.1511434 + ] + }, + "id": "node/2780886416" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2780886417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6181322, + -20.1510688 + ] + }, + "id": "node/2780886417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786018188", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1792435, + -22.8041916 + ] + }, + "id": "node/2786018188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786048805", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "check_date": "2025-05-18", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2219311, + -22.9692555 + ] + }, + "id": "node/2786048805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786082519", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2242485, + -22.9703797 + ] + }, + "id": "node/2786082519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786086521", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2244205, + -22.9707529 + ] + }, + "id": "node/2786086521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786134666", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5150505, + -12.9835705 + ] + }, + "id": "node/2786134666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786251335", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3782412, + -23.0002944 + ] + }, + "id": "node/2786251335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786419850", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3825385, + -23.00044 + ] + }, + "id": "node/2786419850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786419852", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3839045, + -23.0003777 + ] + }, + "id": "node/2786419852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786581638", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3891549, + -23.0004369 + ] + }, + "id": "node/2786581638" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786622402", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.39719, + -23.0002222 + ] + }, + "id": "node/2786622402" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786622413", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.397937, + -23.0001987 + ] + }, + "id": "node/2786622413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2786652670", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4075989, + -22.9998873 + ] + }, + "id": "node/2786652670" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2791915979", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4115797, + -22.999988 + ] + }, + "id": "node/2791915979" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2807797270", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.902118, + -26.14188 + ] + }, + "id": "node/2807797270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810041238", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4181822, + -23.0011171 + ] + }, + "id": "node/2810041238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810121349", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4246332, + -23.0031167 + ] + }, + "id": "node/2810121349" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810122923", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4313493, + -23.0052376 + ] + }, + "id": "node/2810122923" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810138624", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4481949, + -23.0096794 + ] + }, + "id": "node/2810138624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810144635", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4417471, + -23.0080101 + ] + }, + "id": "node/2810144635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810144636", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4440168, + -23.0085508 + ] + }, + "id": "node/2810144636" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810154073", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4521044, + -23.010696 + ] + }, + "id": "node/2810154073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810154074", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4531642, + -23.0109428 + ] + }, + "id": "node/2810154074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810162201", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4578647, + -23.0121388 + ] + }, + "id": "node/2810162201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810162202", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.459943, + -23.012659 + ] + }, + "id": "node/2810162202" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810167092", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4672819, + -23.0145733 + ] + }, + "id": "node/2810167092" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810171991", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4864442, + -23.019457 + ] + }, + "id": "node/2810171991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810171992", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4883063, + -23.0198422 + ] + }, + "id": "node/2810171992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810177944", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4708876, + -23.0154979 + ] + }, + "id": "node/2810177944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810183410", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4775779, + -23.0171935 + ] + }, + "id": "node/2810183410" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810183435", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.483234, + -23.0186299 + ] + }, + "id": "node/2810183435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810191121", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4971922, + -23.0210285 + ] + }, + "id": "node/2810191121" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810207092", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5006368, + -23.0205558 + ] + }, + "id": "node/2810207092" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2810442975", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8144166, + -26.3034977 + ] + }, + "id": "node/2810442975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2811433278", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5083627, + -23.0184227 + ] + }, + "id": "node/2811433278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2811435517", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5165734, + -23.0161448 + ] + }, + "id": "node/2811435517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2811460163", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5403651, + -23.0091435 + ] + }, + "id": "node/2811460163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2811476988", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5590252, + -23.0050957 + ] + }, + "id": "node/2811476988" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2812543152", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8239419, + -26.3002704 + ] + }, + "id": "node/2812543152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2812543156", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8239271, + -26.3002866 + ] + }, + "id": "node/2812543156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2812543158", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8239123, + -26.3003027 + ] + }, + "id": "node/2812543158" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2812543159", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8238974, + -26.3003189 + ] + }, + "id": "node/2812543159" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2812543161", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8238826, + -26.3003351 + ] + }, + "id": "node/2812543161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2812543166", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8238678, + -26.3003512 + ] + }, + "id": "node/2812543166" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2812543167", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8238529, + -26.3003674 + ] + }, + "id": "node/2812543167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2825702477", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8260104, + -26.3774563 + ] + }, + "id": "node/2825702477" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2828182833", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.822184, + -26.3824264 + ] + }, + "id": "node/2828182833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2830705740", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "7", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8125776, + -26.3614767 + ] + }, + "id": "node/2830705740" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2830705779", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8140207, + -26.3626431 + ] + }, + "id": "node/2830705779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2830705808", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8234456, + -26.3629374 + ] + }, + "id": "node/2830705808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2836227076", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "128", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.650405, + -22.951236 + ] + }, + "id": "node/2836227076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2836240984", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6837817, + -22.9166343 + ] + }, + "id": "node/2836240984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2836257239", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator": "PUC-Rio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2321636, + -22.9791253 + ] + }, + "id": "node/2836257239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2836313548", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "20", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.199121, + -22.9807908 + ] + }, + "id": "node/2836313548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2841555252", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7163346, + -29.7024122 + ] + }, + "id": "node/2841555252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2845859204", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7175581, + -29.7124688 + ] + }, + "id": "node/2845859204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2846228698" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.716868, + -29.7138188 + ] + }, + "id": "node/2846228698" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2846230103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7168807, + -29.7137528 + ] + }, + "id": "node/2846230103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2847500677", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1277632, + -26.3685334 + ] + }, + "id": "node/2847500677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2847500679", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1277954, + -26.3685371 + ] + }, + "id": "node/2847500679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2848295576", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "yes", + "name": "Bicicletário da LifeFit" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1861068, + -22.9150706 + ] + }, + "id": "node/2848295576" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2848295578", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1822003, + -22.9139975 + ] + }, + "id": "node/2848295578" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2848299332", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1863159, + -22.9438596 + ] + }, + "id": "node/2848299332" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2848308719", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "14", + "covered": "no", + "fee": "no", + "operator": "Conspiração" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1854152, + -22.9553332 + ] + }, + "id": "node/2848308719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2849276449", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1295346, + -26.3530118 + ] + }, + "id": "node/2849276449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2850805389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8554805, + -26.254349 + ] + }, + "id": "node/2850805389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2850805390" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8558995, + -26.2543603 + ] + }, + "id": "node/2850805390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2853002940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7169195, + -29.7137585 + ] + }, + "id": "node/2853002940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2858614156", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "yes", + "name": "Faculdade Ruy Barbosa", + "wheelchair": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4624884, + -13.0055116 + ] + }, + "id": "node/2858614156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2862871693", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "name": "Fonte do Boi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4858857, + -13.013322 + ] + }, + "id": "node/2862871693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2865421583", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no", + "name": "Turma da Bike" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.6717735, + -10.9162218 + ] + }, + "id": "node/2865421583" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2869109091", + "addr:city": "São Paulo", + "addr:housenumber": "484", + "addr:postcode": "05435-000", + "addr:street": "Rua Harmonia", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6887843, + -23.5539906 + ] + }, + "id": "node/2869109091" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878042276", + "access": "permissive", + "amenity": "bicycle_parking", + "covered": "no", + "name": "Estacionamento UFBA Ondina" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5107477, + -13.0061126 + ] + }, + "id": "node/2878042276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878045682", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "yes", + "name": "Estacionamento Shopping Barra" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5236174, + -13.006019 + ] + }, + "id": "node/2878045682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878049833", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "name": "Faculdade de Arquitetura - UFBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5081103, + -12.9974705 + ] + }, + "id": "node/2878049833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878071977", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4546533, + -12.9955394 + ] + }, + "id": "node/2878071977" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878102032", + "access": "private", + "bicycle_parking": "informal", + "capacity": "08", + "covered": "no", + "leisure": "fitness_centre", + "name": "Academia Tony Granjo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5235049, + -12.9936101 + ] + }, + "id": "node/2878102032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878102772", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "name": "Faculdade Ruy Barbosa - Campus Rio Vermelho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4855762, + -13.0107756 + ] + }, + "id": "node/2878102772" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878108328", + "access": "private", + "amenity": "bicycle_parking", + "capacity": "5 -7", + "covered": "no", + "name": "Bicicletário do Costa Verde Tênis Clube", + "surveillance": "indoor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3853872, + -12.9526159 + ] + }, + "id": "node/2878108328" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878179837", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "informal", + "covered": "yes", + "name": "Shopping Itaigara" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4639138, + -12.9964387 + ] + }, + "id": "node/2878179837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878187843", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "operator": "Faculdade Ruy Barbosa - Campus Rio Vermelho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4810461, + -13.0101741 + ] + }, + "id": "node/2878187843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878199869", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "name": "BICICLETARIO - SUPERMERCADO ATACADÃO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5044727, + -12.9309821 + ] + }, + "id": "node/2878199869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878210898", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "name": "Bicicletário da Praça de Stela Maris" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3407206, + -12.9397704 + ] + }, + "id": "node/2878210898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2878212186", + "access": "permissive", + "amenity": "bicycle_parking", + "name": "Bicicletário do Salvador Norte Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3507176, + -12.9091232 + ] + }, + "id": "node/2878212186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2884081038", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "yes", + "note": "Uso exclusivo a força de trabalho da empresa." + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4672454, + -12.9972331 + ] + }, + "id": "node/2884081038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2884113176", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "informal", + "name": "Espaço Glauber Rocha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5144501, + -12.9773147 + ] + }, + "id": "node/2884113176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2885592824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9051044, + -24.1224064 + ] + }, + "id": "node/2885592824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2885592825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9050698, + -24.1224425 + ] + }, + "id": "node/2885592825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2885592826" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9051094, + -24.122475 + ] + }, + "id": "node/2885592826" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2885592827" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9051479, + -24.1224344 + ] + }, + "id": "node/2885592827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2895225208", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5133511, + -27.5914061 + ] + }, + "id": "node/2895225208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2906236754", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2600671, + -22.9225645 + ] + }, + "id": "node/2906236754" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2906241752", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.206083, + -22.9138493 + ] + }, + "id": "node/2906241752" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2906283848", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1789697, + -22.9410843 + ] + }, + "id": "node/2906283848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2918198810", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0863065, + -26.4792123 + ] + }, + "id": "node/2918198810" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2919681363", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "name": "Bicicletário do Pão Prosa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.239922, + -25.4359133 + ] + }, + "id": "node/2919681363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2928024853", + "access": "public", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "note:pt": "Posição aproximada, verificar com GPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2912327, + -22.953646 + ] + }, + "id": "node/2928024853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2929609238", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1234921, + -22.8935902 + ] + }, + "id": "node/2929609238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2929609239", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1231835, + -22.8935538 + ] + }, + "id": "node/2929609239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2929609240", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1229041, + -22.8935587 + ] + }, + "id": "node/2929609240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2929609241", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1225371, + -22.8935721 + ] + }, + "id": "node/2929609241" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2929609242", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1219659, + -22.89358 + ] + }, + "id": "node/2929609242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2939447261", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5034541, + -27.6666117 + ] + }, + "id": "node/2939447261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2948103184", + "amenity": "bicycle_parking", + "capacity": "40", + "fixme": "confirmar se a posição está correta", + "name": "Biblioteca Parque Estadual", + "opening_hours": "Tu-Su 10:00-20:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1877353, + -22.9047644 + ] + }, + "id": "node/2948103184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2960460808", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1873419, + -22.9148367 + ] + }, + "id": "node/2960460808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2960482950", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1990911, + -22.9578599 + ] + }, + "id": "node/2960482950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2960515404", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3215214, + -22.8079723 + ] + }, + "id": "node/2960515404" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2962096376", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8794634, + -20.7544406 + ] + }, + "id": "node/2962096376" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2962096377", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8810246, + -20.7552719 + ] + }, + "id": "node/2962096377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2971619921", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1900996, + -22.9667609 + ] + }, + "id": "node/2971619921" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2971619922", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1900164, + -22.9672227 + ] + }, + "id": "node/2971619922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2971637312", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2328113, + -22.9109302 + ] + }, + "id": "node/2971637312" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2971657424", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "check_date": "2025-07-13", + "covered": "yes", + "fee": "no", + "note:pt": "Localizado no piso G2", + "operator": "Shopping Tijuca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2354117, + -22.9217281 + ] + }, + "id": "node/2971657424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2971709874", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2575961, + -22.998841 + ] + }, + "id": "node/2971709874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2973280556", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.852095, + -23.1802958 + ] + }, + "id": "node/2973280556" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2976084096", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6397265, + -26.2445356 + ] + }, + "id": "node/2976084096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2976100060", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1189238, + -22.8936845 + ] + }, + "id": "node/2976100060" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983951744", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "26", + "covered": "no", + "fee": "no", + "operator": "Clube Monte Líbano" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2165609, + -22.9798907 + ] + }, + "id": "node/2983951744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983951745", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "18", + "covered": "no", + "fee": "no", + "operator": "Clube Monte Líbano" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2170081, + -22.9797579 + ] + }, + "id": "node/2983951745" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983958739", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1894262, + -22.9662176 + ] + }, + "id": "node/2983958739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983958740", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1880314, + -22.9660522 + ] + }, + "id": "node/2983958740" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983958741", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1875004, + -22.9663411 + ] + }, + "id": "node/2983958741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983958742", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1867413, + -22.9667535 + ] + }, + "id": "node/2983958742" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983958743", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.186634, + -22.9668079 + ] + }, + "id": "node/2983958743" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983958744", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1876801, + -22.9674006 + ] + }, + "id": "node/2983958744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983958745", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1887127, + -22.9684314 + ] + }, + "id": "node/2983958745" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983961690", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.186009, + -22.9689095 + ] + }, + "id": "node/2983961690" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983961691", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.186803, + -22.9694379 + ] + }, + "id": "node/2983961691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983961692", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1874279, + -22.9697763 + ] + }, + "id": "node/2983961692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983961693", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1881924, + -22.9703319 + ] + }, + "id": "node/2983961693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981504", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1907485, + -22.9789429 + ] + }, + "id": "node/2983981504" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1907056, + -22.9787281 + ] + }, + "id": "node/2983981505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981506", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date": "2025-08-27", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1905688, + -22.9774366 + ] + }, + "id": "node/2983981506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981507", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1909926, + -22.9779798 + ] + }, + "id": "node/2983981507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981508", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1906546, + -22.9777675 + ] + }, + "id": "node/2983981508" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981509", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1904722, + -22.9779008 + ] + }, + "id": "node/2983981509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981510", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1904347, + -22.9780786 + ] + }, + "id": "node/2983981510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981511", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1902925, + -22.9763747 + ] + }, + "id": "node/2983981511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981514", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1903435, + -22.9772933 + ] + }, + "id": "node/2983981514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981515", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1905634, + -22.9769748 + ] + }, + "id": "node/2983981515" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981516", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1904079, + -22.9768291 + ] + }, + "id": "node/2983981516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981517", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1902764, + -22.9770143 + ] + }, + "id": "node/2983981517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981518", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1902308, + -22.9768834 + ] + }, + "id": "node/2983981518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981521", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1902657, + -22.9758043 + ] + }, + "id": "node/2983981521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981522", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1899143, + -22.9758191 + ] + }, + "id": "node/2983981522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981523", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1897561, + -22.9751153 + ] + }, + "id": "node/2983981523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981524", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1895201, + -22.9748165 + ] + }, + "id": "node/2983981524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981525", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1894423, + -22.9746683 + ] + }, + "id": "node/2983981525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981526", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1891124, + -22.9744535 + ] + }, + "id": "node/2983981526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981527", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1890507, + -22.9740263 + ] + }, + "id": "node/2983981527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981528", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1889917, + -22.973888 + ] + }, + "id": "node/2983981528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981529", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1887825, + -22.9739991 + ] + }, + "id": "node/2983981529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981530", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1882567, + -22.9728138 + ] + }, + "id": "node/2983981530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981531", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1879966, + -22.9723717 + ] + }, + "id": "node/2983981531" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981532", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1873206, + -22.9717445 + ] + }, + "id": "node/2983981532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981933", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1874011, + -22.9714654 + ] + }, + "id": "node/2983981933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981934", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1872804, + -22.9713123 + ] + }, + "id": "node/2983981934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981935", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1871624, + -22.9717025 + ] + }, + "id": "node/2983981935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981936", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1869693, + -22.9716803 + ] + }, + "id": "node/2983981936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981937", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1870927, + -22.971179 + ] + }, + "id": "node/2983981937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981938", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1864114, + -22.9704949 + ] + }, + "id": "node/2983981938" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981939", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1860976, + -22.9699664 + ] + }, + "id": "node/2983981939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981941", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1854994, + -22.9696849 + ] + }, + "id": "node/2983981941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981942", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1851186, + -22.9696824 + ] + }, + "id": "node/2983981942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981943", + "addr:housenumber": "53", + "addr:street": "Rua Siqueira Campos", + "amenity": "cafe", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Boni's Gourmet Copacabana" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1848342, + -22.9690972 + ] + }, + "id": "node/2983981943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981944", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1846438, + -22.9689465 + ] + }, + "id": "node/2983981944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981945", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.184389, + -22.9693318 + ] + }, + "id": "node/2983981945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981946", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1842495, + -22.9687736 + ] + }, + "id": "node/2983981946" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981947", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1841235, + -22.9686724 + ] + }, + "id": "node/2983981947" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981948", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1839089, + -22.9685464 + ] + }, + "id": "node/2983981948" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981949", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1836112, + -22.9686576 + ] + }, + "id": "node/2983981949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981950", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1828977, + -22.9681637 + ] + }, + "id": "node/2983981950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981951", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1829567, + -22.9678772 + ] + }, + "id": "node/2983981951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981952", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1818025, + -22.9674327 + ] + }, + "id": "node/2983981952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981953", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1815646, + -22.9669375 + ] + }, + "id": "node/2983981953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981954", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1804435, + -22.9672153 + ] + }, + "id": "node/2983981954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981955", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1790353, + -22.9657805 + ] + }, + "id": "node/2983981955" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981956", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1776835, + -22.9657533 + ] + }, + "id": "node/2983981956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981957", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.177021, + -22.9654002 + ] + }, + "id": "node/2983981957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981958", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1756369, + -22.9647482 + ] + }, + "id": "node/2983981958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981959", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1757523, + -22.9645062 + ] + }, + "id": "node/2983981959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981960", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date": "2025-01-18", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1751461, + -22.9645136 + ] + }, + "id": "node/2983981960" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981961", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1747341, + -22.964032 + ] + }, + "id": "node/2983981961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981962", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.17502, + -22.9634319 + ] + }, + "id": "node/2983981962" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981963", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1755189, + -22.96277 + ] + }, + "id": "node/2983981963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2983981964", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1763004, + -22.9607856 + ] + }, + "id": "node/2983981964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3006902732", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8608201, + -15.764444 + ] + }, + "id": "node/3006902732" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3006908144", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8610199, + -15.7672432 + ] + }, + "id": "node/3006908144" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3012609231", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5037673, + -27.5863011 + ] + }, + "id": "node/3012609231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3012610356", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5024228, + -27.5856743 + ] + }, + "id": "node/3012610356" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3017379589", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1919154, + -22.9543347 + ] + }, + "id": "node/3017379589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3017382250", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "21", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.205313, + -22.9832422 + ] + }, + "id": "node/3017382250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3017382321", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2246504, + -22.9735153 + ] + }, + "id": "node/3017382321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3017382322", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.224162, + -22.9733328 + ] + }, + "id": "node/3017382322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3017389034", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1741738, + -22.912519 + ] + }, + "id": "node/3017389034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3017389621", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "opening_hours": "Mo-Fr 08:00-20:00", + "operator": "Sociedade dos Engenheiros e Arquitetos do Estado do Rio de Janeiro" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1755848, + -22.9203589 + ] + }, + "id": "node/3017389621" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3017415883", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "13", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3611869, + -22.7772647 + ] + }, + "id": "node/3017415883" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3033724125", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "225", + "covered": "yes", + "operator": "Instituto Parada Vital", + "source": "https://www.aeseletropaulo.com.br/imprensa/nossos-releases/conteudo/aes-eletropaulo-inaugura-biciclet%C3%A1rio-no-jabaquara" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6404403, + -23.646244 + ] + }, + "id": "node/3033724125" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3051977295", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "operator": "Run Way" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8946763, + -15.7578663 + ] + }, + "id": "node/3051977295" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3068180534", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8662241, + -15.7658987 + ] + }, + "id": "node/3068180534" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3070748626", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2368476, + -22.894464 + ] + }, + "id": "node/3070748626" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3070794503", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2503786, + -22.9222857 + ] + }, + "id": "node/3070794503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3073466104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4721088, + -12.9553978 + ] + }, + "id": "node/3073466104" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3073466105" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4718854, + -12.9554595 + ] + }, + "id": "node/3073466105" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3073466106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4721687, + -12.9566461 + ] + }, + "id": "node/3073466106" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3073466108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4723736, + -12.9565874 + ] + }, + "id": "node/3073466108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3073466109" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4721717, + -12.9557296 + ] + }, + "id": "node/3073466109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3089967642", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8668617, + -15.7656992 + ] + }, + "id": "node/3089967642" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3090553627", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0308176, + -15.8662309 + ] + }, + "id": "node/3090553627" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3092707622", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8654861, + -15.7682179 + ] + }, + "id": "node/3092707622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093444488", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "operator": "Extra" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2241414, + -22.8998371 + ] + }, + "id": "node/3093444488" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093459202", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "operator": "Mundial" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2339145, + -22.9231619 + ] + }, + "id": "node/3093459202" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093473658", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1217709, + -22.8935845 + ] + }, + "id": "node/3093473658" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093473659", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1200128, + -22.8936384 + ] + }, + "id": "node/3093473659" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093473660", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1193486, + -22.8936722 + ] + }, + "id": "node/3093473660" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093473661", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1191985, + -22.8936754 + ] + }, + "id": "node/3093473661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093473662", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1190455, + -22.8936816 + ] + }, + "id": "node/3093473662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093487225", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1164951, + -22.9041895 + ] + }, + "id": "node/3093487225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093487226", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1125402, + -22.9073199 + ] + }, + "id": "node/3093487226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093487227", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1124924, + -22.9073323 + ] + }, + "id": "node/3093487227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093487228", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1117543, + -22.9066578 + ] + }, + "id": "node/3093487228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093487229", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1112174, + -22.9062035 + ] + }, + "id": "node/3093487229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093487230", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1095576, + -22.9045157 + ] + }, + "id": "node/3093487230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093489274", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "22", + "fee": "no", + "operator": "Centro Educacional Alzira Bittencourt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1052848, + -22.9028504 + ] + }, + "id": "node/3093489274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093490065", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1243566, + -22.8915326 + ] + }, + "id": "node/3093490065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093497293", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Caminho Niemayer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1279847, + -22.8882543 + ] + }, + "id": "node/3093497293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093500967", + "amenity": "bicycle_parking", + "bicycle_parking": "pórtico", + "capacity": "30", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1258902, + -22.9066342 + ] + }, + "id": "node/3093500967" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093511466", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1755015, + -22.9628051 + ] + }, + "id": "node/3093511466" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093514798", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "check_date:capacity": "2021-11-08", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1893074, + -22.9510488 + ] + }, + "id": "node/3093514798" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093517936" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3656798, + -22.7952684 + ] + }, + "id": "node/3093517936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093536337", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3265142, + -23.0028118 + ] + }, + "id": "node/3093536337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093537195", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Midtown" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3625868, + -23.0006756 + ] + }, + "id": "node/3093537195" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093545050", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3642971, + -22.8064201 + ] + }, + "id": "node/3093545050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093545052", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "24", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3643628, + -22.8062532 + ] + }, + "id": "node/3093545052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093563080", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6815545, + -22.9202957 + ] + }, + "id": "node/3093563080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093567044", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6806667, + -22.9212024 + ] + }, + "id": "node/3093567044" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093570184", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.681242, + -22.9202339 + ] + }, + "id": "node/3093570184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093571307", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6814311, + -22.9200363 + ] + }, + "id": "node/3093571307" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093574340", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6823256, + -22.9189987 + ] + }, + "id": "node/3093574340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3093577996", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6850145, + -22.9152781 + ] + }, + "id": "node/3093577996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3094941932", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "24", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3639033, + -23.0009867 + ] + }, + "id": "node/3094941932" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695789", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6622312, + -22.9335805 + ] + }, + "id": "node/3105695789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695791", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6568573, + -22.9315063 + ] + }, + "id": "node/3105695791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695798", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6495806, + -22.9248912 + ] + }, + "id": "node/3105695798" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695808", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "52", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6326257, + -22.9165956 + ] + }, + "id": "node/3105695808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695809", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "25", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6322448, + -22.916472 + ] + }, + "id": "node/3105695809" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695811", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6275598, + -22.9156349 + ] + }, + "id": "node/3105695811" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695813", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6216334, + -22.9164144 + ] + }, + "id": "node/3105695813" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695819", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5890566, + -22.9111368 + ] + }, + "id": "node/3105695819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695821", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.583633, + -22.9106524 + ] + }, + "id": "node/3105695821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105695823", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5755228, + -22.9074667 + ] + }, + "id": "node/3105695823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105816579", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.365923, + -22.9952103 + ] + }, + "id": "node/3105816579" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105816580", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3658095, + -22.9892994 + ] + }, + "id": "node/3105816580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105816601", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3657475, + -22.9845935 + ] + }, + "id": "node/3105816601" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105962948", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3826633, + -22.9732238 + ] + }, + "id": "node/3105962948" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105962949", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3882215, + -22.9597386 + ] + }, + "id": "node/3105962949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105962950", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3838589, + -22.9586865 + ] + }, + "id": "node/3105962950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3105962951", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3771078, + -22.9551004 + ] + }, + "id": "node/3105962951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118405", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3461517, + -22.8887611 + ] + }, + "id": "node/3106118405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118408", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.334051, + -22.8649632 + ] + }, + "id": "node/3106118408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118409", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3278229, + -22.8564512 + ] + }, + "id": "node/3106118409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118411", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3207847, + -22.8533864 + ] + }, + "id": "node/3106118411" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118415", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3076884, + -22.8494808 + ] + }, + "id": "node/3106118415" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118416", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "note": "Não anotei se era antes (SW) ou depois (NE) da estação. Corrigir ao fazer visita ao local." + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.298462, + -22.841208 + ] + }, + "id": "node/3106118416" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118417", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "note": "Não anotei se era antes (W) ou depois (E) da estação." + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2893885, + -22.8376931 + ] + }, + "id": "node/3106118417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3106118418", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2829871, + -22.8392873 + ] + }, + "id": "node/3106118418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3112006029", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8790935, + -15.7772309 + ] + }, + "id": "node/3112006029" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3112006030", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8970439, + -15.7518058 + ] + }, + "id": "node/3112006030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3128384721", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no", + "fee": "no", + "name": "Metrô - Estação Central", + "operator": "Metrô DF", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.883768, + -15.7936989 + ] + }, + "id": "node/3128384721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3139257105", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8387454, + -15.813318 + ] + }, + "id": "node/3139257105" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3147163286", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8942594, + -15.7558081 + ] + }, + "id": "node/3147163286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3147933866", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no", + "fee": "no", + "operator": "ExpressoDF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9863215, + -15.9922453 + ] + }, + "id": "node/3147933866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3148159167", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9747629, + -15.9801368 + ] + }, + "id": "node/3148159167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3148159169", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9783309, + -15.9754012 + ] + }, + "id": "node/3148159169" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3148159170", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.970706, + -15.9818347 + ] + }, + "id": "node/3148159170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3150018105", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8897204, + -15.7667988 + ] + }, + "id": "node/3150018105" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3153028114", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9881221, + -15.9418918 + ] + }, + "id": "node/3153028114" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3153028116", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no", + "operator": "ExpressoDF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9753153, + -15.92277 + ] + }, + "id": "node/3153028116" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3153028118", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no", + "operator": "ExpressoDF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9678588, + -15.9114775 + ] + }, + "id": "node/3153028118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3153028120", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no", + "operator": "ExpressoDF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9613732, + -15.8907687 + ] + }, + "id": "node/3153028120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3153028123", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no", + "operator": "ExpressoDF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.95978, + -15.8797272 + ] + }, + "id": "node/3153028123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156301286", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8882284, + -15.7585851 + ] + }, + "id": "node/3156301286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379425", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1096292, + -22.8720065 + ] + }, + "id": "node/3156379425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379427", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1214849, + -22.884557 + ] + }, + "id": "node/3156379427" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379428", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Caminho Niemayer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.127016, + -22.8904481 + ] + }, + "id": "node/3156379428" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379429", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1348522, + -22.9054598 + ] + }, + "id": "node/3156379429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379431", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1094938, + -22.911652 + ] + }, + "id": "node/3156379431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379432", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0951255, + -22.9148702 + ] + }, + "id": "node/3156379432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379433", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0951959, + -22.9158083 + ] + }, + "id": "node/3156379433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379434", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0864617, + -22.9148785 + ] + }, + "id": "node/3156379434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379435", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0938305, + -22.920941 + ] + }, + "id": "node/3156379435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379436", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0904822, + -22.9200421 + ] + }, + "id": "node/3156379436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379438", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0973394, + -22.9304367 + ] + }, + "id": "node/3156379438" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379440", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0731908, + -22.9561446 + ] + }, + "id": "node/3156379440" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379441", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0668948, + -22.9587418 + ] + }, + "id": "node/3156379441" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3156379442", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0301029, + -22.9752223 + ] + }, + "id": "node/3156379442" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158309074", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "check_date": "2025-06-20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.241118, + -22.9242618 + ] + }, + "id": "node/3158309074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158332149", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Pão de Açúcar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2176435, + -22.9185892 + ] + }, + "id": "node/3158332149" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158334671", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.211902, + -22.915475 + ] + }, + "id": "node/3158334671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158364570", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "164", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6476556, + -22.9521952 + ] + }, + "id": "node/3158364570" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158388226", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0920716, + -22.9205537 + ] + }, + "id": "node/3158388226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158388227", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0914145, + -22.9202745 + ] + }, + "id": "node/3158388227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158404184", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0860863, + -22.9177141 + ] + }, + "id": "node/3158404184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158494191", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6497558, + -22.9186961 + ] + }, + "id": "node/3158494191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158525514", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "33", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6327657, + -22.9160364 + ] + }, + "id": "node/3158525514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158544820", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6133207, + -22.9126694 + ] + }, + "id": "node/3158544820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158544821", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "60", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6132241, + -22.9123074 + ] + }, + "id": "node/3158544821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158579321", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "56", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5958017, + -22.9095524 + ] + }, + "id": "node/3158579321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158579322", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "80", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5957561, + -22.9088359 + ] + }, + "id": "node/3158579322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158589524", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.580596, + -22.9063943 + ] + }, + "id": "node/3158589524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158589525", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "17", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5807167, + -22.9059966 + ] + }, + "id": "node/3158589525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3158608915", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "34", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5662072, + -22.9038049 + ] + }, + "id": "node/3158608915" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3159523511", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4232169, + -22.7960294 + ] + }, + "id": "node/3159523511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3159549221", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "12", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4290691, + -22.7831679 + ] + }, + "id": "node/3159549221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3161293042", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8667549, + -15.7742204 + ] + }, + "id": "node/3161293042" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3163902036", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "name": "Parque Olhos d'Água" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8863514, + -15.7432707 + ] + }, + "id": "node/3163902036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3164638782", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8952309, + -15.7978148 + ] + }, + "id": "node/3164638782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3179509901", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "operator": "Recreio Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4891286, + -23.0224711 + ] + }, + "id": "node/3179509901" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3188305569", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.684177, + -23.5660669 + ] + }, + "id": "node/3188305569" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3188368182", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1111517, + -22.7670223 + ] + }, + "id": "node/3188368182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3188425986", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no", + "fee": "no", + "operator": "Shopping Jardim Guadalupe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3696864, + -22.8424622 + ] + }, + "id": "node/3188425986" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3200216680", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.883148, + -15.7468422 + ] + }, + "id": "node/3200216680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3203030475", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.877722, + -15.7834556 + ] + }, + "id": "node/3203030475" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3210716761", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2723338, + -23.0006703 + ] + }, + "id": "node/3210716761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3210716762", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3167722, + -23.008807 + ] + }, + "id": "node/3210716762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3210716861", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2724438, + -23.000974 + ] + }, + "id": "node/3210716861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059863", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2994002, + -23.0144832 + ] + }, + "id": "node/3211059863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059865", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3023657, + -23.0148793 + ] + }, + "id": "node/3211059865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059866", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3077291, + -23.0151531 + ] + }, + "id": "node/3211059866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059867", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3101083, + -23.0147926 + ] + }, + "id": "node/3211059867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059870", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3127379, + -23.0143142 + ] + }, + "id": "node/3211059870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059871", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3297319, + -23.0111631 + ] + }, + "id": "node/3211059871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059872", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3399467, + -23.0105954 + ] + }, + "id": "node/3211059872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059873", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.34098, + -23.010561 + ] + }, + "id": "node/3211059873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059874", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3524591, + -23.0105095 + ] + }, + "id": "node/3211059874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059875", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3574929, + -23.0106255 + ] + }, + "id": "node/3211059875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059876", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3579475, + -23.0106699 + ] + }, + "id": "node/3211059876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059877", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3630584, + -23.0108641 + ] + }, + "id": "node/3211059877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059878", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3639999, + -23.0109011 + ] + }, + "id": "node/3211059878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059963", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3004547, + -23.0146479 + ] + }, + "id": "node/3211059963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059964", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2992914, + -23.0144813 + ] + }, + "id": "node/3211059964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059965", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3026527, + -23.0149114 + ] + }, + "id": "node/3211059965" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059966", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3071279, + -23.0152175 + ] + }, + "id": "node/3211059966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059968", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3090015, + -23.0150422 + ] + }, + "id": "node/3211059968" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059969", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3087654, + -23.0150694 + ] + }, + "id": "node/3211059969" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059972", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3098653, + -23.0148439 + ] + }, + "id": "node/3211059972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059974", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.314552, + -23.0140307 + ] + }, + "id": "node/3211059974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059975", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3160178, + -23.0136467 + ] + }, + "id": "node/3211059975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059976", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3206194, + -23.012624 + ] + }, + "id": "node/3211059976" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059978", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3225224, + -23.0121833 + ] + }, + "id": "node/3211059978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059979", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.322155, + -23.0122648 + ] + }, + "id": "node/3211059979" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059980", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3249378, + -23.0117649 + ] + }, + "id": "node/3211059980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059982", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3267795, + -23.0114955 + ] + }, + "id": "node/3211059982" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059983", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3276955, + -23.0114534 + ] + }, + "id": "node/3211059983" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059984", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3286231, + -23.0112687 + ] + }, + "id": "node/3211059984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059987", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3413625, + -23.0105479 + ] + }, + "id": "node/3211059987" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059988", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3491718, + -23.0104217 + ] + }, + "id": "node/3211059988" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059989", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3518896, + -23.01048 + ] + }, + "id": "node/3211059989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059990", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3520898, + -23.0104921 + ] + }, + "id": "node/3211059990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059991", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3570988, + -23.010613 + ] + }, + "id": "node/3211059991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059992", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3604646, + -23.0107221 + ] + }, + "id": "node/3211059992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059993", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3633937, + -23.0108789 + ] + }, + "id": "node/3211059993" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211059994", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3643003, + -23.0109159 + ] + }, + "id": "node/3211059994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067061", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3001502, + -23.0145929 + ] + }, + "id": "node/3211067061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067062", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3068329, + -23.0152323 + ] + }, + "id": "node/3211067062" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067063", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3080426, + -23.0151262 + ] + }, + "id": "node/3211067063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067064", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3109456, + -23.0146181 + ] + }, + "id": "node/3211067064" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067065", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3106641, + -23.0146728 + ] + }, + "id": "node/3211067065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067067", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3118526, + -23.0144855 + ] + }, + "id": "node/3211067067" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067070", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3275404, + -23.0114774 + ] + }, + "id": "node/3211067070" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067071", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3395612, + -23.0105937 + ] + }, + "id": "node/3211067071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067073", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3538923, + -23.0105052 + ] + }, + "id": "node/3211067073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067074", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3544468, + -23.0105169 + ] + }, + "id": "node/3211067074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067077", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3587061, + -23.0106534 + ] + }, + "id": "node/3211067077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067161", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2990451, + -23.014472 + ] + }, + "id": "node/3211067161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067162", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2988708, + -23.0144522 + ] + }, + "id": "node/3211067162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067163", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2982789, + -23.014404 + ] + }, + "id": "node/3211067163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067164", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.298042, + -23.0143702 + ] + }, + "id": "node/3211067164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067165", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3116273, + -23.0145349 + ] + }, + "id": "node/3211067165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067166", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3189664, + -23.0130564 + ] + }, + "id": "node/3211067166" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067167", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3191705, + -23.0129981 + ] + }, + "id": "node/3211067167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067169", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3201943, + -23.0127326 + ] + }, + "id": "node/3211067169" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067171", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3252932, + -23.011718 + ] + }, + "id": "node/3211067171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067173", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.331511, + -23.011007 + ] + }, + "id": "node/3211067173" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067174", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3312383, + -23.0110465 + ] + }, + "id": "node/3211067174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067175", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3359312, + -23.0107791 + ] + }, + "id": "node/3211067175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067176", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3355747, + -23.0108032 + ] + }, + "id": "node/3211067176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067177", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3361652, + -23.0107719 + ] + }, + "id": "node/3211067177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067179", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3384906, + -23.0106461 + ] + }, + "id": "node/3211067179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067182", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3590518, + -23.010676 + ] + }, + "id": "node/3211067182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067183", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3601738, + -23.010716 + ] + }, + "id": "node/3211067183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067561", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3124377, + -23.0143432 + ] + }, + "id": "node/3211067561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067564", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3293739, + -23.0112045 + ] + }, + "id": "node/3211067564" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067566", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3365432, + -23.0107461 + ] + }, + "id": "node/3211067566" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067568", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3420594, + -23.0105683 + ] + }, + "id": "node/3211067568" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067570", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3474288, + -23.0104374 + ] + }, + "id": "node/3211067570" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067572", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3495565, + -23.0104379 + ] + }, + "id": "node/3211067572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067573", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3517525, + -23.0104756 + ] + }, + "id": "node/3211067573" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067575", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3564463, + -23.0105846 + ] + }, + "id": "node/3211067575" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067576", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.356049, + -23.0105812 + ] + }, + "id": "node/3211067576" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067577", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "13", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3619727, + -23.0108307 + ] + }, + "id": "node/3211067577" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067578", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "13", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3617341, + -23.0108273 + ] + }, + "id": "node/3211067578" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067861", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3147587, + -23.0139827 + ] + }, + "id": "node/3211067861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067863", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3163542, + -23.0135652 + ] + }, + "id": "node/3211067863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067864", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.318652, + -23.0131313 + ] + }, + "id": "node/3211067864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067866", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3214563, + -23.0124277 + ] + }, + "id": "node/3211067866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067867", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3211947, + -23.0125055 + ] + }, + "id": "node/3211067867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067869", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3270773, + -23.0114505 + ] + }, + "id": "node/3211067869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067871", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3305422, + -23.0111144 + ] + }, + "id": "node/3211067871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067872", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3302687, + -23.0111489 + ] + }, + "id": "node/3211067872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067875", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3380418, + -23.0106563 + ] + }, + "id": "node/3211067875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067876", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.342262, + -23.0105462 + ] + }, + "id": "node/3211067876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067877", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3432371, + -23.0105134 + ] + }, + "id": "node/3211067877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067878", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3429614, + -23.010517 + ] + }, + "id": "node/3211067878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067880", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3451955, + -23.0104702 + ] + }, + "id": "node/3211067880" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067881", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3448119, + -23.0105016 + ] + }, + "id": "node/3211067881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067882", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3471132, + -23.0104358 + ] + }, + "id": "node/3211067882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3211067885", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3584484, + -23.0106591 + ] + }, + "id": "node/3211067885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3213870227", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8865704, + -15.7443992 + ] + }, + "id": "node/3213870227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3217998881", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1911962, + -22.9041745 + ] + }, + "id": "node/3217998881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3218008170", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2505494, + -22.8854983 + ] + }, + "id": "node/3218008170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3218008171", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.249726, + -22.8862124 + ] + }, + "id": "node/3218008171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3218008172", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2493371, + -22.8865707 + ] + }, + "id": "node/3218008172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3218078983", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2971359, + -22.8676039 + ] + }, + "id": "node/3218078983" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3218078984", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "14", + "check_date": "2025-03-23", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2972566, + -22.8681278 + ] + }, + "id": "node/3218078984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3218227678", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date": "2025-07-23", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1675888, + -22.9523917 + ] + }, + "id": "node/3218227678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3220749226", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "84", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.464897, + -22.8739578 + ] + }, + "id": "node/3220749226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3220749232", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "43", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4660329, + -22.8750155 + ] + }, + "id": "node/3220749232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3220749237", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4635787, + -22.8750328 + ] + }, + "id": "node/3220749237" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3222733859", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2311475, + -22.9136059 + ] + }, + "id": "node/3222733859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3222746178", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2253024, + -22.9197852 + ] + }, + "id": "node/3222746178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3222747691", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2223934, + -22.9200724 + ] + }, + "id": "node/3222747691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223595968", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3693509, + -23.0111016 + ] + }, + "id": "node/3223595968" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223654505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3678552, + -23.0110824 + ] + }, + "id": "node/3223654505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223654507", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.36843, + -23.0110626 + ] + }, + "id": "node/3223654507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223654509", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3697654, + -23.0111322 + ] + }, + "id": "node/3223654509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223654785", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.366183, + -23.0110169 + ] + }, + "id": "node/3223654785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223654786", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.368752, + -23.0110897 + ] + }, + "id": "node/3223654786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223656161", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.366487, + -23.0110269 + ] + }, + "id": "node/3223656161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223656162", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "check_date": "2025-09-14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3675152, + -23.0110634 + ] + }, + "id": "node/3223656162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682187", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4418137, + -23.0211436 + ] + }, + "id": "node/3223682187" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682188", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4481859, + -23.0227912 + ] + }, + "id": "node/3223682188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682189", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4484062, + -23.0228656 + ] + }, + "id": "node/3223682189" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682190", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4641262, + -23.0276339 + ] + }, + "id": "node/3223682190" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682191", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4670794, + -23.0289434 + ] + }, + "id": "node/3223682191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682290", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4437662, + -23.0216096 + ] + }, + "id": "node/3223682290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682291", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4505396, + -23.0234144 + ] + }, + "id": "node/3223682291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682292", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4515846, + -23.023696 + ] + }, + "id": "node/3223682292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682293", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4531924, + -23.0241084 + ] + }, + "id": "node/3223682293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682294", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4696504, + -23.031062 + ] + }, + "id": "node/3223682294" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682674", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4677346, + -23.0293571 + ] + }, + "id": "node/3223682674" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682675", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4680478, + -23.0295512 + ] + }, + "id": "node/3223682675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223682676", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4698826, + -23.0311402 + ] + }, + "id": "node/3223682676" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223683288", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4434585, + -23.0215345 + ] + }, + "id": "node/3223683288" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223683289", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4525251, + -23.0239373 + ] + }, + "id": "node/3223683289" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752661", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4416196, + -23.0210952 + ] + }, + "id": "node/3223752661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752663", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4502112, + -23.0233363 + ] + }, + "id": "node/3223752663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752664", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4511863, + -23.0235801 + ] + }, + "id": "node/3223752664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752665", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4563046, + -23.0250893 + ] + }, + "id": "node/3223752665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752666", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4688298, + -23.0301617 + ] + }, + "id": "node/3223752666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752761", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4425471, + -23.021325 + ] + }, + "id": "node/3223752761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752762", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4471772, + -23.0225114 + ] + }, + "id": "node/3223752762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752763", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4475239, + -23.0225987 + ] + }, + "id": "node/3223752763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752764", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4536005, + -23.0242404 + ] + }, + "id": "node/3223752764" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752765", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.454592, + -23.0245473 + ] + }, + "id": "node/3223752765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752766", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4560183, + -23.0249838 + ] + }, + "id": "node/3223752766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752767", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4582785, + -23.0257095 + ] + }, + "id": "node/3223752767" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752768", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4685775, + -23.0299424 + ] + }, + "id": "node/3223752768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752769", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4712652, + -23.0324461 + ] + }, + "id": "node/3223752769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752961", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4427995, + -23.0213829 + ] + }, + "id": "node/3223752961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752963", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4601659, + -23.0263002 + ] + }, + "id": "node/3223752963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752964", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4665547, + -23.0286654 + ] + }, + "id": "node/3223752964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752965", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4697517, + -23.0311723 + ] + }, + "id": "node/3223752965" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223752966", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.470102, + -23.0316607 + ] + }, + "id": "node/3223752966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753162", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4643535, + -23.0277306 + ] + }, + "id": "node/3223753162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753163", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4653343, + -23.02812 + ] + }, + "id": "node/3223753163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753164", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4674972, + -23.029204 + ] + }, + "id": "node/3223753164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753165", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4713984, + -23.0323765 + ] + }, + "id": "node/3223753165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753361", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4463037, + -23.0222528 + ] + }, + "id": "node/3223753361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753362", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4541692, + -23.0244178 + ] + }, + "id": "node/3223753362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753363", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4581537, + -23.0256524 + ] + }, + "id": "node/3223753363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753861", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.452264, + -23.0238695 + ] + }, + "id": "node/3223753861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223753862", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4670102, + -23.0288888 + ] + }, + "id": "node/3223753862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223754261", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4591031, + -23.0259786 + ] + }, + "id": "node/3223754261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223754262", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4595028, + -23.026074 + ] + }, + "id": "node/3223754262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223754461", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4604629, + -23.026392 + ] + }, + "id": "node/3223754461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223754462", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4682596, + -23.0297042 + ] + }, + "id": "node/3223754462" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223754463", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4691564, + -23.0304974 + ] + }, + "id": "node/3223754463" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223754661", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4611636, + -23.0266416 + ] + }, + "id": "node/3223754661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223754662", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4614959, + -23.0267616 + ] + }, + "id": "node/3223754662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223755061", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4631427, + -23.0272755 + ] + }, + "id": "node/3223755061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223755062", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4635176, + -23.0274301 + ] + }, + "id": "node/3223755062" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223755063", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4650214, + -23.0280067 + ] + }, + "id": "node/3223755063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223755064", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4663326, + -23.0285766 + ] + }, + "id": "node/3223755064" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223755361", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4633979, + -23.0273956 + ] + }, + "id": "node/3223755361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223755362", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.469277, + -23.0306304 + ] + }, + "id": "node/3223755362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3223756461", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.470524, + -23.0322753 + ] + }, + "id": "node/3223756461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3224009961", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4993394, + -23.0374715 + ] + }, + "id": "node/3224009961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3224010061", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5044707, + -23.0397046 + ] + }, + "id": "node/3224010061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3224010062", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5043444, + -23.0396058 + ] + }, + "id": "node/3224010062" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3224010162", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "36", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5173014, + -23.0477182 + ] + }, + "id": "node/3224010162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3224673461", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8728978, + -15.7638595 + ] + }, + "id": "node/3224673461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3227047856", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8766097, + -15.7663635 + ] + }, + "id": "node/3227047856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3240881668", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8816954, + -15.7540442 + ] + }, + "id": "node/3240881668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3241582129", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8840241, + -15.803773 + ] + }, + "id": "node/3241582129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3242577363", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.3177776, + -23.0093303 + ] + }, + "id": "node/3242577363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3245426334", + "amenity": "bicycle_parking", + "capacity": "4", + "parking": "stand" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8820355, + -15.7503881 + ] + }, + "id": "node/3245426334" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3246266203", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4863399, + -23.0216491 + ] + }, + "id": "node/3246266203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247029652", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4648781, + -22.8699145 + ] + }, + "id": "node/3247029652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247029654", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4638374, + -22.8728356 + ] + }, + "id": "node/3247029654" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247592166", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8915395, + -15.746905 + ] + }, + "id": "node/3247592166" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247637840", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "95", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4685607, + -22.8770343 + ] + }, + "id": "node/3247637840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247637850", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4656988, + -22.8779115 + ] + }, + "id": "node/3247637850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247637851", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "112", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4649156, + -22.8765425 + ] + }, + "id": "node/3247637851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247637852", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "72", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4648781, + -22.8786579 + ] + }, + "id": "node/3247637852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247637856", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4637355, + -22.8772443 + ] + }, + "id": "node/3247637856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247638262", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "60", + "covered": "no", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4656613, + -22.8794017 + ] + }, + "id": "node/3247638262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247638263", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4655321, + -22.8792226 + ] + }, + "id": "node/3247638263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247638264", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4649371, + -22.8794264 + ] + }, + "id": "node/3247638264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3247638265", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.464406, + -22.8797724 + ] + }, + "id": "node/3247638265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3248313761", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.886908, + -15.7412636 + ] + }, + "id": "node/3248313761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3254618944", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8851215, + -15.8038204 + ] + }, + "id": "node/3254618944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3255931313", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8943224, + -15.802216 + ] + }, + "id": "node/3255931313" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3255931314", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8918819, + -15.7469913 + ] + }, + "id": "node/3255931314" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3259185159", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "operator": "Universidade Católica de Brasília" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9030114, + -15.7421695 + ] + }, + "id": "node/3259185159" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3267350204", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3096951, + -22.7869395 + ] + }, + "id": "node/3267350204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3276629220", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "operator": "Brasília Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8889411, + -15.7873676 + ] + }, + "id": "node/3276629220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3293275032", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.4437602, + -29.57396 + ] + }, + "id": "node/3293275032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3296656399", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "221", + "addr:street": "Rua Teixeira de Melo", + "addr:suburb": "Tatuapé", + "amenity": "bicycle_parking", + "capacity": "12", + "disused:amenity": "bicycle_rental", + "fee": "yes", + "name": "SENAI", + "operator": "Bike Sampa", + "operator:type": "private", + "ref": "197" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5736841, + -23.5367633 + ] + }, + "id": "node/3296656399" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3299594693", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9086916, + -15.7837861 + ] + }, + "id": "node/3299594693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301343147", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "15", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5659823, + -22.9044654 + ] + }, + "id": "node/3301343147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346369", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5644293, + -22.9070473 + ] + }, + "id": "node/3301346369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346372", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5649175, + -22.907618 + ] + }, + "id": "node/3301346372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346386", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5611771, + -22.9028582 + ] + }, + "id": "node/3301346386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346394", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5590126, + -22.9021861 + ] + }, + "id": "node/3301346394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346401", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "52", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5597267, + -22.9053641 + ] + }, + "id": "node/3301346401" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346402", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5594317, + -22.904282 + ] + }, + "id": "node/3301346402" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346403", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "36", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5592037, + -22.9034123 + ] + }, + "id": "node/3301346403" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346405", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5565966, + -22.9016555 + ] + }, + "id": "node/3301346405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301346406", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5556471, + -22.9014702 + ] + }, + "id": "node/3301346406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301457229", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "operator": "Recreio Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4890716, + -23.0224587 + ] + }, + "id": "node/3301457229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301821787", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5662794, + -22.9029379 + ] + }, + "id": "node/3301821787" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301821788", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5656061, + -22.9025154 + ] + }, + "id": "node/3301821788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301821792", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "58", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5643053, + -22.9027353 + ] + }, + "id": "node/3301821792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301821795", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "42", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5631412, + -22.902676 + ] + }, + "id": "node/3301821795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301821802", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "42", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5591179, + -22.9017 + ] + }, + "id": "node/3301821802" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3301821803", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5589409, + -22.8999383 + ] + }, + "id": "node/3301821803" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3303003077", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8601986, + -15.7632027 + ] + }, + "id": "node/3303003077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3315842972", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:00-21:00; Sa 07:00-21:00; Su 10:00-21:00", + "operator": "Terminal Hidroviário de Porto Alegre", + "supervised": "yes", + "website": "https://www.travessiapoaguaiba.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2280272, + -30.0253091 + ] + }, + "id": "node/3315842972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3318890919" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7732743, + -23.6313193 + ] + }, + "id": "node/3318890919" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3318890920" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7732453, + -23.6312606 + ] + }, + "id": "node/3318890920" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3318890921" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7734223, + -23.6311872 + ] + }, + "id": "node/3318890921" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3318890922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7734513, + -23.6312458 + ] + }, + "id": "node/3318890922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3320651391", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8902144, + -15.7631374 + ] + }, + "id": "node/3320651391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3322386929", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "18", + "covered": "no", + "fee": "no", + "operator": "Prezunic" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6820896, + -22.9159598 + ] + }, + "id": "node/3322386929" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3322424974", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6834916, + -22.9178398 + ] + }, + "id": "node/3322424974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3322428697", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1015962, + -26.4737455 + ] + }, + "id": "node/3322428697" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3322443872", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "500", + "covered": "yes", + "name": "Bicicletário SuperVia", + "operator": "SuperVia" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6839797, + -22.9151765 + ] + }, + "id": "node/3322443872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3322462361", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6852889, + -22.9152846 + ] + }, + "id": "node/3322462361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3322481836", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6858036, + -22.9146676 + ] + }, + "id": "node/3322481836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3322481837", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "yes", + "name": "Bike Park" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6866297, + -22.9143217 + ] + }, + "id": "node/3322481837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3324061957", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "yes", + "fee": "no", + "operator": "Terminal Garagem Menezes Côrtes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1744571, + -22.9051091 + ] + }, + "id": "node/3324061957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3324081061", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2177498, + -22.9658698 + ] + }, + "id": "node/3324081061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3324127885", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6850279, + -22.9204085 + ] + }, + "id": "node/3324127885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3324142823", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1845375, + -22.5706185 + ] + }, + "id": "node/3324142823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3324154640", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no", + "operator": "Santa Cruz Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6824208, + -22.9215251 + ] + }, + "id": "node/3324154640" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3337665095", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8852534, + -15.7805878 + ] + }, + "id": "node/3337665095" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3344890393", + "addr:city": "São Paulo", + "addr:housenumber": "55", + "addr:postcode": "05436-060", + "addr:street": "Rua Medeiros de Albuquerque", + "amenity": "arts_centre", + "bicycle_parking": "informal", + "name": "Espaço Contraponto", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6862055, + -23.5571483 + ] + }, + "id": "node/3344890393" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3364066645", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9075409, + -15.8097922 + ] + }, + "id": "node/3364066645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3381386507", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "yes", + "fee": "no", + "note": "Dentro da estação do metrô.", + "operator": "MetrôRio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2393356, + -22.9316896 + ] + }, + "id": "node/3381386507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3381455785", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "7", + "covered": "no", + "fee": "no", + "operator": "Academia Evolution Fitness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3384793, + -22.8455177 + ] + }, + "id": "node/3381455785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3393225666", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2349092, + -22.844328 + ] + }, + "id": "node/3393225666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3405484064", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "operator": "ACRJ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1769726, + -22.9019182 + ] + }, + "id": "node/3405484064" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3405533096", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.219701, + -22.98432 + ] + }, + "id": "node/3405533096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409729163", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "operator": "Itaú" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3587059, + -23.0004563 + ] + }, + "id": "node/3409729163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409767164", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "n", + "operator": "O2 Corporate & Offices" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3595633, + -22.9895782 + ] + }, + "id": "node/3409767164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409767187", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "O2 Corporate & Offices" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3589907, + -22.9885646 + ] + }, + "id": "node/3409767187" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409767188", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "O2 Corporate & Offices" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3596753, + -22.9881862 + ] + }, + "id": "node/3409767188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409776574", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Redeconomia" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2924449, + -22.8311589 + ] + }, + "id": "node/3409776574" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409781191", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2976302, + -22.8219754 + ] + }, + "id": "node/3409781191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409791251", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "14", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3126776, + -22.849233 + ] + }, + "id": "node/3409791251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409792871", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "3", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3451575, + -22.9395616 + ] + }, + "id": "node/3409792871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3409807891", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "40", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4592879, + -22.7424926 + ] + }, + "id": "node/3409807891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3417609428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8140004, + -26.2894026 + ] + }, + "id": "node/3417609428" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3417609429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8139426, + -26.2894675 + ] + }, + "id": "node/3417609429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3417609430" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8136715, + -26.2892762 + ] + }, + "id": "node/3417609430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3417609431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8137303, + -26.2892054 + ] + }, + "id": "node/3417609431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3427991591", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.454413, + -1.4764182 + ] + }, + "id": "node/3427991591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3431820840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.316715, + -20.3917892 + ] + }, + "id": "node/3431820840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3431820856" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3168271, + -20.3920512 + ] + }, + "id": "node/3431820856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3451256825", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "name": "Bicicletário do CIC/EST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8693043, + -15.7586916 + ] + }, + "id": "node/3451256825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3451256826", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "24", + "check_date:capacity": "2023-10-04", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8699802, + -15.7585393 + ] + }, + "id": "node/3451256826" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3451256827", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8706615, + -15.7587226 + ] + }, + "id": "node/3451256827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3451256828", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8703664, + -15.7586348 + ] + }, + "id": "node/3451256828" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3452312978", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8706464, + -15.7604577 + ] + }, + "id": "node/3452312978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3452313415", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "check_date:capacity": "2023-10-04", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8703547, + -15.7627653 + ] + }, + "id": "node/3452313415" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3452313419", + "amenity": "bicycle_parking", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8702374, + -15.7640334 + ] + }, + "id": "node/3452313419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3453969120", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.869054, + -15.7646025 + ] + }, + "id": "node/3453969120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3457581293", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8665491, + -15.7663871 + ] + }, + "id": "node/3457581293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3465668964", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3516457, + -22.9897446 + ] + }, + "id": "node/3465668964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3465668965", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3541363, + -22.9907215 + ] + }, + "id": "node/3465668965" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3465769890", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3519392, + -22.8976213 + ] + }, + "id": "node/3465769890" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3465809215", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3743973, + -22.9516904 + ] + }, + "id": "node/3465809215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3466087750", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "O2 Corporate & Offices" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3599054, + -22.98762 + ] + }, + "id": "node/3466087750" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3466090964", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "O2 Corporate & Offices" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3601696, + -22.9881669 + ] + }, + "id": "node/3466090964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3466110994", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "O2 Corporate & Offices" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3594172, + -22.9875879 + ] + }, + "id": "node/3466110994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3466134256", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "n", + "operator": "O2 Corporate & Offices" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3597833, + -22.9899274 + ] + }, + "id": "node/3466134256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3477848871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449471, + -23.4836159 + ] + }, + "id": "node/3477848871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3477848872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.64524, + -23.483278 + ] + }, + "id": "node/3477848872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3477848873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448731, + -23.4836655 + ] + }, + "id": "node/3477848873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3491743293", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "name": "Rodoviária Interestadual" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9498723, + -15.8307896 + ] + }, + "id": "node/3491743293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3504810611", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8767046, + -15.7658174 + ] + }, + "id": "node/3504810611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3507819524", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2123001, + -25.4956032 + ] + }, + "id": "node/3507819524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3507819568", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2057214, + -25.5053557 + ] + }, + "id": "node/3507819568" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3509431933" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.321608, + -20.3921693 + ] + }, + "id": "node/3509431933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3509431935" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3216365, + -20.3922239 + ] + }, + "id": "node/3509431935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3509431936" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3214346, + -20.3922487 + ] + }, + "id": "node/3509431936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3509431938" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3214631, + -20.3923033 + ] + }, + "id": "node/3509431938" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3510668843", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3135978, + -23.0062088 + ] + }, + "id": "node/3510668843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3510695259", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3044525, + -23.0087089 + ] + }, + "id": "node/3510695259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3510805374", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3062315, + -23.0094996 + ] + }, + "id": "node/3510805374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3510835773", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "15", + "covered": "no", + "fee": "no", + "operator": "Cultura Inglesa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3073806, + -23.0102157 + ] + }, + "id": "node/3510835773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3510887671", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator": "Bodytech" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.310269, + -23.0119659 + ] + }, + "id": "node/3510887671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3510915217", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.350549, + -23.0100101 + ] + }, + "id": "node/3510915217" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3513117252" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3425374, + -20.4384327 + ] + }, + "id": "node/3513117252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3513117253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3425551, + -20.4384467 + ] + }, + "id": "node/3513117253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3513117258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3423184, + -20.4386765 + ] + }, + "id": "node/3513117258" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3513117261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3423362, + -20.4386905 + ] + }, + "id": "node/3513117261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3516155922" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447571, + -23.4819124 + ] + }, + "id": "node/3516155922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3516155923" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448864, + -23.4819131 + ] + }, + "id": "node/3516155923" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3516155924" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.64493, + -23.4819463 + ] + }, + "id": "node/3516155924" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524251636", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1827499, + -22.9476651 + ] + }, + "id": "node/3524251636" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524400955", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3050748, + -23.0128721 + ] + }, + "id": "node/3524400955" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524431819", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3045968, + -23.0117984 + ] + }, + "id": "node/3524431819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524451644", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3045444, + -23.0102577 + ] + }, + "id": "node/3524451644" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524458297", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1833479, + -22.9552505 + ] + }, + "id": "node/3524458297" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524478042", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1768354, + -22.9062093 + ] + }, + "id": "node/3524478042" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524491193", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2329612, + -22.9089694 + ] + }, + "id": "node/3524491193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524528219", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1968886, + -22.9843641 + ] + }, + "id": "node/3524528219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3524538766", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1970388, + -22.9849296 + ] + }, + "id": "node/3524538766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541606221", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3134872, + -22.8534028 + ] + }, + "id": "node/3541606221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541628396", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "10", + "covered": "yes", + "fee": "no", + "operator": "Casa de Espinho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.318429, + -22.8341144 + ] + }, + "id": "node/3541628396" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541777390", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3613627, + -22.9233456 + ] + }, + "id": "node/3541777390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541788854", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Prezunic" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.359977, + -22.9274285 + ] + }, + "id": "node/3541788854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541798647", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "15", + "covered": "no", + "fee": "no", + "operator": "Terminal de Integração Rodoviária José Ferreira da Silva" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9619283, + -22.9623531 + ] + }, + "id": "node/3541798647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541821464", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.5637768, + -22.4921522 + ] + }, + "id": "node/3541821464" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541825048", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "BR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1712437, + -22.9403529 + ] + }, + "id": "node/3541825048" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541861914", + "amenity": "bicycle_parking", + "capacity": "104", + "covered": "no", + "fee": "no", + "operator": "Associação Educacional Dom Bosco" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.473142, + -22.4824771 + ] + }, + "id": "node/3541861914" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541869174", + "amenity": "bicycle_parking", + "capacity": "11", + "covered": "no", + "fee": "no", + "operator": "Igreja do Cristo Ressuscitado" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4643551, + -22.4734432 + ] + }, + "id": "node/3541869174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3541910161", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "150", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0596403, + -22.9386997 + ] + }, + "id": "node/3541910161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3566601894", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "description": "Bicicletário Ceisa Center", + "fee": "no", + "payment:none": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5515376, + -27.5938646 + ] + }, + "id": "node/3566601894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3566910335", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0780025, + -26.9049712 + ] + }, + "id": "node/3566910335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3566910336", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0792589, + -26.906173 + ] + }, + "id": "node/3566910336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3566910337", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0809634, + -26.9060085 + ] + }, + "id": "node/3566910337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3567438517", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0842107, + -26.8910741 + ] + }, + "id": "node/3567438517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3567460270", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0779324, + -26.8984923 + ] + }, + "id": "node/3567460270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3569301600", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8951683, + -15.75801 + ] + }, + "id": "node/3569301600" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3579246630", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0657732, + -26.9614965 + ] + }, + "id": "node/3579246630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3587886086", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8705466, + -15.7644645 + ] + }, + "id": "node/3587886086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3592932481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4372768, + -22.6495122 + ] + }, + "id": "node/3592932481" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3592932482" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4372675, + -22.6495849 + ] + }, + "id": "node/3592932482" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3592932483" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4370056, + -22.6495564 + ] + }, + "id": "node/3592932483" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3592932484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.437015, + -22.6494837 + ] + }, + "id": "node/3592932484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3594399974", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "operator": "Sebinho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8779342, + -15.7667742 + ] + }, + "id": "node/3594399974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3594399975", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8739683, + -15.7753102 + ] + }, + "id": "node/3594399975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3594414148", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "operator": "UniCEUB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8937582, + -15.7653815 + ] + }, + "id": "node/3594414148" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3594414149", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "operator": "UniCEUB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8943905, + -15.7665601 + ] + }, + "id": "node/3594414149" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3594414150", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "operator": "UniCEUB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8934712, + -15.766444 + ] + }, + "id": "node/3594414150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3603809714", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1789536, + -22.931316 + ] + }, + "id": "node/3603809714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3603818371", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date": "2025-09-06", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1785352, + -22.9309801 + ] + }, + "id": "node/3603818371" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3603840292", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1780693, + -22.930481 + ] + }, + "id": "node/3603840292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3603840829", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2025-01-04", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1780015, + -22.9310295 + ] + }, + "id": "node/3603840829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3603840831", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1777627, + -22.9312814 + ] + }, + "id": "node/3603840831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3603864593", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1774811, + -22.9301031 + ] + }, + "id": "node/3603864593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3607809765", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0792789, + -22.8265582 + ] + }, + "id": "node/3607809765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3610641524", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0507618, + -22.9089338 + ] + }, + "id": "node/3610641524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3610663565", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0652808, + -22.8218101 + ] + }, + "id": "node/3610663565" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3617464086", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.230685, + -25.3905402 + ] + }, + "id": "node/3617464086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3617638404", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2615081, + -25.4210088 + ] + }, + "id": "node/3617638404" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626002383", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Coisa de Carioca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1870511, + -22.9752661 + ] + }, + "id": "node/3626002383" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626002384", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Coisa de Carioca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1871383, + -22.9754105 + ] + }, + "id": "node/3626002384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626002385", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Coisa de Carioca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1872201, + -22.9755537 + ] + }, + "id": "node/3626002385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626010644", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "name": "Posto Praia Skol 360" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1862733, + -22.9741752 + ] + }, + "id": "node/3626010644" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626010877", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "14", + "check_date": "2025-07-20", + "check_date:fee": "2025-07-20", + "covered": "yes", + "fee": "no", + "operator": "Botafogo Praia Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.184086, + -22.9476622 + ] + }, + "id": "node/3626010877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626025991", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Rota 33" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1880959, + -22.9771258 + ] + }, + "id": "node/3626025991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626025992", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "22", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1882407, + -22.9774172 + ] + }, + "id": "node/3626025992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626031360", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Quiosque Chopp Brahma" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1890031, + -22.9794968 + ] + }, + "id": "node/3626031360" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626109840", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "operator": "Quiosque Chopp Brahma" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1892036, + -22.9802617 + ] + }, + "id": "node/3626109840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626111405", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Botequim Carioca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1894812, + -22.9829533 + ] + }, + "id": "node/3626111405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626111406", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Botequim Carioca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1894571, + -22.9831163 + ] + }, + "id": "node/3626111406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626111407", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Botequim Carioca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1894303, + -22.9832656 + ] + }, + "id": "node/3626111407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626132440", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "yes", + "fee": "no", + "operator": "TopShopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4544327, + -22.7537849 + ] + }, + "id": "node/3626132440" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626139270", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2094487, + -22.9839241 + ] + }, + "id": "node/3626139270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626164037", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2281461, + -22.9888189 + ] + }, + "id": "node/3626164037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626201017", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3569613, + -22.9624848 + ] + }, + "id": "node/3626201017" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626206651", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2024-11-02", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1900938, + -22.9366854 + ] + }, + "id": "node/3626206651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626213393", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1812925, + -22.9321225 + ] + }, + "id": "node/3626213393" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626322722", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3745792, + -22.9234586 + ] + }, + "id": "node/3626322722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626339799", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.348845, + -23.0005642 + ] + }, + "id": "node/3626339799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626377076", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date": "2025-07-09", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.184435, + -22.9331737 + ] + }, + "id": "node/3626377076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626377077", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2024-11-02", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1890644, + -22.9354339 + ] + }, + "id": "node/3626377077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626377078", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1899523, + -22.9364393 + ] + }, + "id": "node/3626377078" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626471938", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2397121, + -22.9319963 + ] + }, + "id": "node/3626471938" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626471939", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2396343, + -22.9317023 + ] + }, + "id": "node/3626471939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626471979", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2236649, + -22.9205275 + ] + }, + "id": "node/3626471979" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626479630", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2176702, + -22.9178555 + ] + }, + "id": "node/3626479630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3626482657", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.32437, + -22.8475219 + ] + }, + "id": "node/3626482657" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627326314", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "yes", + "fee": "no", + "operator": "SESC Copacabana" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1873233, + -22.9732869 + ] + }, + "id": "node/3627326314" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627330840", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1896078, + -22.9357008 + ] + }, + "id": "node/3627330840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627340534", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2098293, + -22.9623046 + ] + }, + "id": "node/3627340534" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627350786", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "7", + "covered": "no", + "fee": "no", + "operator": "Edifício General Caldwell" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.192045, + -22.9080839 + ] + }, + "id": "node/3627350786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627538511", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1869273, + -22.934173 + ] + }, + "id": "node/3627538511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627617000", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Hospital Lourenço Jorge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3628595, + -22.9952059 + ] + }, + "id": "node/3627617000" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627633044", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3166809, + -23.0074333 + ] + }, + "id": "node/3627633044" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627644472", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3143635, + -23.0060458 + ] + }, + "id": "node/3627644472" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627645285", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3124242, + -23.0061544 + ] + }, + "id": "node/3627645285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627656156", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20", + "covered": "no", + "operator": "Country Clube Quintas do Rio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3839088, + -22.9845663 + ] + }, + "id": "node/3627656156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3627662054", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no", + "operator": "Escola Britânica" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3922416, + -22.9953238 + ] + }, + "id": "node/3627662054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3634570436", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8855968, + -15.8040658 + ] + }, + "id": "node/3634570436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3653387385", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8855854, + -15.8093802 + ] + }, + "id": "node/3653387385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676821493", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Senai" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2323199, + -22.915725 + ] + }, + "id": "node/3676821493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676842661", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "7", + "covered": "no", + "operator": "Academia Physical" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2335833, + -22.9177903 + ] + }, + "id": "node/3676842661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676843179", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date": "2025-08-12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1767335, + -22.9313025 + ] + }, + "id": "node/3676843179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676845691", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1766825, + -22.9256431 + ] + }, + "id": "node/3676845691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676861622", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2025-03-23", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1768944, + -22.9207023 + ] + }, + "id": "node/3676861622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676861623", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1769105, + -22.9204503 + ] + }, + "id": "node/3676861623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676865961", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Refúgio Hostel & Bistrô" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1831949, + -22.9327723 + ] + }, + "id": "node/3676865961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676874031", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1781482, + -22.9070035 + ] + }, + "id": "node/3676874031" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676874032", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1779497, + -22.9074606 + ] + }, + "id": "node/3676874032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676889557", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1918756, + -22.938363 + ] + }, + "id": "node/3676889557" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676889559", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1921813, + -22.9385557 + ] + }, + "id": "node/3676889559" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676891220", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1983021, + -22.9406108 + ] + }, + "id": "node/3676891220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676891221", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1993697, + -22.9401143 + ] + }, + "id": "node/3676891221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676891222", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1996298, + -22.9400106 + ] + }, + "id": "node/3676891222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676905055", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3558813, + -22.9887056 + ] + }, + "id": "node/3676905055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3676905056", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3544114, + -22.9889451 + ] + }, + "id": "node/3676905056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3678126582", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "3", + "covered": "no", + "free": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7167338, + -29.7018294 + ] + }, + "id": "node/3678126582" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3684586852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2013269, + -30.023838 + ] + }, + "id": "node/3684586852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3684845720", + "access": "permissive", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no", + "name": "Bicicletário do SESC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0753659, + -22.904759 + ] + }, + "id": "node/3684845720" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3685461892", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8829988, + -15.7870775 + ] + }, + "id": "node/3685461892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3697056680" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0488141, + -10.9092782 + ] + }, + "id": "node/3697056680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3697056681" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0488309, + -10.9092634 + ] + }, + "id": "node/3697056681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3697056682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0488734, + -10.9093086 + ] + }, + "id": "node/3697056682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3709920610", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1773221, + -22.9340334 + ] + }, + "id": "node/3709920610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3709920612", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1772431, + -22.9351596 + ] + }, + "id": "node/3709920612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3709920614", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1771905, + -22.9360434 + ] + }, + "id": "node/3709920614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3716152860", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "sett" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.545934, + -27.58973 + ] + }, + "id": "node/3716152860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3717065214", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "name": "Bicicletário da Geografia" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5735138, + -3.7459898 + ] + }, + "id": "node/3717065214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3717693353", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913702, + -8.0923353 + ] + }, + "id": "node/3717693353" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3718586691", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "operator": "Club Fitness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.916976, + -8.0955433 + ] + }, + "id": "node/3718586691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3718670770", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9147823, + -8.1342568 + ] + }, + "id": "node/3718670770" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3720515981", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "check_date": "2025-06-21", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.870791, + -8.0627541 + ] + }, + "id": "node/3720515981" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3720546957", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8742595, + -8.0650003 + ] + }, + "id": "node/3720546957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3720546958", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8744554, + -8.0641911 + ] + }, + "id": "node/3720546958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3722249885", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1300008, + -21.7735192 + ] + }, + "id": "node/3722249885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3732309100", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "yes", + "fee": "no", + "note": "Posição aproximada, verificar in loco" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3650713, + -22.9995558 + ] + }, + "id": "node/3732309100" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3732335100", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "18", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0016729, + -22.8192278 + ] + }, + "id": "node/3732335100" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3732344779", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1772802, + -22.930555 + ] + }, + "id": "node/3732344779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3732361784", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "29", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.5403075, + -23.0124276 + ] + }, + "id": "node/3732361784" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3732364023", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2987771, + -22.9694288 + ] + }, + "id": "node/3732364023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3733443680", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.087284, + -26.9142723 + ] + }, + "id": "node/3733443680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3738891860", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2274511, + -22.988424 + ] + }, + "id": "node/3738891860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756403712", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6368563, + -23.5494154 + ] + }, + "id": "node/3756403712" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756623655", + "amenity": "bicycle_parking", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6503077, + -23.5668157 + ] + }, + "id": "node/3756623655" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756623657", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.647531, + -23.568909 + ] + }, + "id": "node/3756623657" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756623658", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.646692, + -23.5695838 + ] + }, + "id": "node/3756623658" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710171", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6523427, + -23.5650626 + ] + }, + "id": "node/3756710171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710172", + "amenity": "bicycle_parking", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6492232, + -23.5676065 + ] + }, + "id": "node/3756710172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710173", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6486955, + -23.5680783 + ] + }, + "id": "node/3756710173" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710175", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6462622, + -23.5699117 + ] + }, + "id": "node/3756710175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710176", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6456552, + -23.5699773 + ] + }, + "id": "node/3756710176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710177", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6440949, + -23.5709299 + ] + }, + "id": "node/3756710177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710267", + "amenity": "bicycle_parking", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6498212, + -23.567188 + ] + }, + "id": "node/3756710267" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710268", + "amenity": "bicycle_parking", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6492931, + -23.5672452 + ] + }, + "id": "node/3756710268" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710269", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6479207, + -23.5682583 + ] + }, + "id": "node/3756710269" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710270", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6465067, + -23.5693117 + ] + }, + "id": "node/3756710270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710271", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6458865, + -23.5702179 + ] + }, + "id": "node/3756710271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3756710272", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447634, + -23.5706972 + ] + }, + "id": "node/3756710272" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3757483592", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402207, + -23.5699695 + ] + }, + "id": "node/3757483592" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3757483593", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402247, + -23.5698028 + ] + }, + "id": "node/3757483593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3757483594", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6399451, + -23.5707822 + ] + }, + "id": "node/3757483594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3757483595", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6406038, + -23.5772857 + ] + }, + "id": "node/3757483595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3757483596", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.641037, + -23.5776409 + ] + }, + "id": "node/3757483596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3757650400", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6397094, + -23.571823 + ] + }, + "id": "node/3757650400" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3759018561", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6410256, + -23.5755069 + ] + }, + "id": "node/3759018561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3759018562", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402968, + -23.5740956 + ] + }, + "id": "node/3759018562" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3759018566", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6583341, + -23.5599344 + ] + }, + "id": "node/3759018566" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3765422583", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "check_date": "2022-03-23", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.233261, + -25.452797 + ] + }, + "id": "node/3765422583" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3768730375", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8834313, + -15.7830895 + ] + }, + "id": "node/3768730375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3772348324", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.930183, + -8.0654948 + ] + }, + "id": "node/3772348324" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3772348325", + "amenity": "bicycle_parking", + "capacity": "10", + "name": "Academia Chesf" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9310761, + -8.0657909 + ] + }, + "id": "node/3772348325" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3772678365", + "amenity": "bicycle_parking", + "capacity": "5", + "description": "Para clientes em compras no Rede Super" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7188683, + -29.7013516 + ] + }, + "id": "node/3772678365" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3782844523", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "11", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4584652, + -22.9859463 + ] + }, + "id": "node/3782844523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3784459013", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "check_date:capacity": "2023-10-04", + "covered": "no", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8703606, + -15.7651474 + ] + }, + "id": "node/3784459013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3798565894", + "amenity": "bicycle_parking", + "covered": "no", + "name": "Paraciclo Centro de Cidadania" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9130509, + -22.4883959 + ] + }, + "id": "node/3798565894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3799986157", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2023-10-04", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8702478, + -15.7655212 + ] + }, + "id": "node/3799986157" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3803032520", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "name": "Turma da Bike" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.6679823, + -10.9158503 + ] + }, + "id": "node/3803032520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3809963426", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "name": "Cais do Sertão" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8704502, + -8.0612281 + ] + }, + "id": "node/3809963426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3816955889", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8799097, + -15.7706487 + ] + }, + "id": "node/3816955889" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3816955891", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8708618, + -15.7570648 + ] + }, + "id": "node/3816955891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3826768957", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "yes", + "operator": "Laboratório Sabin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8935527, + -15.7571257 + ] + }, + "id": "node/3826768957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3828870564", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.549313, + -23.6931568 + ] + }, + "id": "node/3828870564" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3837420191", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.2774537, + -7.026688 + ] + }, + "id": "node/3837420191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3837420192", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.2768267, + -7.0263602 + ] + }, + "id": "node/3837420192" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3838718798", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8657855, + -15.7679322 + ] + }, + "id": "node/3838718798" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3841243530", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8713189, + -15.7631323 + ] + }, + "id": "node/3841243530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3845294668", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1942902, + -21.7840744 + ] + }, + "id": "node/3845294668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3853310366", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2020-12-18", + "covered": "no", + "name": "Bicicletário do Edf. Parnamirim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9131265, + -8.0322838 + ] + }, + "id": "node/3853310366" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3869788783", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "name": "Bicicletário Alepe", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8802284, + -8.0583607 + ] + }, + "id": "node/3869788783" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3869788784", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "name": "Bicicletário Fundarpe", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880563, + -8.0596271 + ] + }, + "id": "node/3869788784" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3869788785", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "name": "Bicicletário Parque 13 de Maio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8819687, + -8.0579171 + ] + }, + "id": "node/3869788785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3869788786", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "lit": "yes", + "name": "Bicicletário Prefeitura", + "supervised": "yes", + "surface": "gravel" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8725299, + -8.0547014 + ] + }, + "id": "node/3869788786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3869788787", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "name": "Bicicletário TRT", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8722868, + -8.0559436 + ] + }, + "id": "node/3869788787" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3871132827", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8889123, + -15.7527822 + ] + }, + "id": "node/3871132827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874035861", + "addr:city": "Rio de Janeiro", + "addr:housenumber": "952", + "addr:postcode": "20960-005", + "addr:street": "Rua Ana Neri", + "addr:suburb": "São Francisco Xavier", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "yes", + "name": "Rio Bike Shop", + "phone": "+55 21 976881670" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2449982, + -22.9000491 + ] + }, + "id": "node/3874035861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874074212", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1729334, + -22.9276956 + ] + }, + "id": "node/3874074212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874074213", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1730031, + -22.9280488 + ] + }, + "id": "node/3874074213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874074214", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1731104, + -22.9285454 + ] + }, + "id": "node/3874074214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874074215", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1732124, + -22.9289456 + ] + }, + "id": "node/3874074215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874074220", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.173384, + -22.9295063 + ] + }, + "id": "node/3874074220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874095763", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2070604, + -22.9605364 + ] + }, + "id": "node/3874095763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874100410", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2048023, + -22.9604306 + ] + }, + "id": "node/3874100410" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874106730", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2074199, + -22.9605784 + ] + }, + "id": "node/3874106730" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874112675", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2081011, + -22.9606821 + ] + }, + "id": "node/3874112675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874112676", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2080475, + -22.9604549 + ] + }, + "id": "node/3874112676" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874112677", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2088348, + -22.960359 + ] + }, + "id": "node/3874112677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874112678", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2074601, + -22.9600178 + ] + }, + "id": "node/3874112678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874119671", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2553185, + -22.9986694 + ] + }, + "id": "node/3874119671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874132420", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1866209, + -22.9691025 + ] + }, + "id": "node/3874132420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874135687", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1850062, + -22.9680455 + ] + }, + "id": "node/3874135687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874138858", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1909634, + -22.9730537 + ] + }, + "id": "node/3874138858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874138859", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1925083, + -22.9756442 + ] + }, + "id": "node/3874138859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874142799", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0877848, + -22.8814079 + ] + }, + "id": "node/3874142799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3874152762", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0281778, + -22.9547509 + ] + }, + "id": "node/3874152762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3887695870", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5328453, + -13.0036946 + ] + }, + "id": "node/3887695870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890396036", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1736333, + -22.9183529 + ] + }, + "id": "node/3890396036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890396038", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1728251, + -22.9183666 + ] + }, + "id": "node/3890396038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890413205", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1706748, + -22.9245882 + ] + }, + "id": "node/3890413205" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890413206", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1706748, + -22.9248698 + ] + }, + "id": "node/3890413206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890413207", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1697495, + -22.9247315 + ] + }, + "id": "node/3890413207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890413210", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1702092, + -22.9258337 + ] + }, + "id": "node/3890413210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890413211", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1711402, + -22.9261853 + ] + }, + "id": "node/3890413211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890413212", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1709197, + -22.9262464 + ] + }, + "id": "node/3890413212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890417387", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1687088, + -22.9220882 + ] + }, + "id": "node/3890417387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890417388", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1684647, + -22.9217967 + ] + }, + "id": "node/3890417388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890417391", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1690413, + -22.9230467 + ] + }, + "id": "node/3890417391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890417394", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.169371, + -22.9239087 + ] + }, + "id": "node/3890417394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818316", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.170538, + -22.9266596 + ] + }, + "id": "node/3890818316" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818318", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1714602, + -22.9273095 + ] + }, + "id": "node/3890818318" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818319", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1715738, + -22.9272314 + ] + }, + "id": "node/3890818319" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818320", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1715948, + -22.9275872 + ] + }, + "id": "node/3890818320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818321", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "§0", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1714859, + -22.9276565 + ] + }, + "id": "node/3890818321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818325", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.17134, + -22.9276737 + ] + }, + "id": "node/3890818325" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818326", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1716183, + -22.9279534 + ] + }, + "id": "node/3890818326" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818328", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.171652, + -22.9281606 + ] + }, + "id": "node/3890818328" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818335", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1716765, + -22.9283294 + ] + }, + "id": "node/3890818335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818336", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1718999, + -22.9284214 + ] + }, + "id": "node/3890818336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818337", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1717962, + -22.9287831 + ] + }, + "id": "node/3890818337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818338", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1715476, + -22.9286666 + ] + }, + "id": "node/3890818338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818339", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1714527, + -22.9288979 + ] + }, + "id": "node/3890818339" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818340", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1719266, + -22.9289427 + ] + }, + "id": "node/3890818340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818345", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1719907, + -22.9292619 + ] + }, + "id": "node/3890818345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818346", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1717853, + -22.9293562 + ] + }, + "id": "node/3890818346" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818348", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1722064, + -22.9295783 + ] + }, + "id": "node/3890818348" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818349", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1719677, + -22.9296066 + ] + }, + "id": "node/3890818349" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818350", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1722037, + -22.9298821 + ] + }, + "id": "node/3890818350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890818351", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1719033, + -22.9302304 + ] + }, + "id": "node/3890818351" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890930995", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1720562, + -22.9301958 + ] + }, + "id": "node/3890930995" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890930996", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1720908, + -22.931032 + ] + }, + "id": "node/3890930996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890930997", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1721527, + -22.9318855 + ] + }, + "id": "node/3890930997" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890930998", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1721696, + -22.9326877 + ] + }, + "id": "node/3890930998" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890930999", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1724445, + -22.9328212 + ] + }, + "id": "node/3890930999" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931000", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1728179, + -22.9332158 + ] + }, + "id": "node/3890931000" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931001", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1728048, + -22.9334613 + ] + }, + "id": "node/3890931001" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931002", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1728304, + -22.9337213 + ] + }, + "id": "node/3890931002" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931003", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1729761, + -22.9342668 + ] + }, + "id": "node/3890931003" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931012", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1727165, + -22.9349484 + ] + }, + "id": "node/3890931012" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931013", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1725953, + -22.9346249 + ] + }, + "id": "node/3890931013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931014", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1718121, + -22.9346595 + ] + }, + "id": "node/3890931014" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931015", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1716324, + -22.9349683 + ] + }, + "id": "node/3890931015" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931017", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1714366, + -22.9352771 + ] + }, + "id": "node/3890931017" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931018", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1711093, + -22.9355092 + ] + }, + "id": "node/3890931018" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931022", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1718469, + -22.9364306 + ] + }, + "id": "node/3890931022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931023", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1709296, + -22.9361367 + ] + }, + "id": "node/3890931023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931024", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1712059, + -22.9365764 + ] + }, + "id": "node/3890931024" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931025", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1700123, + -22.9357736 + ] + }, + "id": "node/3890931025" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931026", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1687525, + -22.9381558 + ] + }, + "id": "node/3890931026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931027", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1691567, + -22.9389032 + ] + }, + "id": "node/3890931027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931028", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1690467, + -22.9388983 + ] + }, + "id": "node/3890931028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931030", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1697641, + -22.9390244 + ] + }, + "id": "node/3890931030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931031", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1697643, + -22.9393765 + ] + }, + "id": "node/3890931031" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931032", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1700098, + -22.9400819 + ] + }, + "id": "node/3890931032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931033", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1700693, + -22.9403996 + ] + }, + "id": "node/3890931033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890931034", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1704139, + -22.9409224 + ] + }, + "id": "node/3890931034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986469", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1791905, + -22.9427736 + ] + }, + "id": "node/3890986469" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986490", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1796445, + -22.9430135 + ] + }, + "id": "node/3890986490" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986491", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.180203, + -22.9435523 + ] + }, + "id": "node/3890986491" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986498", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1806751, + -22.9440389 + ] + }, + "id": "node/3890986498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986499", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1811029, + -22.9446959 + ] + }, + "id": "node/3890986499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986500", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1812625, + -22.9450417 + ] + }, + "id": "node/3890986500" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1815254, + -22.9460297 + ] + }, + "id": "node/3890986505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986506", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1815388, + -22.946231 + ] + }, + "id": "node/3890986506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986513", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1808776, + -22.9480995 + ] + }, + "id": "node/3890986513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3890986514", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1807153, + -22.9484206 + ] + }, + "id": "node/3890986514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3901355012", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "72", + "covered": "yes", + "surveillance": "indoor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4703368, + -12.9409522 + ] + }, + "id": "node/3901355012" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3930720267", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2178944, + -22.9810582 + ] + }, + "id": "node/3930720267" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933855754" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4537595, + -23.4851567 + ] + }, + "id": "node/3933855754" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933855755" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4538976, + -23.4851697 + ] + }, + "id": "node/3933855755" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933855756" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4540427, + -23.4852346 + ] + }, + "id": "node/3933855756" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867857" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541311, + -23.4853158 + ] + }, + "id": "node/3933867857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541878, + -23.4854132 + ] + }, + "id": "node/3933867858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867859" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4542055, + -23.4855333 + ] + }, + "id": "node/3933867859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867860" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541913, + -23.4856404 + ] + }, + "id": "node/3933867860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541524, + -23.4857475 + ] + }, + "id": "node/3933867861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867862" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4540922, + -23.4858319 + ] + }, + "id": "node/3933867862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867863" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541418, + -23.485926 + ] + }, + "id": "node/3933867863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867864" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541807, + -23.4860267 + ] + }, + "id": "node/3933867864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541984, + -23.4861565 + ] + }, + "id": "node/3933867865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.454163, + -23.4862506 + ] + }, + "id": "node/3933867866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867867" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4541135, + -23.486348 + ] + }, + "id": "node/3933867867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867868" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4540214, + -23.4864162 + ] + }, + "id": "node/3933867868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867869" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4539082, + -23.4864778 + ] + }, + "id": "node/3933867869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867870" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4537808, + -23.4865103 + ] + }, + "id": "node/3933867870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.453664, + -23.4865071 + ] + }, + "id": "node/3933867871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4535507, + -23.4864616 + ] + }, + "id": "node/3933867872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4534693, + -23.4864064 + ] + }, + "id": "node/3933867873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867874" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.453395, + -23.4863318 + ] + }, + "id": "node/3933867874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867875" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4533561, + -23.4862279 + ] + }, + "id": "node/3933867875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867876" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.453349, + -23.4861046 + ] + }, + "id": "node/3933867876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867877" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4533596, + -23.4859812 + ] + }, + "id": "node/3933867877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867878" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4534021, + -23.4858968 + ] + }, + "id": "node/3933867878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867879" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4534587, + -23.4858319 + ] + }, + "id": "node/3933867879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867880" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4533915, + -23.485741 + ] + }, + "id": "node/3933867880" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867881" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4533525, + -23.4856404 + ] + }, + "id": "node/3933867881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867882" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4533348, + -23.4855105 + ] + }, + "id": "node/3933867882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867883" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4533631, + -23.4854002 + ] + }, + "id": "node/3933867883" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867884" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4534127, + -23.4853255 + ] + }, + "id": "node/3933867884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4534941, + -23.4852411 + ] + }, + "id": "node/3933867885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3933867886" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4536321, + -23.485173 + ] + }, + "id": "node/3933867886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3942297109", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8830659, + -15.7976335 + ] + }, + "id": "node/3942297109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3942297110", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8832262, + -15.7997129 + ] + }, + "id": "node/3942297110" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3952828261", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.202825, + -22.9612767 + ] + }, + "id": "node/3952828261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3952837857", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1924337, + -22.9863484 + ] + }, + "id": "node/3952837857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3952841364", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1832443, + -22.906704 + ] + }, + "id": "node/3952841364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3952844113", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1889788, + -22.9550143 + ] + }, + "id": "node/3952844113" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3952853208", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "30", + "covered": "yes", + "fee": "no", + "operator": "Prefeitura do Rio de Janeiro" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2047225, + -22.9110041 + ] + }, + "id": "node/3952853208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3956094541", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4349685, + -23.019772 + ] + }, + "id": "node/3956094541" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3960113703", + "amenity": "bicycle_parking", + "layer": "-1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4429626, + -23.0109117 + ] + }, + "id": "node/3960113703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3967342683" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3167539, + -20.3917745 + ] + }, + "id": "node/3967342683" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3967342686" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3167327, + -20.3917825 + ] + }, + "id": "node/3967342686" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3967342722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.316866, + -20.3920366 + ] + }, + "id": "node/3967342722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3969268702", + "amenity": "bicycle_parking", + "capacity": "30", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4916336, + -22.9793452 + ] + }, + "id": "node/3969268702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3969268703", + "amenity": "bicycle_parking", + "capacity": "30", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4914254, + -22.9792747 + ] + }, + "id": "node/3969268703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3969333099", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "description": "Paraciclos do tipo \"u\" invertido patrocinados pela CDL. Uso gratuito.", + "name": "Praça do Ferreira" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5279238, + -3.7279776 + ] + }, + "id": "node/3969333099" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3971325068", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8830204, + -15.7833102 + ] + }, + "id": "node/3971325068" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3973507958", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8881033, + -15.7813106 + ] + }, + "id": "node/3973507958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3975082980", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.2572187, + -18.917497 + ] + }, + "id": "node/3975082980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3987084954", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8742749, + -15.7729948 + ] + }, + "id": "node/3987084954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3989110820", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8956064, + -15.7485721 + ] + }, + "id": "node/3989110820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3989110821", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8878083, + -15.7768752 + ] + }, + "id": "node/3989110821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4032671831", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3512885, + -20.4463914 + ] + }, + "id": "node/4032671831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4035357135", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8848438, + -15.7805519 + ] + }, + "id": "node/4035357135" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4043721948", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "33", + "covered": "no", + "fee": "no", + "operator": "Extra" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7823068, + -22.3769332 + ] + }, + "id": "node/4043721948" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044427014", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1967325, + -22.9838203 + ] + }, + "id": "node/4044427014" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044488453", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2007907, + -22.9842731 + ] + }, + "id": "node/4044488453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044489343", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2007853, + -22.9842286 + ] + }, + "id": "node/4044489343" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044494372", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2118396, + -22.9838074 + ] + }, + "id": "node/4044494372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044508434", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2111557, + -22.9838346 + ] + }, + "id": "node/4044508434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044520009", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2089241, + -22.9839479 + ] + }, + "id": "node/4044520009" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044522389", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2104127, + -22.9838922 + ] + }, + "id": "node/4044522389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044561304", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2072558, + -22.9840442 + ] + }, + "id": "node/4044561304" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044563569", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2071431, + -22.9840171 + ] + }, + "id": "node/4044563569" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044607214", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2063143, + -22.9842195 + ] + }, + "id": "node/4044607214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044849084", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5103998, + -13.0106733 + ] + }, + "id": "node/4044849084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044849085", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4911126, + -13.0130803 + ] + }, + "id": "node/4044849085" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044851162", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4932137, + -13.0112754 + ] + }, + "id": "node/4044851162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044851163", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4882758, + -13.0138742 + ] + }, + "id": "node/4044851163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4044851247", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4918962, + -13.0124577 + ] + }, + "id": "node/4044851247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4047736745", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3062045, + -20.3370974 + ] + }, + "id": "node/4047736745" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4047736746", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "56", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3052356, + -20.3380889 + ] + }, + "id": "node/4047736746" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4055130773", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "name": "Bicicletário Skina Center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.511852, + -3.7424157 + ] + }, + "id": "node/4055130773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4060084900", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "description": "Bicicletário ao ar livre, do tipo \"u\" invertido.", + "operator": "Pátio Dom Luís", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4907097, + -3.736101 + ] + }, + "id": "node/4060084900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4060117271", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "operator": "Le Pain Le Cafe", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4916804, + -3.735324 + ] + }, + "id": "node/4060117271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4063540479", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.87544, + -15.7667371 + ] + }, + "id": "node/4063540479" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4077481841", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7055525, + -23.5720783 + ] + }, + "id": "node/4077481841" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094230551", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2082391, + -22.983988 + ] + }, + "id": "node/4094230551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094238389", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2056021, + -22.984269 + ] + }, + "id": "node/4094238389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094242544", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.204143, + -22.9843283 + ] + }, + "id": "node/4094242544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094255394", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2044112, + -22.9843184 + ] + }, + "id": "node/4094255394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094285233", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2037299, + -22.9841999 + ] + }, + "id": "node/4094285233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094285234", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2079211, + -22.9840135 + ] + }, + "id": "node/4094285234" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094291061", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2031146, + -22.9843822 + ] + }, + "id": "node/4094291061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094291972", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2021718, + -22.9842063 + ] + }, + "id": "node/4094291972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094293108", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2047106, + -22.9843085 + ] + }, + "id": "node/4094293108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094294831", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2024676, + -22.984229 + ] + }, + "id": "node/4094294831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094297696", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2004427, + -22.9845272 + ] + }, + "id": "node/4094297696" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094304008", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2000718, + -22.9845524 + ] + }, + "id": "node/4094304008" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094313580", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1999896, + -22.9844339 + ] + }, + "id": "node/4094313580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094321999", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1989395, + -22.9846257 + ] + }, + "id": "node/4094321999" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094335561", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1975467, + -22.9845733 + ] + }, + "id": "node/4094335561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094345089", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2008412, + -22.984675 + ] + }, + "id": "node/4094345089" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094355473", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1991836, + -22.9844306 + ] + }, + "id": "node/4094355473" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094356213", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2039518, + -22.9843621 + ] + }, + "id": "node/4094356213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094375375", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2003802, + -22.9844178 + ] + }, + "id": "node/4094375375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094378017", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1966327, + -22.9846292 + ] + }, + "id": "node/4094378017" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094380389", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1963531, + -22.9847498 + ] + }, + "id": "node/4094380389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094390327", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1954825, + -22.9847987 + ] + }, + "id": "node/4094390327" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094397591", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1980751, + -22.9845515 + ] + }, + "id": "node/4094397591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094400791", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2017893, + -22.9842839 + ] + }, + "id": "node/4094400791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094406461", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1996446, + -22.9843914 + ] + }, + "id": "node/4094406461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094408555", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2008019, + -22.9843034 + ] + }, + "id": "node/4094408555" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094409475", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2012266, + -22.9843295 + ] + }, + "id": "node/4094409475" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094428174", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2027449, + -22.9843914 + ] + }, + "id": "node/4094428174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094428675", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2084346, + -22.9839819 + ] + }, + "id": "node/4094428675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094430769", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2082902, + -22.9841051 + ] + }, + "id": "node/4094430769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094431203", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2038995, + -22.9841837 + ] + }, + "id": "node/4094431203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094446061", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2082027, + -22.9839801 + ] + }, + "id": "node/4094446061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094446108", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2083851, + -22.9840023 + ] + }, + "id": "node/4094446108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094462888", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2139339, + -22.9849015 + ] + }, + "id": "node/4094462888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094465992", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2139285, + -22.9847878 + ] + }, + "id": "node/4094465992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094489938", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1912731, + -22.943017 + ] + }, + "id": "node/4094489938" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4094489939", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1912901, + -22.943059 + ] + }, + "id": "node/4094489939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4096399602", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.899265, + -15.8140442 + ] + }, + "id": "node/4096399602" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4100497432", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8801243, + -8.0578231 + ] + }, + "id": "node/4100497432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4104012952", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-16:00", + "operator": "Centro Administrativo Sicredi", + "supervised": "no", + "website": "https://www.sicredi.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1480525, + -30.0102384 + ] + }, + "id": "node/4104012952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4112191245", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7184399, + -29.7055802 + ] + }, + "id": "node/4112191245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4117559554", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4857373, + -23.0203045 + ] + }, + "id": "node/4117559554" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4124207004", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "disused:amenity": "bicycle_rental", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6390193, + -23.549579 + ] + }, + "id": "node/4124207004" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4127185546", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8782335, + -15.7874034 + ] + }, + "id": "node/4127185546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4133573865", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8944905, + -15.8195513 + ] + }, + "id": "node/4133573865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4133574489", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8752572, + -15.7733804 + ] + }, + "id": "node/4133574489" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4145019823" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2513149, + -21.1217952 + ] + }, + "id": "node/4145019823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4148003550" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2488962, + -21.1046985 + ] + }, + "id": "node/4148003550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4148003551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2488824, + -21.1046751 + ] + }, + "id": "node/4148003551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149054974" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2508226, + -21.1236095 + ] + }, + "id": "node/4149054974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149054975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2508976, + -21.1237727 + ] + }, + "id": "node/4149054975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149105204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.251354, + -21.1218298 + ] + }, + "id": "node/4149105204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149105205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2511226, + -21.1216412 + ] + }, + "id": "node/4149105205" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149105211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2508803, + -21.1237784 + ] + }, + "id": "node/4149105211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149105212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2508034, + -21.1236172 + ] + }, + "id": "node/4149105212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119837" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2487313, + -21.1042191 + ] + }, + "id": "node/4149119837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119839" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2483929, + -21.1043591 + ] + }, + "id": "node/4149119839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2483866, + -21.1043449 + ] + }, + "id": "node/4149119840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119842" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2503934, + -21.1041659 + ] + }, + "id": "node/4149119842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2503784, + -21.1042176 + ] + }, + "id": "node/4149119843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2503242, + -21.1042387 + ] + }, + "id": "node/4149119844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119845" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.250371, + -21.1041714 + ] + }, + "id": "node/4149119845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119846" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2493631, + -21.105491 + ] + }, + "id": "node/4149119846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149119847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.249382, + -21.1054587 + ] + }, + "id": "node/4149119847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149157193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2606887, + -21.1397909 + ] + }, + "id": "node/4149157193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149157194" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2607239, + -21.1398487 + ] + }, + "id": "node/4149157194" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149157195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2606603, + -21.1398768 + ] + }, + "id": "node/4149157195" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149157196" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2606318, + -21.1398159 + ] + }, + "id": "node/4149157196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149178266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2493179, + -21.1054045 + ] + }, + "id": "node/4149178266" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149178267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2492922, + -21.105431 + ] + }, + "id": "node/4149178267" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149844996" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2489615, + -21.1046345 + ] + }, + "id": "node/4149844996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4149844997" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2489759, + -21.1046602 + ] + }, + "id": "node/4149844997" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158118076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2501477, + -21.103308 + ] + }, + "id": "node/4158118076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158118077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.250165, + -21.103325 + ] + }, + "id": "node/4158118077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158118078" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2500929, + -21.1034189 + ] + }, + "id": "node/4158118078" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158118079" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2500705, + -21.1034028 + ] + }, + "id": "node/4158118079" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158205425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2511042, + -21.1216573 + ] + }, + "id": "node/4158205425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158205426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2513333, + -21.1218519 + ] + }, + "id": "node/4158205426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158587256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6664304, + -23.5625549 + ] + }, + "id": "node/4158587256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158587282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6664194, + -23.5625646 + ] + }, + "id": "node/4158587282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158587725" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6665474, + -23.5626857 + ] + }, + "id": "node/4158587725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158667350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2344537, + -30.0307601 + ] + }, + "id": "node/4158667350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158667379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2345672, + -30.0308003 + ] + }, + "id": "node/4158667379" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4158667461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.234766, + -30.0308706 + ] + }, + "id": "node/4158667461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159663789", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0960155, + -22.8808226 + ] + }, + "id": "node/4159663789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159700636", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3737886, + -22.9251676 + ] + }, + "id": "node/4159700636" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159713059", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "6", + "fee": "no", + "operator": "Escola Municipal Altivo César" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0995665, + -22.8645146 + ] + }, + "id": "node/4159713059" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159720968", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "fee": "no", + "operator": "Escola Municipal Francisco Portugal Neves" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0568207, + -22.9421273 + ] + }, + "id": "node/4159720968" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159727606", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "10", + "fee": "no", + "operator": "Escola Municipal João Brazil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0689991, + -22.8686166 + ] + }, + "id": "node/4159727606" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159882292", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "10", + "fee": "no", + "operator": "Escola Municipal Rachide da Gloria Salim Sacker" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0490399, + -22.8761211 + ] + }, + "id": "node/4159882292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159957674", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Quiosque Coco Verde" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1729282, + -22.965193 + ] + }, + "id": "node/4159957674" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159971030", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1742009, + -22.9657585 + ] + }, + "id": "node/4159971030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159971032", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1743323, + -22.9658153 + ] + }, + "id": "node/4159971032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159971033", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1746341, + -22.9659511 + ] + }, + "id": "node/4159971033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159971034", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1747575, + -22.9660055 + ] + }, + "id": "node/4159971034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159982666", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1754937, + -22.9663599 + ] + }, + "id": "node/4159982666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4159982667", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1756426, + -22.9664278 + ] + }, + "id": "node/4159982667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160001296", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.177272, + -22.9672576 + ] + }, + "id": "node/4160001296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160001297", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1770226, + -22.9671328 + ] + }, + "id": "node/4160001297" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160011409", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1778407, + -22.9675625 + ] + }, + "id": "node/4160011409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160011410", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1783543, + -22.9678515 + ] + }, + "id": "node/4160011410" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160025838", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "Pente", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.179163, + -22.9683121 + ] + }, + "id": "node/4160025838" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160025839", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1790812, + -22.9682676 + ] + }, + "id": "node/4160025839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160025840", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1795653, + -22.9685652 + ] + }, + "id": "node/4160025840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160067904", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1808313, + -22.969348 + ] + }, + "id": "node/4160067904" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160075789", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1809708, + -22.9694295 + ] + }, + "id": "node/4160075789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160075790", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1814469, + -22.9697592 + ] + }, + "id": "node/4160075790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160090592", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.182033, + -22.9701543 + ] + }, + "id": "node/4160090592" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160090593", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "Pente", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1823307, + -22.9703494 + ] + }, + "id": "node/4160090593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160090594", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "Pente", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1829342, + -22.9708051 + ] + }, + "id": "node/4160090594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160101689", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1828899, + -22.970752 + ] + }, + "id": "node/4160101689" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160101690", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1833964, + -22.9711394 + ] + }, + "id": "node/4160101690" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160111498", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1834746, + -22.9712385 + ] + }, + "id": "node/4160111498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160111499", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1838488, + -22.9715706 + ] + }, + "id": "node/4160111499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160111500", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1840674, + -22.9717472 + ] + }, + "id": "node/4160111500" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4160111501", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1843753, + -22.9720842 + ] + }, + "id": "node/4160111501" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4172805316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2346523, + -30.0308304 + ] + }, + "id": "node/4172805316" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4178363256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.248368, + -21.1045239 + ] + }, + "id": "node/4178363256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4178363257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2483772, + -21.1045406 + ] + }, + "id": "node/4178363257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4178363258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2482945, + -21.1045884 + ] + }, + "id": "node/4178363258" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4178363259" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2482816, + -21.1045705 + ] + }, + "id": "node/4178363259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4187246377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2346098, + -30.0308154 + ] + }, + "id": "node/4187246377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4192625665" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2491888, + -21.1040693 + ] + }, + "id": "node/4192625665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4192625666" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2492026, + -21.1040914 + ] + }, + "id": "node/4192625666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4192625668" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.249144, + -21.104089 + ] + }, + "id": "node/4192625668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4196222585", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "yes", + "name": "Engenharia Civil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5753326, + -3.7435252 + ] + }, + "id": "node/4196222585" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4198104196", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "name": "Mercadinho São Luiz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4920294, + -3.733003 + ] + }, + "id": "node/4198104196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4201149583", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "name": "Parque Pajeú", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5230989, + -3.7313933 + ] + }, + "id": "node/4201149583" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209353783", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.185511, + -22.9732221 + ] + }, + "id": "node/4209353783" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209359832", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1855938, + -22.9732989 + ] + }, + "id": "node/4209359832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209375350", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1872827, + -22.9755284 + ] + }, + "id": "node/4209375350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209391031", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1876488, + -22.9762677 + ] + }, + "id": "node/4209391031" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209395924", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1883355, + -22.9775542 + ] + }, + "id": "node/4209395924" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209404279", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1891133, + -22.9799693 + ] + }, + "id": "node/4209404279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209409568", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1886305, + -22.9783815 + ] + }, + "id": "node/4209409568" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209413444", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1889363, + -22.9792803 + ] + }, + "id": "node/4209413444" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209418778", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1893601, + -22.9809027 + ] + }, + "id": "node/4209418778" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209422089", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1895049, + -22.9818583 + ] + }, + "id": "node/4209422089" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209464607", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1893574, + -22.9836115 + ] + }, + "id": "node/4209464607" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209476847", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.189124, + -22.9844758 + ] + }, + "id": "node/4209476847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209541422", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1754253, + -22.9646071 + ] + }, + "id": "node/4209541422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209548589", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1822158, + -22.9676583 + ] + }, + "id": "node/4209548589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209562049", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1911358, + -22.9807547 + ] + }, + "id": "node/4209562049" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209566127", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1912283, + -22.9812068 + ] + }, + "id": "node/4209566127" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209574217", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1898295, + -22.984748 + ] + }, + "id": "node/4209574217" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209579786", + "amenity": "bicycle_rental", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.190393, + -22.9838584 + ] + }, + "id": "node/4209579786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4209587387", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1899551, + -22.9758126 + ] + }, + "id": "node/4209587387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4212956089", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "400", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6380012, + -23.5441402 + ] + }, + "id": "node/4212956089" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4217582994", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1910174, + -22.9798188 + ] + }, + "id": "node/4217582994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4218527491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7299521, + -23.5583603 + ] + }, + "id": "node/4218527491" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4218527492" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7299643, + -23.5583812 + ] + }, + "id": "node/4218527492" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4223040982", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "32", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8675188, + -15.7613365 + ] + }, + "id": "node/4223040982" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4226630656" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7256759, + -23.5581832 + ] + }, + "id": "node/4226630656" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4226630659" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7256291, + -23.5582043 + ] + }, + "id": "node/4226630659" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4226630660" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7256879, + -23.5582057 + ] + }, + "id": "node/4226630660" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4226630661" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7256411, + -23.5582268 + ] + }, + "id": "node/4226630661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4226633289" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7300202, + -23.5583271 + ] + }, + "id": "node/4226633289" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4226633290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7300324, + -23.558348 + ] + }, + "id": "node/4226633290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4228139811", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0210055, + -15.8292853 + ] + }, + "id": "node/4228139811" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4228583027", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "name": "Leroy Merlin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4836298, + -3.7579262 + ] + }, + "id": "node/4228583027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4228585384", + "access": "permissive", + "amenity": "bicycle_parking", + "covered": "yes", + "name": "Shopping Iguatemi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4899002, + -3.7551316 + ] + }, + "id": "node/4228585384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4230590434", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "name": "Canteiro Central" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4871812, + -3.7671858 + ] + }, + "id": "node/4230590434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4230590435", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "name": "Ayo Fitness Club" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.486529, + -3.7675648 + ] + }, + "id": "node/4230590435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4234199311", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5757012, + -3.7472938 + ] + }, + "id": "node/4234199311" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4234208803", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6112979, + -3.8722937 + ] + }, + "id": "node/4234208803" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4239682796", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0657019, + -26.9208012 + ] + }, + "id": "node/4239682796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4243856721", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "name": "Casa de Moá" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5032416, + -3.7484786 + ] + }, + "id": "node/4243856721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4244754829", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0652164, + -26.9202234 + ] + }, + "id": "node/4244754829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4247627528", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5195358, + -12.9895049 + ] + }, + "id": "node/4247627528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4247769552", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6345061, + -23.5522108 + ] + }, + "id": "node/4247769552" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4248789526", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "yes", + "operator": "Reserva Open Mall" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4819466, + -3.7835238 + ] + }, + "id": "node/4248789526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4254609507", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "operator": "Mercadinhos São Luiz" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4891066, + -3.7460744 + ] + }, + "id": "node/4254609507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4255537340", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4335588, + -12.9799798 + ] + }, + "id": "node/4255537340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4255537341", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4937946, + -13.0111781 + ] + }, + "id": "node/4255537341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4256900572", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4688533, + -12.9957161 + ] + }, + "id": "node/4256900572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4261582139", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3078708, + -20.3373183 + ] + }, + "id": "node/4261582139" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4261582140", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3079264, + -20.337532 + ] + }, + "id": "node/4261582140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4263612421", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4193946, + -12.9755759 + ] + }, + "id": "node/4263612421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264550865", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.179558, + -22.8953481 + ] + }, + "id": "node/4264550865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264550866", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1794386, + -22.8950577 + ] + }, + "id": "node/4264550866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264550869", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1793291, + -22.894783 + ] + }, + "id": "node/4264550869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264550872", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1790301, + -22.894038 + ] + }, + "id": "node/4264550872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264550879", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1791246, + -22.8942681 + ] + }, + "id": "node/4264550879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264550881", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "9", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1792182, + -22.8945045 + ] + }, + "id": "node/4264550881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264830966", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1752744, + -22.9115183 + ] + }, + "id": "node/4264830966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264830968", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1754513, + -22.9110359 + ] + }, + "id": "node/4264830968" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264830969", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1771793, + -22.906511 + ] + }, + "id": "node/4264830969" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264830970", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1764906, + -22.9083179 + ] + }, + "id": "node/4264830970" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4264928277", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bicycle_parking:pt": "U invertido", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2532101, + -22.993274 + ] + }, + "id": "node/4264928277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4270037929", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4811028, + -3.7686729 + ] + }, + "id": "node/4270037929" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4270037930", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4815204, + -3.7695115 + ] + }, + "id": "node/4270037930" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4270037931", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4807659, + -3.7711978 + ] + }, + "id": "node/4270037931" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4271605805", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4432956, + -23.0094688 + ] + }, + "id": "node/4271605805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4286448025", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3051246, + -20.3365333 + ] + }, + "id": "node/4286448025" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293267197", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1713829, + -22.9034776 + ] + }, + "id": "node/4293267197" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293267198", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1703018, + -22.9042928 + ] + }, + "id": "node/4293267198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293267199", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1705423, + -22.9054349 + ] + }, + "id": "node/4293267199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293267200", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1707547, + -22.9060522 + ] + }, + "id": "node/4293267200" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293267204", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.171586, + -22.9052134 + ] + }, + "id": "node/4293267204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293267209", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.172755, + -22.902539 + ] + }, + "id": "node/4293267209" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293267210", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1729302, + -22.9022602 + ] + }, + "id": "node/4293267210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293295590", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "22", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.177314, + -22.912874 + ] + }, + "id": "node/4293295590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293334869", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1792843, + -22.9656058 + ] + }, + "id": "node/4293334869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293342539", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1853478, + -22.9698389 + ] + }, + "id": "node/4293342539" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293544300", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2416834, + -22.9799407 + ] + }, + "id": "node/4293544300" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293548347", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "yes", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5385112, + -22.9177145 + ] + }, + "id": "node/4293548347" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293565065", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4053573, + -22.8312699 + ] + }, + "id": "node/4293565065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293613191", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1857292, + -22.9035494 + ] + }, + "id": "node/4293613191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293626701", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "Galeria R1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9620847, + -22.9637808 + ] + }, + "id": "node/4293626701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293643792", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Centro de Operações Rio", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2035304, + -22.9120899 + ] + }, + "id": "node/4293643792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293651752", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1809774, + -22.9544529 + ] + }, + "id": "node/4293651752" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293696118", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "52", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3110395, + -23.0072246 + ] + }, + "id": "node/4293696118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4293790126", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8941406, + -15.7561859 + ] + }, + "id": "node/4293790126" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4299301918", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Boulevard Strip Center Assis Brasil", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1438549, + -30.0091428 + ] + }, + "id": "node/4299301918" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306259825", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1851815, + -22.9558902 + ] + }, + "id": "node/4306259825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306259826", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1859754, + -22.9562039 + ] + }, + "id": "node/4306259826" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306279953", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "pente" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1813805, + -22.8962861 + ] + }, + "id": "node/4306279953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306279954", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "pente" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1803666, + -22.896721 + ] + }, + "id": "node/4306279954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306336178", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "28", + "covered": "yes", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.215723, + -22.9838776 + ] + }, + "id": "node/4306336178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306341522", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "28", + "covered": "yes", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2154548, + -22.9835369 + ] + }, + "id": "node/4306341522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306355540", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2077288, + -22.9623045 + ] + }, + "id": "node/4306355540" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306357942", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2079247, + -22.9620451 + ] + }, + "id": "node/4306357942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306365069", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2225566, + -22.9652944 + ] + }, + "id": "node/4306365069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306365070", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2227025, + -22.9653428 + ] + }, + "id": "node/4306365070" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306380876", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2223714, + -22.9649688 + ] + }, + "id": "node/4306380876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306380877", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2223955, + -22.9648774 + ] + }, + "id": "node/4306380877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306391155", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.184513, + -22.9674842 + ] + }, + "id": "node/4306391155" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306391156", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1848107, + -22.9670817 + ] + }, + "id": "node/4306391156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306401666", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1733994, + -22.9643006 + ] + }, + "id": "node/4306401666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306425322", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "26", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2236978, + -22.9846141 + ] + }, + "id": "node/4306425322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306425323", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2237405, + -22.9852838 + ] + }, + "id": "node/4306425323" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4307016068", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1734757, + -22.9020735 + ] + }, + "id": "node/4307016068" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4307827473", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.941745, + -15.7993423 + ] + }, + "id": "node/4307827473" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4309962485", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "name": "Bicicletário Del Paseo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4968376, + -3.7357247 + ] + }, + "id": "node/4309962485" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4313207578", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "40", + "covered": "yes", + "maxstay": "48 hours", + "name": "Terminal Conjunto Ceará", + "opening_hours": "4:00-22:00", + "operator": "Prefeitura Municipal de Fortaleza" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6079985, + -3.7728115 + ] + }, + "id": "node/4313207578" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326186912", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3199061, + -22.8341044 + ] + }, + "id": "node/4326186912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326221327", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3293902, + -22.9732127 + ] + }, + "id": "node/4326221327" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326227455", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1989598, + -22.7985163 + ] + }, + "id": "node/4326227455" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326241182", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1868861, + -22.9694745 + ] + }, + "id": "node/4326241182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326246963", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1870082, + -22.9695609 + ] + }, + "id": "node/4326246963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326256919", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1835642, + -22.9683904 + ] + }, + "id": "node/4326256919" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326256922", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1832987, + -22.9682113 + ] + }, + "id": "node/4326256922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326274689", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1834569, + -22.9684879 + ] + }, + "id": "node/4326274689" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298251", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2268743, + -22.9748178 + ] + }, + "id": "node/4326298251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298252", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2270365, + -22.9742326 + ] + }, + "id": "node/4326298252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298253", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2271693, + -22.9740455 + ] + }, + "id": "node/4326298253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298259", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2270553, + -22.9739023 + ] + }, + "id": "node/4326298259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298260", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2275274, + -22.9740196 + ] + }, + "id": "node/4326298260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298261", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2276092, + -22.9738158 + ] + }, + "id": "node/4326298261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298262", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.227003, + -22.9750617 + ] + }, + "id": "node/4326298262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298263", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2271599, + -22.9750407 + ] + }, + "id": "node/4326298263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4326298264", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2274027, + -22.9753 + ] + }, + "id": "node/4326298264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4341202004", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.7922802, + -23.1883458 + ] + }, + "id": "node/4341202004" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4356496541", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "fee": "no", + "surface": "paved" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4883947, + -13.0151963 + ] + }, + "id": "node/4356496541" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4359446808", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3628125, + -22.9933583 + ] + }, + "id": "node/4359446808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4369941145", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1679512, + -22.9631608 + ] + }, + "id": "node/4369941145" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4371138007", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8915519, + -15.7626778 + ] + }, + "id": "node/4371138007" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4371179591", + "amenity": "bicycle_parking", + "capacity": "50", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4915268, + -22.9794564 + ] + }, + "id": "node/4371179591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4371179592", + "amenity": "bicycle_parking", + "capacity": "46", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.491417, + -22.9790824 + ] + }, + "id": "node/4371179592" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4371179593", + "amenity": "bicycle_parking", + "capacity": "34", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4913439, + -22.9791224 + ] + }, + "id": "node/4371179593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4371179594", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4913567, + -22.9789886 + ] + }, + "id": "node/4371179594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4371338070", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2023-04-11", + "covered": "no", + "name": "Espaço Meireles" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4912796, + -3.7314875 + ] + }, + "id": "node/4371338070" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4374472191", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5160009, + -23.4509972 + ] + }, + "id": "node/4374472191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4375642208", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Portugal", + "operator": "Prefeitura Municipal de Fortaleza" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4976714, + -3.7331719 + ] + }, + "id": "node/4375642208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4382675506", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "yes", + "operator": "Colégio Mallet Soares", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1919618, + -22.9758232 + ] + }, + "id": "node/4382675506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4385246512", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "name": "Centro Empresarial Consorte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.507052, + -3.7318958 + ] + }, + "id": "node/4385246512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4389519285", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8895166, + -15.7808674 + ] + }, + "id": "node/4389519285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4392042990", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4974987, + -3.7327777 + ] + }, + "id": "node/4392042990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4392042991", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "check_date:capacity": "2023-04-12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4970404, + -3.7329022 + ] + }, + "id": "node/4392042991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395020413", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.231622, + -22.9249046 + ] + }, + "id": "node/4395020413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395047074", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2038247, + -22.9845616 + ] + }, + "id": "node/4395047074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395047075", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2060896, + -22.9833497 + ] + }, + "id": "node/4395047075" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395047076", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2062507, + -22.983756 + ] + }, + "id": "node/4395047076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395047077", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.206685, + -22.9839275 + ] + }, + "id": "node/4395047077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395069512", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2172298, + -22.9837464 + ] + }, + "id": "node/4395069512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395075794", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2233178, + -22.9852885 + ] + }, + "id": "node/4395075794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395086232", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Golden Center", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3272261, + -23.0024564 + ] + }, + "id": "node/4395086232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395120639", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "38", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3108506, + -23.0061515 + ] + }, + "id": "node/4395120639" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4395131452", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "26", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2751966, + -23.0026172 + ] + }, + "id": "node/4395131452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4400995347", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2175781, + -22.9640692 + ] + }, + "id": "node/4400995347" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4400995348", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2172857, + -22.9639013 + ] + }, + "id": "node/4400995348" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4400995349", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2170497, + -22.9639507 + ] + }, + "id": "node/4400995349" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4400995350", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2166956, + -22.9633234 + ] + }, + "id": "node/4400995350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4400995352", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.216583, + -22.963211 + ] + }, + "id": "node/4400995352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4400995353", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2164663, + -22.9630073 + ] + }, + "id": "node/4400995353" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4400995354", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2166688, + -22.9627838 + ] + }, + "id": "node/4400995354" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4401025493", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "pente" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1775901, + -22.8956626 + ] + }, + "id": "node/4401025493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261312", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2358573, + -22.9135958 + ] + }, + "id": "node/4407261312" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261313", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2361335, + -22.913686 + ] + }, + "id": "node/4407261313" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261316", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.236906, + -22.9138256 + ] + }, + "id": "node/4407261316" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261317", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2377388, + -22.9142703 + ] + }, + "id": "node/4407261317" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261318", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2402266, + -22.9148002 + ] + }, + "id": "node/4407261318" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261319", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2407577, + -22.9147187 + ] + }, + "id": "node/4407261319" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261320", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Hortifruti", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2407872, + -22.9149942 + ] + }, + "id": "node/4407261320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261321", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.241109, + -22.914988 + ] + }, + "id": "node/4407261321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261323", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2424153, + -22.9150386 + ] + }, + "id": "node/4407261323" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261324", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2432427, + -22.9152079 + ] + }, + "id": "node/4407261324" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261326", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2437161, + -22.915471 + ] + }, + "id": "node/4407261326" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261329", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2441466, + -22.9155599 + ] + }, + "id": "node/4407261329" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261331", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.244329, + -22.9153919 + ] + }, + "id": "node/4407261331" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261332", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2451082, + -22.9155303 + ] + }, + "id": "node/4407261332" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261334", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2455883, + -22.9156513 + ] + }, + "id": "node/4407261334" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261335", + "amenity": "clock", + "bicycle_parking": "stands", + "capacity": "4", + "check_date": "2024-01-22", + "covered": "no", + "display": "digital", + "faces": "2", + "fee": "no", + "pt:bicycle_parking": "U invertido", + "support": "pole", + "visibility": "area" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2454677, + -22.9158138 + ] + }, + "id": "node/4407261335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261336", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2425842, + -22.9152906 + ] + }, + "id": "node/4407261336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261337", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2418426, + -22.9151486 + ] + }, + "id": "node/4407261337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261338", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2462374, + -22.9159675 + ] + }, + "id": "node/4407261338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261339", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2467551, + -22.9160627 + ] + }, + "id": "node/4407261339" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261340", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2474645, + -22.9161899 + ] + }, + "id": "node/4407261340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407261341", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2478387, + -22.9162615 + ] + }, + "id": "node/4407261341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4414816244", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8668802, + -15.7726358 + ] + }, + "id": "node/4414816244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4418003590", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4655212, + -23.5664673 + ] + }, + "id": "node/4418003590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4418003591", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4649114, + -23.5666517 + ] + }, + "id": "node/4418003591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4419015550", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4817894, + -3.7712356 + ] + }, + "id": "node/4419015550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4419015551", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "note": "verificar localização exata" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4820398, + -3.7683627 + ] + }, + "id": "node/4419015551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425666560", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1825831, + -22.9457083 + ] + }, + "id": "node/4425666560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425671022", + "amenity": "bicycle_parking", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.90283, + -15.8100337 + ] + }, + "id": "node/4425671022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425691830", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1693478, + -22.9048741 + ] + }, + "id": "node/4425691830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425693527", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1737412, + -22.902123 + ] + }, + "id": "node/4425693527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425696599", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1826046, + -22.9460714 + ] + }, + "id": "node/4425696599" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425696600", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1826073, + -22.9463629 + ] + }, + "id": "node/4425696600" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425698565", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1826073, + -22.9466667 + ] + }, + "id": "node/4425698565" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425705802", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1825724, + -22.9472175 + ] + }, + "id": "node/4425705802" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425706681", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1825456, + -22.9480498 + ] + }, + "id": "node/4425706681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425710340", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1830699, + -22.9491168 + ] + }, + "id": "node/4425710340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425713583", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1839832, + -22.9494997 + ] + }, + "id": "node/4425713583" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425713584", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1845036, + -22.9495145 + ] + }, + "id": "node/4425713584" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4425715734", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1826462, + -22.9490613 + ] + }, + "id": "node/4425715734" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4426498250", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "name": "Nova Acrópole" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4992067, + -3.7489438 + ] + }, + "id": "node/4426498250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4427984766", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1820573, + -22.9439382 + ] + }, + "id": "node/4427984766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4427984767", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1823818, + -22.9449312 + ] + }, + "id": "node/4427984767" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4427984768", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "operator": "http://www.itaucinemas.com.br/pag/rio-de-janeiro-botafogo", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1824489, + -22.9451263 + ] + }, + "id": "node/4427984768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4427984769", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1825052, + -22.9453733 + ] + }, + "id": "node/4427984769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428021140", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "operator": "Bossa Nova Mall" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1656429, + -22.9152548 + ] + }, + "id": "node/4428021140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428105152", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1765685, + -22.8988392 + ] + }, + "id": "node/4428105152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428110505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1923869, + -22.9553905 + ] + }, + "id": "node/4428110505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428110506", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.192554, + -22.9554187 + ] + }, + "id": "node/4428110506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428122387", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1841974, + -22.9490081 + ] + }, + "id": "node/4428122387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428122388", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1847983, + -22.9492921 + ] + }, + "id": "node/4428122388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133489", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.185035, + -22.9494277 + ] + }, + "id": "node/4428133489" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133490", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1853716, + -22.9493563 + ] + }, + "id": "node/4428133490" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133491", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1860408, + -22.9493489 + ] + }, + "id": "node/4428133491" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133492", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1863157, + -22.9495119 + ] + }, + "id": "node/4428133492" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133494", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1873966, + -22.9495613 + ] + }, + "id": "node/4428133494" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133496", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1879006, + -22.9494543 + ] + }, + "id": "node/4428133496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133498", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1880526, + -22.9494548 + ] + }, + "id": "node/4428133498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133500", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1880846, + -22.949612 + ] + }, + "id": "node/4428133500" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133501", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1890422, + -22.9495774 + ] + }, + "id": "node/4428133501" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133502", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1904798, + -22.9498478 + ] + }, + "id": "node/4428133502" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133503", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1907467, + -22.9498997 + ] + }, + "id": "node/4428133503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133504", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.192859, + -22.9504789 + ] + }, + "id": "node/4428133504" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date:capacity": "2021-11-03", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1885178, + -22.9529821 + ] + }, + "id": "node/4428133505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133506", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date:capacity": "2025-06-29", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1875388, + -22.9526339 + ] + }, + "id": "node/4428133506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133507", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.187406, + -22.9526018 + ] + }, + "id": "node/4428133507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133508", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date:capacity": "2025-06-29", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.183372, + -22.9511013 + ] + }, + "id": "node/4428133508" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133509", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date:capacity": "2025-06-29", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1828476, + -22.9509334 + ] + }, + "id": "node/4428133509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133510", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1826009, + -22.9508469 + ] + }, + "id": "node/4428133510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133511", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date:capacity": "2025-06-29", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1826397, + -22.9506814 + ] + }, + "id": "node/4428133511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133512", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date:capacity": "2025-06-29", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1827081, + -22.9508877 + ] + }, + "id": "node/4428133512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133513", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1820684, + -22.9506543 + ] + }, + "id": "node/4428133513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133514", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1820939, + -22.9505678 + ] + }, + "id": "node/4428133514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133515", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1817493, + -22.9505468 + ] + }, + "id": "node/4428133515" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4428133516", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1818203, + -22.950248 + ] + }, + "id": "node/4428133516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4435220028", + "access": "customers", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8725131, + -15.7749768 + ] + }, + "id": "node/4435220028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4443989832", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "Blue Atlantic Center", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4652346, + -23.0144802 + ] + }, + "id": "node/4443989832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444003735", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4730546, + -23.0290621 + ] + }, + "id": "node/4444003735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444003736", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "11", + "covered": "no", + "fee": "no", + "operator": "Supermercado Atlântico", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4722714, + -23.0301013 + ] + }, + "id": "node/4444003736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444008505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3620815, + -22.9163925 + ] + }, + "id": "node/4444008505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444049198", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1828645, + -22.9128743 + ] + }, + "id": "node/4444049198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444049199", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1827827, + -22.9130761 + ] + }, + "id": "node/4444049199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059952", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1769832, + -22.9082466 + ] + }, + "id": "node/4444059952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059953", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1740799, + -22.9118102 + ] + }, + "id": "node/4444059953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059954", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1743964, + -22.9111209 + ] + }, + "id": "node/4444059954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059955", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date:capacity": "2025-03-26", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1745602, + -22.9109112 + ] + }, + "id": "node/4444059955" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059956", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1747209, + -22.9102092 + ] + }, + "id": "node/4444059956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059957", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1749677, + -22.9095446 + ] + }, + "id": "node/4444059957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059958", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1750804, + -22.9090678 + ] + }, + "id": "node/4444059958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059959", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1751233, + -22.9089492 + ] + }, + "id": "node/4444059959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059960", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.175413, + -22.9083908 + ] + }, + "id": "node/4444059960" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059961", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1759065, + -22.9070542 + ] + }, + "id": "node/4444059961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059962", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1744554, + -22.9066589 + ] + }, + "id": "node/4444059962" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444059963", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1745761, + -22.9066787 + ] + }, + "id": "node/4444059963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444162622", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1751982, + -22.9050127 + ] + }, + "id": "node/4444162622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444162623", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1748871, + -22.9048126 + ] + }, + "id": "node/4444162623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4444182857", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1771213, + -22.9014301 + ] + }, + "id": "node/4444182857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4451150540", + "amenity": "bicycle_parking", + "name": "Pista de Ciclismo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0175621, + -16.0153906 + ] + }, + "id": "node/4451150540" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4465521641", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3508608, + -22.8570883 + ] + }, + "id": "node/4465521641" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4465524702", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4666311, + -23.0167853 + ] + }, + "id": "node/4465524702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471375906", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1843024, + -22.949034 + ] + }, + "id": "node/4471375906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471377177", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1807331, + -22.9422141 + ] + }, + "id": "node/4471377177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471380199", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2410416, + -22.9322898 + ] + }, + "id": "node/4471380199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471380200", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2412213, + -22.9324775 + ] + }, + "id": "node/4471380200" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471380201", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2410336, + -22.9327246 + ] + }, + "id": "node/4471380201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471380202", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2408512, + -22.9325665 + ] + }, + "id": "node/4471380202" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471387719", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1963802, + -22.9530686 + ] + }, + "id": "node/4471387719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471387720", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1965975, + -22.9535231 + ] + }, + "id": "node/4471387720" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472448026", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1683567, + -22.9064707 + ] + }, + "id": "node/4472448026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472462992", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2503159, + -22.9166765 + ] + }, + "id": "node/4472462992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472462993", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2504849, + -22.9172521 + ] + }, + "id": "node/4472462993" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472468213", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1755154, + -22.9006865 + ] + }, + "id": "node/4472468213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472500528", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1723712, + -22.9041837 + ] + }, + "id": "node/4472500528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472515695", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1745773, + -22.9011664 + ] + }, + "id": "node/4472515695" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472521239", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1840081, + -22.9511864 + ] + }, + "id": "node/4472521239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4491489217", + "access": "destination", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7188095, + -29.7018423 + ] + }, + "id": "node/4491489217" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4497223492", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "source": "Mapillary" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.4853642, + -20.6524577 + ] + }, + "id": "node/4497223492" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4497631865", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4813381, + -27.6684667 + ] + }, + "id": "node/4497631865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507066551", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1927273, + -22.9549718 + ] + }, + "id": "node/4507066551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507073846", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1757194, + -22.899879 + ] + }, + "id": "node/4507073846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507093015", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.189415, + -22.9567316 + ] + }, + "id": "node/4507093015" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507103037", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2228185, + -22.9080248 + ] + }, + "id": "node/4507103037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507116453", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1929238, + -22.9541612 + ] + }, + "id": "node/4507116453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507122721", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1933273, + -22.9545301 + ] + }, + "id": "node/4507122721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507122722", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1933149, + -22.9546719 + ] + }, + "id": "node/4507122722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507122723", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1937779, + -22.9546818 + ] + }, + "id": "node/4507122723" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4507122724", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1939261, + -22.9548891 + ] + }, + "id": "node/4507122724" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4516187374", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1764466, + -22.900581 + ] + }, + "id": "node/4516187374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4517440687", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5333322, + -13.0044115 + ] + }, + "id": "node/4517440687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4518877916", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Santa Casa de Misericórdia", + "supervised": "no", + "website": "https://www.santacasa.org.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2209959, + -30.030155 + ] + }, + "id": "node/4518877916" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4524215246", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.465304, + -1.3891346 + ] + }, + "id": "node/4524215246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4525520844", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.215685, + -22.9645338 + ] + }, + "id": "node/4525520844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4526925297", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6417012, + -23.5475885 + ] + }, + "id": "node/4526925297" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4526925298", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6425381, + -23.547436 + ] + }, + "id": "node/4526925298" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4527340446", + "amenity": "bicycle_parking", + "name": "Bicicletario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7141233, + -23.2165862 + ] + }, + "id": "node/4527340446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4528328313", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7117301, + -23.220004 + ] + }, + "id": "node/4528328313" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4529252019", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "45", + "covered": "no", + "name": "Bicicletário Vale Sul Shopping", + "operator": "Vale Sul Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8915231, + -23.219382 + ] + }, + "id": "node/4529252019" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4530075518", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "operator": "DeRose Method Vila Mariana" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448332, + -23.5944295 + ] + }, + "id": "node/4530075518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4539929907", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1788199, + -21.7826169 + ] + }, + "id": "node/4539929907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4539929908", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1788293, + -21.7825858 + ] + }, + "id": "node/4539929908" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4543829634", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4657485, + -23.0188043 + ] + }, + "id": "node/4543829634" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4544750284", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7210539, + -29.7012738 + ] + }, + "id": "node/4544750284" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545672761", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1925833, + -22.9549813 + ] + }, + "id": "node/4545672761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545672762", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1926097, + -22.954918 + ] + }, + "id": "node/4545672762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545689578", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1941312, + -22.9548084 + ] + }, + "id": "node/4545689578" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545689579", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1948907, + -22.9550762 + ] + }, + "id": "node/4545689579" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545689580", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1958164, + -22.9553938 + ] + }, + "id": "node/4545689580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545701015", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1763805, + -22.9000329 + ] + }, + "id": "node/4545701015" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545715726", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "yes", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3622276, + -22.9891393 + ] + }, + "id": "node/4545715726" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4545719589", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1964799, + -22.9558387 + ] + }, + "id": "node/4545719589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4549148127", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4969753, + -3.7389924 + ] + }, + "id": "node/4549148127" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4559179501", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5090116, + -13.0006051 + ] + }, + "id": "node/4559179501" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4559179502", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "name": "Paraciclo - BB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5116553, + -13.006137 + ] + }, + "id": "node/4559179502" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4560096152", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8410687, + -26.2948094 + ] + }, + "id": "node/4560096152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4567978266", + "bicycle_parking": "floor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2818586, + -22.6282356 + ] + }, + "id": "node/4567978266" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4576296313", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2390288, + -22.8399026 + ] + }, + "id": "node/4576296313" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4585589499", + "access": "permissive", + "addr:city": "Fortaleza", + "addr:housenumber": "777", + "addr:street": "Rua Princesa Isabel", + "addr:suburb": "Centro", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "name": "Bandeira Cabeleireiros" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5357334, + -3.7277727 + ] + }, + "id": "node/4585589499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4586895990", + "access": "permissive", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3350322, + -25.4793412 + ] + }, + "id": "node/4586895990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4594130352", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3220118, + -25.4711934 + ] + }, + "id": "node/4594130352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4594130361", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3215425, + -25.4705462 + ] + }, + "id": "node/4594130361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4594130379", + "amenity": "bicycle_parking", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3276901, + -25.4739043 + ] + }, + "id": "node/4594130379" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4595460791", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3244421, + -25.4740581 + ] + }, + "id": "node/4595460791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4605907689", + "amenity": "bicycle_parking", + "operator": "Entrada Cachoeira" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.7552722, + -20.1062956 + ] + }, + "id": "node/4605907689" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4608400440", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1242358, + -22.8924171 + ] + }, + "id": "node/4608400440" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4609514929", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0957461, + -22.8890931 + ] + }, + "id": "node/4609514929" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4609554038", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Plaza D'España", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.031306, + -22.8754724 + ] + }, + "id": "node/4609554038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4609616624", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2799105, + -22.9012227 + ] + }, + "id": "node/4609616624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4609616626", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2800902, + -22.9011683 + ] + }, + "id": "node/4609616626" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4609616627", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2806817, + -22.9011078 + ] + }, + "id": "node/4609616627" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4609637917", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "40", + "covered": "no", + "fee": "no", + "operator": "UFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1251043, + -22.8965543 + ] + }, + "id": "node/4609637917" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4612972005", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.183966, + -22.9455907 + ] + }, + "id": "node/4612972005" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4612989265", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "yes", + "fee": "no", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1814612, + -22.9427543 + ] + }, + "id": "node/4612989265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613007249", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1730928, + -22.9117975 + ] + }, + "id": "node/4613007249" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613015990", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "layer": "-1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3454656, + -22.9994646 + ] + }, + "id": "node/4613015990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613015991", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "layer": "-1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3464527, + -22.9994597 + ] + }, + "id": "node/4613015991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613015992", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "layer": "-1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.346678, + -22.9985215 + ] + }, + "id": "node/4613015992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613015993", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "layer": "-1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3463776, + -22.9976919 + ] + }, + "id": "node/4613015993" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613015994", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "layer": "-1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3463508, + -22.9967438 + ] + }, + "id": "node/4613015994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613015995", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "layer": "-1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3455622, + -22.9966252 + ] + }, + "id": "node/4613015995" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613015996", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "layer": "-1", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.345648, + -22.9976079 + ] + }, + "id": "node/4613015996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613031992", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.186358, + -22.8946352 + ] + }, + "id": "node/4613031992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613040465", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1774711, + -22.9407036 + ] + }, + "id": "node/4613040465" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613058496", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1848826, + -22.9496258 + ] + }, + "id": "node/4613058496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613058497", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.184786, + -22.9501259 + ] + }, + "id": "node/4613058497" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613058498", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1847458, + -22.9503297 + ] + }, + "id": "node/4613058498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613058499", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1846425, + -22.9507422 + ] + }, + "id": "node/4613058499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4613058500", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1845567, + -22.9511299 + ] + }, + "id": "node/4613058500" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4614624290", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6322043, + -26.9880145 + ] + }, + "id": "node/4614624290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4621614013", + "amenity": "bicycle_parking", + "bicycle_parking": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4625144, + -23.0137032 + ] + }, + "id": "node/4621614013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4645660659", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no", + "operator": "Up Life" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4874156, + -23.0217227 + ] + }, + "id": "node/4645660659" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4654642847", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.2326823, + -31.761387 + ] + }, + "id": "node/4654642847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4659462390", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9391203, + -19.9320569 + ] + }, + "id": "node/4659462390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4665656048", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2681065, + -20.3246852 + ] + }, + "id": "node/4665656048" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4668169259", + "access": "customers", + "addr:housenumber": "165", + "addr:street": "Rua Padre Jacobs", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "coffee": "yes", + "contact:facebook": "https://www.facebook.com/estacaobikecafe", + "contact:phone": "+55 47 3037-3939", + "covered": "yes", + "description": "O Estação Bike Café é um empreendimento que pretende trazer um novo conceito para a cidade de Blumenau, acreditamos que através da bicicleta podemos tornar nossa cidade muito melhor.", + "fee": "yes", + "lit": "yes", + "name": "Estação Bike Café", + "service:bicycle:rental": "yes", + "short_name": "EBC", + "shower": "yes", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.06663, + -26.9209628 + ] + }, + "id": "node/4668169259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4678927275", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3261926, + -25.4774004 + ] + }, + "id": "node/4678927275" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4684412836", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2713561, + -25.4279247 + ] + }, + "id": "node/4684412836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4688964646", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2731776, + -25.4248088 + ] + }, + "id": "node/4688964646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4688964647", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2741392, + -25.4238906 + ] + }, + "id": "node/4688964647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4690893214", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "44", + "covered": "no", + "fee": "no", + "lit": "yes", + "motorcycle": "permissive", + "operator": "Universidade Federal da Fronteira Sul", + "operator:short": "UFFS", + "ownership": "national" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.7055326, + -27.1141032 + ] + }, + "id": "node/4690893214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4691064730", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2836981, + -20.3363877 + ] + }, + "id": "node/4691064730" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4693815350", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8983917, + -15.7336226 + ] + }, + "id": "node/4693815350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4693991120", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8995876, + -15.7890718 + ] + }, + "id": "node/4693991120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4708417487", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8358951, + -26.2954192 + ] + }, + "id": "node/4708417487" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4708496567", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8786722, + -23.1849077 + ] + }, + "id": "node/4708496567" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4708496568", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8851317, + -23.1839478 + ] + }, + "id": "node/4708496568" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4708496569", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8844694, + -23.1825083 + ] + }, + "id": "node/4708496569" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4708496570", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8856624, + -23.1810163 + ] + }, + "id": "node/4708496570" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4723166750", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "name": "Bicicletário Grupo Manga" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5014833, + -3.7369034 + ] + }, + "id": "node/4723166750" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4725024251", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1737463, + -26.7385766 + ] + }, + "id": "node/4725024251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4727745560", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4828223, + -23.0203264 + ] + }, + "id": "node/4727745560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4727745561", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4824053, + -23.0203505 + ] + }, + "id": "node/4727745561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4731267152", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1756009, + -26.7412402 + ] + }, + "id": "node/4731267152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4735329531", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1727296, + -26.7258235 + ] + }, + "id": "node/4735329531" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4735329532", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1727638, + -26.7258777 + ] + }, + "id": "node/4735329532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4750000212", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4892968, + -23.0223972 + ] + }, + "id": "node/4750000212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4751916558", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1769612, + -26.7373199 + ] + }, + "id": "node/4751916558" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4756270429", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "26", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4733713, + -12.9968219 + ] + }, + "id": "node/4756270429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4770278721", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1767677, + -26.7350934 + ] + }, + "id": "node/4770278721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4773598310", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 14:00-20:00", + "operator": "Paseo Zona Sul", + "supervised": "no", + "website": "https://paseozonasul.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2539447, + -30.1046867 + ] + }, + "id": "node/4773598310" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4781686385", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2318559, + -25.4515394 + ] + }, + "id": "node/4781686385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4783262103", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1022371, + -15.7943624 + ] + }, + "id": "node/4783262103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4785159998", + "amenity": "bicycle_parking", + "operator": "ASBAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8713102, + -15.8172411 + ] + }, + "id": "node/4785159998" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787231143", + "amenity": "bicycle_parking", + "capacity": "12", + "lit": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4473909, + -23.4695013 + ] + }, + "id": "node/4787231143" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362622", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Lojas Colombo", + "supervised": "no", + "website": "https://www.colombo.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0739431, + -29.9978418 + ] + }, + "id": "node/4787362622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362623", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-18:00", + "operator": "Foro Regional do 4º Distrito", + "supervised": "yes", + "website": "http://www.tjrs.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1969813, + -29.9986036 + ] + }, + "id": "node/4787362623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362624", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 09:00-24:00", + "operator": "Boulevard Deville", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1233852, + -30.002618 + ] + }, + "id": "node/4787362624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362625", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "35", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-23:00; Su 09:00-21:00", + "operator": "Bourbon Shopping Assis Brasil", + "supervised": "yes", + "website": "https://www.bourbonshopping.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.183755, + -30.0049497 + ] + }, + "id": "node/4787362625" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362626", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-23:00; Su 09:00-21:00", + "operator": "Bourbon Shopping Assis Brasil", + "supervised": "no", + "website": "https://www.bourbonshopping.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1847465, + -30.0071837 + ] + }, + "id": "node/4787362626" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362627", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Nacional", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1435142, + -30.0100629 + ] + }, + "id": "node/4787362627" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362628", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Colégio Salesiano Dom Bosco", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1805235, + -30.0117665 + ] + }, + "id": "node/4787362628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362629", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-20:30; Su 08:00-12:30", + "operator": "UniSuper São Geraldo", + "supervised": "no", + "website": "https://www.unisuper.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1979049, + -30.0121814 + ] + }, + "id": "node/4787362629" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362630", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro de Ensino Pastor Dohms Higienópolis", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1875744, + -30.0125691 + ] + }, + "id": "node/4787362630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362631", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2113488, + -30.013903 + ] + }, + "id": "node/4787362631" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362632", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-22:45", + "operator": "Escola Técnica Irmão Pedro", + "supervised": "yes", + "website": "https://irmaopedro.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2025806, + -30.0173788 + ] + }, + "id": "node/4787362632" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362633", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.197499, + -30.0180083 + ] + }, + "id": "node/4787362633" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362634", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Studio Q", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2002333, + -30.0185676 + ] + }, + "id": "node/4787362634" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362635", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-18:30; Sa 09:00-16:00", + "operator": "Vila Velô", + "supervised": "no", + "website": "https://www.vilavelo.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2084847, + -30.0188678 + ] + }, + "id": "node/4787362635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362637", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Lav & Lev", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1615313, + -30.019671 + ] + }, + "id": "node/4787362637" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362638", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:00; Su 10:00-19:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1985138, + -30.0200817 + ] + }, + "id": "node/4787362638" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362639", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-23:00", + "operator": "Zaffari Cristóvão", + "supervised": "no", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2073331, + -30.0208885 + ] + }, + "id": "node/4787362639" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362640", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Porto Alegre Hostel Boutique", + "supervised": "no", + "website": "https://www.hostel.tur.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.21064, + -30.0216991 + ] + }, + "id": "node/4787362640" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362641", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Panvel", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1908777, + -30.0218012 + ] + }, + "id": "node/4787362641" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362642", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-22:00; Su 09:00-21:00", + "operator": "Zaffari Bordini", + "supervised": "no", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1967506, + -30.0225818 + ] + }, + "id": "node/4787362642" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362643", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Estação Rodoviária", + "supervised": "yes", + "website": "https://www.rodoviaria-poa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2190113, + -30.0232561 + ] + }, + "id": "node/4787362643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362645", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Colégio Estadual Piratini", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.191513, + -30.0242608 + ] + }, + "id": "node/4787362645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362646", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1921892, + -30.024446 + ] + }, + "id": "node/4787362646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362647", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Panvel", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2028607, + -30.024512 + ] + }, + "id": "node/4787362647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362648", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2012084, + -30.0247706 + ] + }, + "id": "node/4787362648" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362649", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Sindiatacadistas", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2227171, + -30.0247861 + ] + }, + "id": "node/4787362649" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362650", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2043281, + -30.0255211 + ] + }, + "id": "node/4787362650" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362651", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro Profissional Padre Chagas", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.204648, + -30.0259372 + ] + }, + "id": "node/4787362651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362652", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 11:00-22:00", + "operator": "Shopping Total", + "supervised": "yes", + "website": "http://www.shoppingtotal.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2120775, + -30.0259651 + ] + }, + "id": "node/4787362652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362653", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-23:00; Su 09:30-21:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1740229, + -30.0277941 + ] + }, + "id": "node/4787362653" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362654", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Departamento Municipal de Água e Esgotos", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2054904, + -30.0278146 + ] + }, + "id": "node/4787362654" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362655", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-19:00", + "operator": "Kevingston House", + "supervised": "no", + "website": "http://www.kevingston-poa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.20563, + -30.0280219 + ] + }, + "id": "node/4787362655" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362656", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Unisinos", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1763412, + -30.0282992 + ] + }, + "id": "node/4787362656" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362657", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 14:00-20:00", + "operator": "Viva Open Mall", + "supervised": "no", + "website": "https://www.vivaopenmall.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1578494, + -30.0286121 + ] + }, + "id": "node/4787362657" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362658", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Hospital Presidente Vargas", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2147549, + -30.0293994 + ] + }, + "id": "node/4787362658" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362659", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 18:00-23:00", + "operator": "Lola Bar", + "supervised": "no", + "website": "https://www.lolabar.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2064069, + -30.0305562 + ] + }, + "id": "node/4787362659" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362661", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-12:00,15:00-21:00", + "operator": "Lato Sensu", + "supervised": "no", + "website": "http://www.latosensu.esp.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2153382, + -30.0313293 + ] + }, + "id": "node/4787362661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362662", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Mini Shopping Bom Fim", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2126189, + -30.0315619 + ] + }, + "id": "node/4787362662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362663", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Palavraria", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2105286, + -30.0318161 + ] + }, + "id": "node/4787362663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362664", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-20:00; Sa 08:00-12:00", + "operator": "CAF Fisioterapia", + "supervised": "no", + "website": "http://www.caffisioterapia.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.207204, + -30.0321851 + ] + }, + "id": "node/4787362664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362665", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-19:30; Sa 11:00-16:00", + "operator": "Multipalco Theatro São Pedro", + "supervised": "yes", + "website": "http://www.teatrosaopedro.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2306893, + -30.0323071 + ] + }, + "id": "node/4787362665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362666", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Cartório de Registro Civil 4ª Zona", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2184848, + -30.0325943 + ] + }, + "id": "node/4787362666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362667", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Condomínio Centro Profissional Chanceler Osvaldo Aranha", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2178296, + -30.0326961 + ] + }, + "id": "node/4787362667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362668", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Pastel com Borda Bom Fim", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2108656, + -30.0333853 + ] + }, + "id": "node/4787362668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362669", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Panvel", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1904265, + -30.0338551 + ] + }, + "id": "node/4787362669" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362671", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2355736, + -30.0339989 + ] + }, + "id": "node/4787362671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362672", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Centro Profissional Arthur Rubinstein", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2127279, + -30.0340592 + ] + }, + "id": "node/4787362672" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362673", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro Profissional Arthur Rubinstein", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2127807, + -30.0341366 + ] + }, + "id": "node/4787362673" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362674", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "2", + "covered": "no", + "description": "Paraciclos do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Condomínio Edifício Telmo", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2132123, + -30.0343816 + ] + }, + "id": "node/4787362674" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362675", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-17:00", + "operator": "Tribunal Regional Eleitoral", + "supervised": "no", + "website": "https://www.tre-rs.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2376344, + -30.0345726 + ] + }, + "id": "node/4787362675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362677", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "operator": "Edel Trade Center", + "supervised": "no", + "website": "https://www.edeltradecenter-rs.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2217023, + -30.0351112 + ] + }, + "id": "node/4787362677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362678", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Confeitaria Dá Gosto", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2254149, + -30.0351913 + ] + }, + "id": "node/4787362678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362679", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2141974, + -30.0352868 + ] + }, + "id": "node/4787362679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362681", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Fome de Bolo", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2110022, + -30.0353688 + ] + }, + "id": "node/4787362681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362682", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Chocolates Prawer Bom Fim", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2110044, + -30.0354048 + ] + }, + "id": "node/4787362682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362683", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Maria Bolaria", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2057778, + -30.0357062 + ] + }, + "id": "node/4787362683" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362685", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2112178, + -30.0360887 + ] + }, + "id": "node/4787362685" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362686", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2110957, + -30.0364229 + ] + }, + "id": "node/4787362686" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362687", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2213913, + -30.0366334 + ] + }, + "id": "node/4787362687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362688", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Sa 12:00-20:00; Su 13:00-20:00", + "operator": "Café República", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2205866, + -30.0366352 + ] + }, + "id": "node/4787362688" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362689", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Via Sapiens", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2207696, + -30.0367617 + ] + }, + "id": "node/4787362689" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362690", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2074697, + -30.0369686 + ] + }, + "id": "node/4787362690" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362691", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2054032, + -30.0372814 + ] + }, + "id": "node/4787362691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362692", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Panvel", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.210003, + -30.0373444 + ] + }, + "id": "node/4787362692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362693", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2128178, + -30.0374044 + ] + }, + "id": "node/4787362693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362694", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Colégio ACM Centro", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2298765, + -30.0375061 + ] + }, + "id": "node/4787362694" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362695", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "29", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,13:30-18:00", + "operator": "Câmara Municipal", + "supervised": "yes", + "website": "https://www.camarapoa.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2376482, + -30.0376553 + ] + }, + "id": "node/4787362695" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362696", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Gaúcha Bike", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.204538, + -30.0377165 + ] + }, + "id": "node/4787362696" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362697", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-21:00", + "operator": "Preventiva", + "supervised": "no", + "website": "https://www.preventivars.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2254094, + -30.0379114 + ] + }, + "id": "node/4787362697" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362698", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Casa Perky", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2127493, + -30.037933 + ] + }, + "id": "node/4787362698" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362699", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Sirius", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.222753, + -30.0381559 + ] + }, + "id": "node/4787362699" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362700", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-23:00; Su 09:00-21:00", + "operator": "Zaffari Lima e Silva", + "supervised": "no", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2208193, + -30.0383173 + ] + }, + "id": "node/4787362700" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362701", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Unidade Básica de Saúde Santa Cecília", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.205045, + -30.0387092 + ] + }, + "id": "node/4787362701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362703", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Condomínio Edifício Salomão Ioschpe", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2238444, + -30.0391034 + ] + }, + "id": "node/4787362703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362704", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 09:00-21:00", + "operator": "Farmácia Quíron Cidade Baixa", + "supervised": "no", + "website": "https://www.farmaciaquiron.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2201257, + -30.0391914 + ] + }, + "id": "node/4787362704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362705", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2234281, + -30.0395037 + ] + }, + "id": "node/4787362705" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362706", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Aquavit", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2248303, + -30.0395799 + ] + }, + "id": "node/4787362706" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362707", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 13:00-18:00", + "operator": "Justiça Federal", + "supervised": "yes", + "website": "https://www.jfrs.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.235567, + -30.0399758 + ] + }, + "id": "node/4787362707" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362708", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Casa Azul", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.218944, + -30.0402204 + ] + }, + "id": "node/4787362708" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362709", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Centro Profissional Farroupilha", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2153889, + -30.0404615 + ] + }, + "id": "node/4787362709" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362710", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-16:00", + "operator": "Caixa Econômica Federal", + "supervised": "yes", + "website": "https://www.caixa.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2223268, + -30.0405427 + ] + }, + "id": "node/4787362710" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362711", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Dirty Old Man", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2186963, + -30.0405937 + ] + }, + "id": "node/4787362711" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362712", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "MEME Santo de Casa Estação Cultural", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2192311, + -30.0406598 + ] + }, + "id": "node/4787362712" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362713", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-22:30; Sa 07:30-12:00", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2073505, + -30.0414221 + ] + }, + "id": "node/4787362713" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362714", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 11:00-14:00,17:00-24:00", + "operator": "Boteco Imperial", + "supervised": "no", + "website": "http://www.imperialpoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2124213, + -30.0420158 + ] + }, + "id": "node/4787362714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362715", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "tree", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Espaço 900", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2207065, + -30.0422059 + ] + }, + "id": "node/4787362715" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362717", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-22:30; Sa 07:30-12:00", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2084221, + -30.0427637 + ] + }, + "id": "node/4787362717" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362718", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:30-24:00; Sa 10:00-15:00; Su 09:30-13:30", + "operator": "Moinhos Fitness Venâncio", + "supervised": "no", + "website": "https://www.moinhosfitness.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2190311, + -30.0428171 + ] + }, + "id": "node/4787362718" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362719", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-22:30; Sa 07:30-12:00", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.208136, + -30.0429598 + ] + }, + "id": "node/4787362719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362720", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-22:30; Sa 07:30-12:00", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2058639, + -30.043038 + ] + }, + "id": "node/4787362720" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362821", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-22:30; Sa 07:30-12:00", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2082179, + -30.0430736 + ] + }, + "id": "node/4787362821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362822", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "check_date:capacity": "2024-04-17", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro de Saúde Modelo", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2138925, + -30.0431341 + ] + }, + "id": "node/4787362822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362823", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1827677, + -30.0431673 + ] + }, + "id": "node/4787362823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362825", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Premium Office", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2292731, + -30.0450418 + ] + }, + "id": "node/4787362825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362826", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2194387, + -30.0453774 + ] + }, + "id": "node/4787362826" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362827", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "yes", + "fee": "no", + "layer": "-1", + "level": "-1", + "lit": "yes", + "operator": "Borges 2233", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2295477, + -30.0462386 + ] + }, + "id": "node/4787362827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362828", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-11:30,13:45-17:30", + "operator": "Secretaria Municipal de Obras e Viação", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2290268, + -30.0465452 + ] + }, + "id": "node/4787362828" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362829", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Coordenação de Educação para Mobilidade", + "supervised": "yes", + "website": "http://www.eptc.com.br/educacao/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2126928, + -30.0466845 + ] + }, + "id": "node/4787362829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362830", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:30-23:00; Sa 10:00-13:00", + "operator": "Pro Gym Fitness", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2212356, + -30.0468095 + ] + }, + "id": "node/4787362830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362831", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:30-23:30", + "operator": "Trend City Center", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2300227, + -30.0471491 + ] + }, + "id": "node/4787362831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362832", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro Municipal de Cultura", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2185905, + -30.0473497 + ] + }, + "id": "node/4787362832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362833", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:00-22:00; Sa 09:00-13:00", + "operator": "Time Villeroy", + "supervised": "no", + "website": "http://www.timevilleroy.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2240223, + -30.0475688 + ] + }, + "id": "node/4787362833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362834", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "description": "Paraciclos da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2183386, + -30.0478461 + ] + }, + "id": "node/4787362834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362835", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Tribunal Regional do Trabalho", + "supervised": "no", + "website": "https://www.trt4.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2269746, + -30.0486128 + ] + }, + "id": "node/4787362835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362836", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Tribunal Regional do Trabalho", + "supervised": "yes", + "website": "https://www.trt4.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2275657, + -30.0489127 + ] + }, + "id": "node/4787362836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362837", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Sindicado Médico do Rio Grande do Sul", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1954233, + -30.0492584 + ] + }, + "id": "node/4787362837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362848", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-23:00; Sa 07:00-15:00", + "operator": "Radicom", + "supervised": "no", + "website": "https://radicom.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2180735, + -30.0508894 + ] + }, + "id": "node/4787362848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362849", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 09:00-19:00", + "operator": "Studio K", + "supervised": "no", + "website": "http://studiokestetica.blogspot.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2245336, + -30.0509886 + ] + }, + "id": "node/4787362849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362850", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "18", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-23:00; Su 09:00-21:00", + "operator": "Zaffari Menino Deus", + "supervised": "yes", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2228019, + -30.0512959 + ] + }, + "id": "node/4787362850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362851", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "36", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Su 08:00-17:00", + "operator": "Jardim Botânico", + "supervised": "yes", + "website": "http://www.fzb.rs.gov.br/jardimbotanico/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1802157, + -30.0512582 + ] + }, + "id": "node/4787362851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362852", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2291637, + -30.0519658 + ] + }, + "id": "node/4787362852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362853", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-20:00; Sa 10:00-14:00", + "operator": "Maestro Carnes e Complementos", + "supervised": "no", + "website": "http://maestrocarnes.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2248021, + -30.0529185 + ] + }, + "id": "node/4787362853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362854", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:00; Su 09:00-18:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1873916, + -30.0537177 + ] + }, + "id": "node/4787362854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362855", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:30-22:30; Sa 09:00-13:00", + "operator": "Master Fitness Center", + "supervised": "no", + "website": "http://www.masterfitnesscenter.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2274381, + -30.0538502 + ] + }, + "id": "node/4787362855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362856", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-23:30; Sa 07:00-17:00", + "operator": "SafePark ESPM", + "supervised": "yes", + "website": "https://www.espm.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2070277, + -30.05439 + ] + }, + "id": "node/4787362856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362857", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-12:00,14:00-19:00; Sa 09:00-17:00", + "operator": "Z Bikes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2220923, + -30.0545378 + ] + }, + "id": "node/4787362857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362858", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 09:00-19:00", + "operator": "Oficina do Açaí Menino Deus", + "supervised": "no", + "website": "https://www.oficinadoacai.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2223143, + -30.0547346 + ] + }, + "id": "node/4787362858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362859", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "tree", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:00-22:00", + "operator": "Grêmio Náutico Gaúcho", + "supervised": "yes", + "website": "https://gngaucho.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2288624, + -30.0554637 + ] + }, + "id": "node/4787362859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362860", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-19:30; Sa 09:00-15:00", + "operator": "Farmácia Quíron Menino Deus", + "supervised": "no", + "website": "https://www.farmaciaquiron.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2229001, + -30.0570173 + ] + }, + "id": "node/4787362860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362861", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-22:00; Su 09:00-20:00", + "operator": "Farmácias São João", + "supervised": "no", + "website": "http://www.saojoaofarmacias.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2226852, + -30.0576174 + ] + }, + "id": "node/4787362861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362862", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Hospital Mãe de Deus", + "supervised": "no", + "website": "https://www.maededeus.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2294744, + -30.058523 + ] + }, + "id": "node/4787362862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362863", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro Profissional Genebra", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2228957, + -30.0587958 + ] + }, + "id": "node/4787362863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362864", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2307402, + -30.0592879 + ] + }, + "id": "node/4787362864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362865", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:00-23:00; Sa 09:00-18:00; Su 09:00-15:00", + "operator": "Smart Fit Menino Deus", + "supervised": "no", + "website": "https://www.smartfit.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2230158, + -30.0594916 + ] + }, + "id": "node/4787362865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362866", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-16:00", + "operator": "Caixa Econômica Federal", + "supervised": "yes", + "website": "https://www.caixa.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2254752, + -30.0600102 + ] + }, + "id": "node/4787362866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362867", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-20:00; Sa 08:00-14:00", + "operator": "CCAA Menino Deus", + "supervised": "no", + "website": "https://www.ccaa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2271943, + -30.0600429 + ] + }, + "id": "node/4787362867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362868", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-21:30", + "operator": "Studio Posturale Menino Deus", + "supervised": "no", + "website": "https://studioposturale.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2268403, + -30.0600761 + ] + }, + "id": "node/4787362868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362869", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-22:00; Sa 09:00-17:00", + "operator": "Minds Menino Deus", + "supervised": "no", + "website": "https://www.mindsidiomas.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2263639, + -30.0601319 + ] + }, + "id": "node/4787362869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362870", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2130395, + -30.0624575 + ] + }, + "id": "node/4787362870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362871", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-16:00", + "operator": "Banco do Brasil", + "supervised": "yes", + "website": "https://www.bb.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2135208, + -30.0822775 + ] + }, + "id": "node/4787362871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362873", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-23:00; Sa 08:00-22:00; Su 09:00-20:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2539533, + -30.1054094 + ] + }, + "id": "node/4787362873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362874", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00", + "operator": "Shopping Granville", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2548219, + -30.1057977 + ] + }, + "id": "node/4787362874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362875", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-22:00; Sa 09:00-12:00", + "operator": "Shopping Jardins da Praça", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2537397, + -30.1088259 + ] + }, + "id": "node/4787362875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362876", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Unidade Básica de Saúde Tristeza", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2546603, + -30.1110359 + ] + }, + "id": "node/4787362876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362877", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Su 08:00-22:00", + "operator": "Clube do Professor Gaúcho", + "supervised": "yes", + "website": "http://www.cpg.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2238369, + -30.1443245 + ] + }, + "id": "node/4787362877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4788397737", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,13:00-17:00", + "operator": "Companhia Riograndense de Mineração", + "supervised": "no", + "website": "https://www.crm.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2242457, + -30.0541614 + ] + }, + "id": "node/4788397737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4788424432", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Unidade Básica de Saúde Morro Santana", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1282817, + -30.0389058 + ] + }, + "id": "node/4788424432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4789039845", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-18:00", + "operator": "Justiça do Trabalho", + "supervised": "no", + "website": "https://www.trt4.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2274538, + -30.0509462 + ] + }, + "id": "node/4789039845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4789065102", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Edifício San Sebastian", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2011637, + -30.0292712 + ] + }, + "id": "node/4789065102" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4789115549", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Condomínio Edifício Île de France", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.201866, + -30.0229909 + ] + }, + "id": "node/4789115549" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4789239527", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro Integrado de Passagem Escolar e Lotação", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2293654, + -30.0271882 + ] + }, + "id": "node/4789239527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4789251109", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Terminal Antônio de Carvalho", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1504311, + -30.0657639 + ] + }, + "id": "node/4789251109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4790040699", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no", + "fee": "no", + "lit": "yes", + "note": "Mantido pelo restaurante apesar de localizado na calçada da paróquia.", + "opening_hours": "24/7", + "operator": "Prato Verde", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2111591, + -30.0374369 + ] + }, + "id": "node/4790040699" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4790170082", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-20:00; Su 08:00-24:00", + "operator": "Mercado Ki Preço", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2078089, + -30.0467183 + ] + }, + "id": "node/4790170082" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792242926", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 08:00-19:00", + "operator": "Kiko Quiosque e Fruteira", + "supervised": "no", + "website": "http://www.quiosquedokiko.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1329856, + -30.1903843 + ] + }, + "id": "node/4792242926" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792334927", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "yes", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1466396, + -30.1496409 + ] + }, + "id": "node/4792334927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792388322", + "amenity": "bicycle_parking", + "operator": "Greens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8850355, + -15.7807998 + ] + }, + "id": "node/4792388322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792484773", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "2", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 09:30-19:00", + "operator": "Jardim Verde Shopping", + "supervised": "yes", + "website": "https://www.jardimverdeshopping.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2190679, + -30.1359215 + ] + }, + "id": "node/4792484773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4799991703", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7153169, + -29.7153067 + ] + }, + "id": "node/4799991703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4802540803", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "name": "Bicicletário da Drogaria Fortaleza" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5897541, + -3.8115535 + ] + }, + "id": "node/4802540803" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805279022", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5911638, + -27.9030293 + ] + }, + "id": "node/4805279022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805805424", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Sport Club Internacional", + "supervised": "yes", + "website": "https://www.internacional.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2358317, + -30.0641971 + ] + }, + "id": "node/4805805424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805805425", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Sport Club Internacional", + "supervised": "yes", + "website": "https://www.internacional.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2367531, + -30.0644183 + ] + }, + "id": "node/4805805425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805805426", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "64", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Sport Club Internacional", + "supervised": "yes", + "website": "https://www.internacional.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2364613, + -30.0671771 + ] + }, + "id": "node/4805805426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961511", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "name": "Bicicletário Patrícia Silva de Figueiredo", + "operator": "UFRGS Campus Centro", + "source:name": "survey", + "start_date": "2015", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2200181, + -30.0333094 + ] + }, + "id": "node/4805961511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961512", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "lit": "yes", + "name": "Park Bike Indigo Center", + "opening_hours": "24/7", + "operator": "Indigo Center", + "source:name": "survey", + "supervised": "no", + "website": "http://www.indigocenter.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2339762, + -30.0303715 + ] + }, + "id": "node/4805961512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961513", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Pátio Ivo Rizzo", + "supervised": "no", + "website": "https://www.ivorizzo.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2020411, + -30.0235602 + ] + }, + "id": "node/4805961513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961514", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-22:00; Su 10:00-19:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2033479, + -30.0250691 + ] + }, + "id": "node/4805961514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961515", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "yes", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2243012, + -30.0266395 + ] + }, + "id": "node/4805961515" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961516", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2289226, + -30.0276191 + ] + }, + "id": "node/4805961516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961517", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "layer": "1", + "level": "1", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-19:00; Sa 10:00-17:00", + "operator": "5ª Avenida Center", + "supervised": "no", + "website": "http://www.5avenidacenter.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2059659, + -30.0283363 + ] + }, + "id": "node/4805961517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961518", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2241601, + -30.0285149 + ] + }, + "id": "node/4805961518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961519", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "check_date": "2023-08-26", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Santander Cultural", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2305558, + -30.0288159 + ] + }, + "id": "node/4805961519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805961520", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "check_date": "2023-08-26", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Caixa Econômica Federal 7 de Setembro", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2302569, + -30.0292492 + ] + }, + "id": "node/4805961520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964721", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "description": "Paraciclos da Braskem", + "fee": "no", + "lit": "yes", + "operator": "Universidade Federal de Ciências da Saúde", + "supervised": "yes", + "website": "https://www.ufcspa.edu.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2200845, + -30.0312987 + ] + }, + "id": "node/4805964721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964723", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:30-12:00,13:30-18:00", + "operator": "Fundação de Economia e Estatística Siegfried Emanuel Heuser", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2247902, + -30.03244 + ] + }, + "id": "node/4805964723" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964724", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:30-23:00; Sa 09:00-18:00", + "operator": "Bio Academia Ramiro", + "supervised": "yes", + "website": "http://academiabioativa.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2085706, + -30.0325275 + ] + }, + "id": "node/4805964724" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964725", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "14", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Centro", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2206886, + -30.0327927 + ] + }, + "id": "node/4805964725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964726", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Centro", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2222029, + -30.0328084 + ] + }, + "id": "node/4805964726" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964727", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Centro", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2195611, + -30.0331555 + ] + }, + "id": "node/4805964727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964728", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Centro", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2215887, + -30.0331672 + ] + }, + "id": "node/4805964728" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964729", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Centro", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2205842, + -30.0333493 + ] + }, + "id": "node/4805964729" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964731", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Usina do Gasômetro", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.240496, + -30.033829 + ] + }, + "id": "node/4805964731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964733", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2399694, + -30.0339488 + ] + }, + "id": "node/4805964733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964734", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "Graph Ideia", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2226872, + -30.0341148 + ] + }, + "id": "node/4805964734" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964735", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Academia DK1", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2250637, + -30.0343052 + ] + }, + "id": "node/4805964735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964736", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2404359, + -30.0346364 + ] + }, + "id": "node/4805964736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964737", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-22:00; Su 09:00-21:00", + "operator": "Zaffari Fernando Machado", + "supervised": "no", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2289591, + -30.0348795 + ] + }, + "id": "node/4805964737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964738", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-20:00; Sa 09:00-17:00", + "operator": "Faculdade SENAC Campus I", + "supervised": "yes", + "website": "http://www.senacrs.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2265302, + -30.0351408 + ] + }, + "id": "node/4805964738" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964742", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.213242, + -30.0365138 + ] + }, + "id": "node/4805964742" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964743", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2091021, + -30.036519 + ] + }, + "id": "node/4805964743" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964744", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2131748, + -30.0368823 + ] + }, + "id": "node/4805964744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964745", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Escola de Administração", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2316433, + -30.0370354 + ] + }, + "id": "node/4805964745" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964746", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Escola Técnica Estadual Parobé", + "supervised": "yes", + "website": "http://www.cteparobe.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2318158, + -30.0376589 + ] + }, + "id": "node/4805964746" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964747", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "11", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Sa 08:30-20:00; Su-Mo 12:00-20:00", + "operator": "Chocólatras Anônimos Cidade Baixa", + "supervised": "no", + "website": "https://www.chocolatras.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.221661, + -30.0382261 + ] + }, + "id": "node/4805964747" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964748", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2154376, + -30.038387 + ] + }, + "id": "node/4805964748" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964749", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Hospital de Clínicas", + "supervised": "no", + "website": "https://www.hcpa.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2075974, + -30.0389718 + ] + }, + "id": "node/4805964749" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964750", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Companhia de Processamento Dados do Estado Rio Grande Sul", + "supervised": "yes", + "website": "https://www.procergs.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2305943, + -30.039008 + ] + }, + "id": "node/4805964750" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964751", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 10:00-23:00", + "operator": "Shopping Nova Olaria", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2191767, + -30.0390989 + ] + }, + "id": "node/4805964751" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964753", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "13", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:30", + "operator": "Centro Administrativo Fernando Ferrari", + "supervised": "no", + "website": "http://www.sarh.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2308709, + -30.0394393 + ] + }, + "id": "node/4805964753" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964754", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:30", + "operator": "Centro Administrativo Fernando Ferrari", + "supervised": "no", + "website": "http://www.sarh.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2302865, + -30.0400837 + ] + }, + "id": "node/4805964754" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964755", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:30", + "operator": "Centro Administrativo Fernando Ferrari", + "supervised": "no", + "website": "http://www.sarh.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2302832, + -30.0404767 + ] + }, + "id": "node/4805964755" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964756", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:30", + "operator": "Centro Administrativo Fernando Ferrari", + "supervised": "no", + "website": "http://www.sarh.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2300001, + -30.0408202 + ] + }, + "id": "node/4805964756" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964757", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2073493, + -30.0417562 + ] + }, + "id": "node/4805964757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964758", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2073645, + -30.0429269 + ] + }, + "id": "node/4805964758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964759", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Condomínio Edifício Atlântida", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2213867, + -30.0460047 + ] + }, + "id": "node/4805964759" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964760", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "21", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-18:00", + "operator": "Foro Central Prédio II", + "supervised": "no", + "website": "https://www.tjrs.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2311093, + -30.0468187 + ] + }, + "id": "node/4805964760" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964761", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:30-17:30", + "operator": "Companhia de Processamento de Dados do Município de Porto Alegre", + "supervised": "yes", + "website": "http://www.procempa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2154712, + -30.0469435 + ] + }, + "id": "node/4805964761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964762", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Empresa Pública de Transporte e Circulação", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2168582, + -30.0470588 + ] + }, + "id": "node/4805964762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964763", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "17", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 08:30-22:00", + "operator": "Centro Municipal de Cultura Lupicínio Rodrigues", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2190309, + -30.0471179 + ] + }, + "id": "node/4805964763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964764", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "13", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:30-17:00", + "operator": "Empresa Pública de Transporte e Circulação", + "supervised": "yes", + "website": "http://www.eptc.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2169442, + -30.0471473 + ] + }, + "id": "node/4805964764" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964765", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2095976, + -30.0505641 + ] + }, + "id": "node/4805964765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964766", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "PUCRS", + "supervised": "no", + "website": "https://www.pucrs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1726922, + -30.0555764 + ] + }, + "id": "node/4805964766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964767", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PUCRS", + "supervised": "no", + "website": "https://www.pucrs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.175368, + -30.0556688 + ] + }, + "id": "node/4805964767" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964768", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:00-22:00", + "operator": "CETE", + "supervised": "yes", + "website": "http://www.fundergs.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2206792, + -30.0560058 + ] + }, + "id": "node/4805964768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964769", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "PUCRS", + "supervised": "yes", + "website": "https://www.pucrs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1726177, + -30.0580278 + ] + }, + "id": "node/4805964769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964771", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "PUCRS", + "supervised": "yes", + "website": "https://www.pucrs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1737059, + -30.060775 + ] + }, + "id": "node/4805964771" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964772", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "23", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "TecnoPUC", + "supervised": "yes", + "website": "https://www.pucrs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1705225, + -30.0613887 + ] + }, + "id": "node/4805964772" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964773", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus do Vale", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1201009, + -30.0674974 + ] + }, + "id": "node/4805964773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964774", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus do Vale", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1214021, + -30.0685289 + ] + }, + "id": "node/4805964774" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964775", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus do Vale", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.140462, + -30.0705514 + ] + }, + "id": "node/4805964775" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964776", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus do Vale", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1191576, + -30.0712818 + ] + }, + "id": "node/4805964776" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964777", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus do Vale", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1189984, + -30.072366 + ] + }, + "id": "node/4805964777" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964778", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus do Vale", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1200417, + -30.0734528 + ] + }, + "id": "node/4805964778" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964779", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,13:30-19:00; Sa 08:00-12:00", + "operator": "Nacional", + "supervised": "yes", + "website": "http://www.nacional.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2094753, + -30.0785856 + ] + }, + "id": "node/4805964779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964780", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "13", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 11:00-21:00", + "operator": "BarraShoppingSul", + "service:bicycle:diy": "yes", + "supervised": "yes", + "website": "https://www.barrashoppingsul.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2446005, + -30.0832343 + ] + }, + "id": "node/4805964780" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964781", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-22:00", + "operator": "Cristal Shop", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2401271, + -30.0854922 + ] + }, + "id": "node/4805964781" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964782", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,13:30-19:00; Sa 08:00-12:00", + "operator": "Biológika", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2312131, + -30.1024614 + ] + }, + "id": "node/4805964782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4805964783", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-23:00; Su 09:00-21:00", + "operator": "Zaffari Otto Niemeyer", + "supervised": "yes", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2531083, + -30.1101582 + ] + }, + "id": "node/4805964783" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806139229", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5216009, + -27.6013574 + ] + }, + "id": "node/4806139229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806139752", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5216077, + -27.6007804 + ] + }, + "id": "node/4806139752" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806142431", + "amenity": "bicycle_parking", + "bicycle_parking": "informal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5204646, + -27.6020501 + ] + }, + "id": "node/4806142431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806142432", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5204615, + -27.6023368 + ] + }, + "id": "node/4806142432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806142433", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5217707, + -27.5988886 + ] + }, + "id": "node/4806142433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4807326685", + "access": "permissive", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2675256, + -25.4367228 + ] + }, + "id": "node/4807326685" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4808656674", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2095168, + -30.0198989 + ] + }, + "id": "node/4808656674" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4808656676", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1974367, + -30.0398607 + ] + }, + "id": "node/4808656676" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4809768776", + "amenity": "bicycle_parking", + "capacity": "12", + "surface": "asphalt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4127957, + -23.4763565 + ] + }, + "id": "node/4809768776" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4812162641", + "access": "customers", + "amenity": "bicycle_parking", + "capacity": "5", + "surface": "concrete:lanes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4670245, + -23.53966 + ] + }, + "id": "node/4812162641" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4812243740", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "operator": "Prefeitura de Sorocaba" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4645953, + -23.5173119 + ] + }, + "id": "node/4812243740" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4814328822", + "amenity": "bicycle_parking", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4224637, + -23.4806843 + ] + }, + "id": "node/4814328822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4814328824", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "10", + "lit": "yes", + "surface": "paved" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4229288, + -23.4784859 + ] + }, + "id": "node/4814328824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4814328830", + "amenity": "bicycle_parking", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4224095, + -23.4806054 + ] + }, + "id": "node/4814328830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4818609399", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8731248, + -15.7574371 + ] + }, + "id": "node/4818609399" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4820723034", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "3", + "covered": "no", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7247413, + -29.701469 + ] + }, + "id": "node/4820723034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4820793917", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7161447, + -29.7164462 + ] + }, + "id": "node/4820793917" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4820847436", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.716076, + -29.7126718 + ] + }, + "id": "node/4820847436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4820847445", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "11", + "covered": "no", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7171037, + -29.7114631 + ] + }, + "id": "node/4820847445" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4825909288", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8914169, + -15.761637 + ] + }, + "id": "node/4825909288" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4828011165", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1733812, + -26.7527657 + ] + }, + "id": "node/4828011165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4828892487", + "amenity": "bicycle_parking", + "bicycle_parking": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4601274, + -23.0181423 + ] + }, + "id": "node/4828892487" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4829457123", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2528159, + -16.679726 + ] + }, + "id": "node/4829457123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4833350178", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.883287, + -15.7477203 + ] + }, + "id": "node/4833350178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4834820178", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "24", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 05:00-24:00", + "operator": "Grêmio Náutico União Moinhos de Vento", + "supervised": "yes", + "website": "https://www.gnu.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.198181, + -30.0223143 + ] + }, + "id": "node/4834820178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4835094721", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4708546, + -23.0158439 + ] + }, + "id": "node/4835094721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4835595933", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "yes", + "fee": "no", + "lit": "no", + "opening_hours": "Mo 13:00-17:30; Tu-Fr 09:00-17:30", + "operator": "Museu Joaquim José Felizardo", + "supervised": "no", + "website": "http://www.museudeportoalegre.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2243516, + -30.0419712 + ] + }, + "id": "node/4835595933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4835595934", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Escola Infante Dom Henrique", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2212799, + -30.0592851 + ] + }, + "id": "node/4835595934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4837454360", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5256574, + -27.5991717 + ] + }, + "id": "node/4837454360" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4838981447", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0828834, + -26.9077516 + ] + }, + "id": "node/4838981447" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840291430", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "yes", + "fee": "no", + "level": "-1", + "lit": "yes", + "opening_hours": "Fr-Sa 13:00-18:00", + "operator": "Fundação Iberê Camargo", + "supervised": "yes", + "website": "http://iberecamargo.org.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2451936, + -30.0774576 + ] + }, + "id": "node/4840291430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840291457", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Fr-Sa 13:00-18:00", + "operator": "Fundação Iberê Camargo", + "supervised": "no", + "website": "http://iberecamargo.org.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2453462, + -30.0777863 + ] + }, + "id": "node/4840291457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407185", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Arena do Grêmio", + "supervised": "no", + "website": "https://arenapoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1952196, + -29.9726156 + ] + }, + "id": "node/4840407185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407188", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Arena do Grêmio", + "supervised": "no", + "website": "https://arenapoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1936277, + -29.9731411 + ] + }, + "id": "node/4840407188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407189", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "25", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Arena do Grêmio", + "supervised": "no", + "website": "https://arenapoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1933469, + -29.9734138 + ] + }, + "id": "node/4840407189" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407190", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Arena do Grêmio", + "supervised": "no", + "website": "https://arenapoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1967174, + -29.9736435 + ] + }, + "id": "node/4840407190" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407191", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Arena do Grêmio", + "supervised": "no", + "website": "https://arenapoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1933999, + -29.9745144 + ] + }, + "id": "node/4840407191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407193", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Arena do Grêmio", + "supervised": "no", + "website": "https://arenapoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1964746, + -29.9748572 + ] + }, + "id": "node/4840407193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407195", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Arena do Grêmio", + "supervised": "no", + "website": "https://arenapoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1942656, + -29.975259 + ] + }, + "id": "node/4840407195" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407197", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-21:00; Su 14:00-20:00", + "operator": "DC Shopping", + "supervised": "yes", + "website": "https://www.dcshopping.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2032462, + -29.9960314 + ] + }, + "id": "node/4840407197" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407198", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "yes", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1975158, + -29.9973534 + ] + }, + "id": "node/4840407198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407199", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Serviço Social do Comércio Unidade Navegantes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2026051, + -30.0047549 + ] + }, + "id": "node/4840407199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407203", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-21:00; Su 08:30-20:00", + "operator": "Supper Rissul", + "supervised": "no", + "website": "http://www.supperrissul.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2040247, + -30.0095105 + ] + }, + "id": "node/4840407203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407214", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Terreira da Tribo de Atuadores Ói Nóis Aqui Traveiz", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2067384, + -30.0108902 + ] + }, + "id": "node/4840407214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407215", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 11:00-22:00", + "operator": "Bourbon Shopping Wallig", + "supervised": "yes", + "website": "https://www.bourbonshopping.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1607513, + -30.0127178 + ] + }, + "id": "node/4840407215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407218", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-23:00; Sa 08:00-12:00", + "operator": "Instituto Porto Alegre Unidade Central", + "supervised": "yes", + "website": "http://ipametodista.edu.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1975947, + -30.0333348 + ] + }, + "id": "node/4840407218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840407219", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-22:00; Su 09:00-21:00", + "operator": "Zaffari Cabral", + "supervised": "yes", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2023004, + -30.0338202 + ] + }, + "id": "node/4840407219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4840410525", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.224138, + -30.038843 + ] + }, + "id": "node/4840410525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4844547939", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "25", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Tribunal Regional do Trabalho", + "supervised": "no", + "website": "https://www.trt4.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2272793, + -30.0483783 + ] + }, + "id": "node/4844547939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4844565056", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-18:00", + "operator": "Justiça do Trabalho", + "supervised": "no", + "website": "https://www.trt4.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2264352, + -30.0511634 + ] + }, + "id": "node/4844565056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4846502444", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Colégio Farroupilha", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1711492, + -30.0359425 + ] + }, + "id": "node/4846502444" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4846502445", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Supermercado Bampi", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1619489, + -30.0358222 + ] + }, + "id": "node/4846502445" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4846502446", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 11:00-20:00", + "operator": "Bourbon Shopping Country", + "supervised": "yes", + "website": "https://www.bourbonshopping.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1616012, + -30.0218115 + ] + }, + "id": "node/4846502446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4846502447", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "64", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 11:30-22:00", + "operator": "Shopping Iguatemi", + "supervised": "no", + "website": "http://www.iguatemiportoalegre.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1629242, + -30.0277773 + ] + }, + "id": "node/4846502447" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4846742804", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7168192, + -29.7137784 + ] + }, + "id": "node/4846742804" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4848426554", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-17:00", + "operator": "Ministério da Fazenda", + "supervised": "yes", + "website": "http://www.fazenda.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2368106, + -30.0380247 + ] + }, + "id": "node/4848426554" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4848426555", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-11:30,13:30-17:00", + "operator": "Foro Central", + "supervised": "no", + "website": "https://www.tjrs.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2310222, + -30.0442233 + ] + }, + "id": "node/4848426555" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4849581259", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8935426, + -15.7636701 + ] + }, + "id": "node/4849581259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4849669638", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "yes", + "fee": "no", + "lit": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0677143, + -26.8796999 + ] + }, + "id": "node/4849669638" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4851989822", + "amenity": "bicycle_parking", + "operator": "manutenção de bicicletas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.847758, + -7.0688321 + ] + }, + "id": "node/4851989822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4853613888", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Bife", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.205869, + -30.031523 + ] + }, + "id": "node/4853613888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4853683517", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Faculdade Porto-Alegrense", + "supervised": "yes", + "website": "https://www.fapa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1219571, + -30.031754 + ] + }, + "id": "node/4853683517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854013128", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:00", + "operator": "Maxxi Atacado Sarandi", + "supervised": "yes", + "website": "http://www.maxxiatacado.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1156583, + -29.9825281 + ] + }, + "id": "node/4854013128" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854013146", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:30-12:00,13:30-18:00; Sa 09:00-12:00,13:00-17:00", + "operator": "Lojas TaQi Sarandi", + "supervised": "no", + "website": "https://www.taqi.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1400745, + -30.0068866 + ] + }, + "id": "node/4854013146" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854013179", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 10:00-22:00", + "operator": "Boulevard Strip Center Assis Brasil", + "supervised": "no", + "website": "http://boulevardsc.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1441354, + -30.0091917 + ] + }, + "id": "node/4854013179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854013229", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:00; Su 09:00-22:00", + "operator": "Big Água Viva", + "supervised": "yes", + "website": "https://www.walmartbrasil.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0924063, + -30.0120921 + ] + }, + "id": "node/4854013229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854013243", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Escola Chico Mendes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1125649, + -30.0317917 + ] + }, + "id": "node/4854013243" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854013244", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-20:30; Su 07:30-13:00", + "operator": "Supermercado Brunetto", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1137202, + -30.0324996 + ] + }, + "id": "node/4854013244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854032060", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Olímpico", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1801028, + -30.0494293 + ] + }, + "id": "node/4854032060" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854032067", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Olímpico", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1823669, + -30.0503224 + ] + }, + "id": "node/4854032067" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854032073", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Olímpico", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1835322, + -30.0503591 + ] + }, + "id": "node/4854032073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854032080", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Olímpico", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1835539, + -30.0504554 + ] + }, + "id": "node/4854032080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854032086", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "16", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Olímpico", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1826731, + -30.0506765 + ] + }, + "id": "node/4854032086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854032091", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Olímpico", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.182261, + -30.0508887 + ] + }, + "id": "node/4854032091" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854032094", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "13", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-17:30", + "operator": "Escola Rainha do Brasil", + "supervised": "no", + "website": "https://rainhadobrasil.g12.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2005511, + -30.0584926 + ] + }, + "id": "node/4854032094" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854084793", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Le Grand Burger", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.202483, + -30.0202064 + ] + }, + "id": "node/4854084793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854084795", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Galeria Moinhos de Vento", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2088266, + -30.0290869 + ] + }, + "id": "node/4854084795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854085423", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 09:00-21:00", + "operator": "Otto 2500 Shopping", + "supervised": "yes", + "website": "http://www.otto2500.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2344633, + -30.1030472 + ] + }, + "id": "node/4854085423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854502533", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 06:30-23:00", + "operator": "Grêmio Náutico União Alto Petrópolis", + "supervised": "yes", + "website": "https://www.gnu.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.182288, + -30.0336157 + ] + }, + "id": "node/4854502533" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4854502534", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1900754, + -30.2116908 + ] + }, + "id": "node/4854502534" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4862488421", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "description": "Bicicletário 2 da Praça Governador Celso Ramos", + "fee": "no", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5434718, + -27.5801735 + ] + }, + "id": "node/4862488421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4879604707", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7144193, + -29.70566 + ] + }, + "id": "node/4879604707" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880339956", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-16:00", + "operator": "Banco do Brasil Navegantes", + "supervised": "yes", + "website": "https://www.bb.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.197613, + -29.9967794 + ] + }, + "id": "node/4880339956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880339978", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Temakeria Japesca Moinhos", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2012529, + -30.0258981 + ] + }, + "id": "node/4880339978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880339980", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2197867, + -30.0278773 + ] + }, + "id": "node/4880339980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880339984", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Top Agência Produtora", + "supervised": "no", + "website": "http://topagencia.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2141567, + -30.0286171 + ] + }, + "id": "node/4880339984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880339992", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.181321, + -30.0292154 + ] + }, + "id": "node/4880339992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880339995", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Raw", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2159216, + -30.0306675 + ] + }, + "id": "node/4880339995" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880339999", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Fleming Medicina", + "supervised": "no", + "website": "https://flemingmedicina.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2143483, + -30.0315976 + ] + }, + "id": "node/4880339999" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340009", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:30-18:30", + "operator": "Assembleia Legislativa", + "supervised": "yes", + "website": "http://www.al.rs.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2308226, + -30.0328067 + ] + }, + "id": "node/4880340009" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340010", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "Rubik Pré-Enem", + "supervised": "no", + "website": "http://www.rubik2017.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2152698, + -30.0331449 + ] + }, + "id": "node/4880340010" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340014", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Barber Hair King", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2058802, + -30.0335147 + ] + }, + "id": "node/4880340014" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340016", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-22:00; Sa 09:00-13:30", + "operator": "Winner Fight & Fitness", + "supervised": "no", + "website": "http://www.winnersport.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2058673, + -30.0339179 + ] + }, + "id": "node/4880340016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340221", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Su 09:30-21:30", + "operator": "Armazém da Redenção", + "supervised": "no", + "website": "https://www.armazemdaredencao.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2113041, + -30.0358047 + ] + }, + "id": "node/4880340221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340233", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-16:00", + "operator": "Caixa Econômica Federal", + "supervised": "yes", + "website": "https://www.caixa.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2094763, + -30.0362524 + ] + }, + "id": "node/4880340233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340250", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Tu 11:30-20:00, We-Th 11:30-20:00; Fr 11:30-22:00; Sa 12:00-20:00; Su 12:00-15:00", + "operator": "Germina", + "supervised": "no", + "website": "https://www.coletivogermina.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2009756, + -30.0383677 + ] + }, + "id": "node/4880340250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340260", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Velho Tranquilo Barbearia", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2243602, + -30.0392653 + ] + }, + "id": "node/4880340260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340269", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "08:00-21:00", + "operator": "Farmácias Associadas", + "supervised": "no", + "website": "https://www.farmaciasassociadas.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2196456, + -30.0431935 + ] + }, + "id": "node/4880340269" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340279", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Fundação de Assistência Social e Cidadania", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.225501, + -30.0477191 + ] + }, + "id": "node/4880340279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340281", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2229866, + -30.0603524 + ] + }, + "id": "node/4880340281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340282", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Hospital Independência", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1490343, + -30.0614721 + ] + }, + "id": "node/4880340282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340291", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Ginásio de Esportes Lupi Martins", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2065385, + -30.0809308 + ] + }, + "id": "node/4880340291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340302", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UniRitter Campus Exclusivo", + "supervised": "no", + "website": "https://www.uniritter.edu.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2482811, + -30.0994379 + ] + }, + "id": "node/4880340302" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880340305", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:30-19:00; Su 14:00-19:00", + "operator": "Positano Café", + "supervised": "no", + "website": "http://www.positanocafe.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2573255, + -30.1074382 + ] + }, + "id": "node/4880340305" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880429201", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-18:30; Sa 09:00-13:00", + "operator": "Lookbel", + "supervised": "no", + "website": "http://www.lookbel.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2070418, + -30.0200448 + ] + }, + "id": "node/4880429201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4880445012", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Casa do Estudante", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.22294, + -30.0329563 + ] + }, + "id": "node/4880445012" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4882051056", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "yes", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2041128, + -30.0376171 + ] + }, + "id": "node/4882051056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4882051086", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,13:00-17:00", + "operator": "Unidade Básica de Saúde Cidade de Deus", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2280256, + -30.1160088 + ] + }, + "id": "node/4882051086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4890260792", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "bike_ride": "yes", + "capacity": "26", + "covered": "yes", + "fee": "no", + "name": "Terminal Antônio Bezerra", + "operator": "Prefeitura Municipal de Fortaleza", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5836922, + -3.7375336 + ] + }, + "id": "node/4890260792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4893932137", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-18:00", + "operator": "Unidade Básica de Saúde Camaquã", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2349153, + -30.1081129 + ] + }, + "id": "node/4893932137" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4893961972", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2056963, + -30.0423293 + ] + }, + "id": "node/4893961972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4894184419", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-We 12:00-15:00; Th 12:00-15:00,19:30-22:30; Fr 12:00-15:00; Sa-Su 12:00-16:00", + "operator": "La Rouge Bistrô", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1930323, + -30.0291027 + ] + }, + "id": "node/4894184419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4895392134", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 09:00-22:00; Su 12:00-20:00", + "operator": "Tok&Stok Auxiliadora", + "supervised": "no", + "website": "https://www.tokstok.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1937855, + -30.0214598 + ] + }, + "id": "node/4895392134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4895392139", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-19:00", + "operator": "Galeria Champs Elysees", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2036772, + -30.0271018 + ] + }, + "id": "node/4895392139" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4895392140", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:30-22:00; Sa 09:00-15:00", + "operator": "Fit Academia", + "supervised": "no", + "website": "https://www.fitacademia.esp.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2030683, + -30.0271209 + ] + }, + "id": "node/4895392140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4895392145", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 09:00-21:00; Su 12:00-18:00", + "operator": "Shopping João Pessoa", + "supervised": "yes", + "website": "https://www.shoppingjoaopessoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2131887, + -30.0455779 + ] + }, + "id": "node/4895392145" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4895850622", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "40", + "covered": "no", + "operator": "Museu da Casa Brasileira" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6846837, + -23.5801748 + ] + }, + "id": "node/4895850622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4902386935", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "44", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Universidade Federal da Fronteira Sul", + "operator:short": "UFFS", + "ownership": "national" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.7056392, + -27.1134355 + ] + }, + "id": "node/4902386935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4905070673", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1733207, + -26.7324829 + ] + }, + "id": "node/4905070673" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4906500482", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4098526, + -22.9811881 + ] + }, + "id": "node/4906500482" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4906512984", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4170202, + -22.989131 + ] + }, + "id": "node/4906512984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4906522882", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "22", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4302004, + -23.0006146 + ] + }, + "id": "node/4906522882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4906522883", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "R" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4334023, + -23.0032219 + ] + }, + "id": "node/4906522883" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4911693687", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "free": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7161576, + -29.7121127 + ] + }, + "id": "node/4911693687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4928725835", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "yes", + "name": "SCSP - Secretaria de Conservação e Serviços Públicos de Fortaleza" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5003688, + -3.7510534 + ] + }, + "id": "node/4928725835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4931106781", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8997535, + -15.7390091 + ] + }, + "id": "node/4931106781" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4931518729", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "name": "Rua Compartilhada" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4990197, + -3.7503518 + ] + }, + "id": "node/4931518729" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4935696390", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Pandorga", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2057816, + -30.0361588 + ] + }, + "id": "node/4935696390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4935696400", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-12:00,13:30-18:00; Sa-Su 22:00-00:00", + "operator": "Opinião", + "supervised": "no", + "website": "https://www.opiniao.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2209898, + -30.0418825 + ] + }, + "id": "node/4935696400" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4935696413", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Colégio Estadual Júlio de Castilhos", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2128095, + -30.0444073 + ] + }, + "id": "node/4935696413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4935696621", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:00; Su 09:00-14:00", + "operator": "Dia Market", + "supervised": "no", + "website": "https://www.dia.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2149457, + -30.0555295 + ] + }, + "id": "node/4935696621" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4935696625", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2366868, + -30.0628121 + ] + }, + "id": "node/4935696625" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4935696630", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2328998, + -30.0635168 + ] + }, + "id": "node/4935696630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4935780942", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Empresa Pública de Transporte e Circulação", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2194926, + -30.0445747 + ] + }, + "id": "node/4935780942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937195548", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1285796, + -29.9934982 + ] + }, + "id": "node/4937195548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937195557", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Unidade Básica de Saúde Sarandi", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1343144, + -29.9949813 + ] + }, + "id": "node/4937195557" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937195561", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-18:00", + "operator": "Unidade Básica de Saúde Sarandi", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.134273, + -29.9949988 + ] + }, + "id": "node/4937195561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937195562", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:00-18:00", + "operator": "Centro de Saúde IAPI", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1781333, + -30.0147683 + ] + }, + "id": "node/4937195562" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937195567", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Unidade Básica de Saúde Vila Ipiranga", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1493526, + -30.0271394 + ] + }, + "id": "node/4937195567" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937195594", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "SMAM", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1735461, + -30.0374289 + ] + }, + "id": "node/4937195594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937197236", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da EPTC", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PMPA", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1822892, + -30.041292 + ] + }, + "id": "node/4937197236" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937558628", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "yes", + "name": "Coffee Time Floricultura" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5538981, + -3.7332386 + ] + }, + "id": "node/4937558628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937832922", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2267021, + -30.0348404 + ] + }, + "id": "node/4937832922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937832927", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Asprocergs", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2318819, + -30.0351573 + ] + }, + "id": "node/4937832927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4937832930", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "BioStudio Cidade Baixa", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2239772, + -30.0409154 + ] + }, + "id": "node/4937832930" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4938911394", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "operator": "Floresta Bar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5079624, + -3.7331871 + ] + }, + "id": "node/4938911394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4938947974", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "operator": "Empório Delitália" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4964591, + -3.7308722 + ] + }, + "id": "node/4938947974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4942199463", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UniRitter Campus Zona Sul", + "supervised": "yes", + "website": "https://www.uniritter.edu.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2201377, + -30.0799441 + ] + }, + "id": "node/4942199463" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4942231340", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "IAB RS", + "supervised": "no", + "website": "https://iabrs.org.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2357839, + -30.0334662 + ] + }, + "id": "node/4942231340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4942251977", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Lusty Pole Dance Café", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2241908, + -30.0423643 + ] + }, + "id": "node/4942251977" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4955540097", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5015678, + -3.7371631 + ] + }, + "id": "node/4955540097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4968620797", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6297614, + -23.573146 + ] + }, + "id": "node/4968620797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4977252392", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus do Vale", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1208566, + -30.0687598 + ] + }, + "id": "node/4977252392" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4981220452", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7135536, + -29.6986316 + ] + }, + "id": "node/4981220452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4983206444", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no", + "survey:date": "2023-10-06" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1758303, + -26.741233 + ] + }, + "id": "node/4983206444" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4984936571", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "operator": "DeRose Method Asa Norte" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8893737, + -15.7804474 + ] + }, + "id": "node/4984936571" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4987017086", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4691531, + -23.0141955 + ] + }, + "id": "node/4987017086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4991435290", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7152984, + -29.7134899 + ] + }, + "id": "node/4991435290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4991435291", + "amenity": "bicycle_parking", + "capacity": "17" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7154835, + -29.713512 + ] + }, + "id": "node/4991435291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4997427610", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3199096, + -30.3220163 + ] + }, + "id": "node/4997427610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4997427614", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.321762, + -30.3205322 + ] + }, + "id": "node/4997427614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117194", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7132676, + -29.7245566 + ] + }, + "id": "node/5001117194" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117199", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "11", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7156726, + -29.7185705 + ] + }, + "id": "node/5001117199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117206", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "2", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7174226, + -29.7118254 + ] + }, + "id": "node/5001117206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117209", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "14", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7177761, + -29.7148143 + ] + }, + "id": "node/5001117209" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117210", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "5", + "free": "yes", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7178111, + -29.714874 + ] + }, + "id": "node/5001117210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5003537725", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3282542, + -30.3280263 + ] + }, + "id": "node/5003537725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5005181844", + "amenity": "bicycle_parking", + "name": "Centro Malachini Dias" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2594437, + -25.4125014 + ] + }, + "id": "node/5005181844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5009997028", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3285198, + -30.351449 + ] + }, + "id": "node/5009997028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5015175369", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3309505, + -30.3343815 + ] + }, + "id": "node/5015175369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5015211919", + "amenity": "bicycle_parking", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3288088, + -30.3359105 + ] + }, + "id": "node/5015211919" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5015211920", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3288028, + -30.3359453 + ] + }, + "id": "node/5015211920" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5019141836", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3286002, + -30.328391 + ] + }, + "id": "node/5019141836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5019141837", + "amenity": "bicycle_parking", + "capacity": "14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3285955, + -30.3282498 + ] + }, + "id": "node/5019141837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5021025847", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3265256, + -30.3279566 + ] + }, + "id": "node/5021025847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5024555876", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3214206, + -30.3344735 + ] + }, + "id": "node/5024555876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5024555896", + "amenity": "bicycle_parking", + "capacity": "11" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.321251, + -30.3336384 + ] + }, + "id": "node/5024555896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5024556323", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3217576, + -30.3342701 + ] + }, + "id": "node/5024556323" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5024610786", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3277983, + -30.3237291 + ] + }, + "id": "node/5024610786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5024610815", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3279934, + -30.3268175 + ] + }, + "id": "node/5024610815" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5024610817", + "amenity": "bicycle_parking", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3279384, + -30.3264685 + ] + }, + "id": "node/5024610817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5024610818", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3279092, + -30.326314 + ] + }, + "id": "node/5024610818" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5029365721", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8886657, + -15.7748287 + ] + }, + "id": "node/5029365721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5030831457", + "amenity": "bicycle_parking", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7142812, + -29.7138603 + ] + }, + "id": "node/5030831457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5035645883", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8901251, + -15.7532283 + ] + }, + "id": "node/5035645883" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5036649922", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9511506, + -19.9200256 + ] + }, + "id": "node/5036649922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5036650222", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9511648, + -19.9198709 + ] + }, + "id": "node/5036650222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5036650223", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9503934, + -19.9217475 + ] + }, + "id": "node/5036650223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5036650224", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9477224, + -19.9219403 + ] + }, + "id": "node/5036650224" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5036743422", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9493177, + -19.9229191 + ] + }, + "id": "node/5036743422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5042848522", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9476609, + -19.9208989 + ] + }, + "id": "node/5042848522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5057410082", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1736297, + -26.7489446 + ] + }, + "id": "node/5057410082" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5059293817", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6789814, + -27.6409135 + ] + }, + "id": "node/5059293817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5064445640", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5521947, + -27.597936 + ] + }, + "id": "node/5064445640" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5082796175", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0843914, + -26.8943476 + ] + }, + "id": "node/5082796175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5090752566", + "access": "customers", + "addr:city": "São Paulo", + "addr:housenumber": "88", + "addr:postcode": "01025-000", + "addr:street": "Rua Carlos de Sousa Nazaré", + "addr:suburb": "Centro", + "amenity": "parking", + "bicycle_parking": "yes", + "fee": "yes", + "motorcycle": "yes", + "name": "Caverna's Park", + "opening_hours": "Mo-Sa 07:00-18:00", + "parking": "multi-storey", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6331818, + -23.5408895 + ] + }, + "id": "node/5090752566" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5094461223", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9399164, + -19.9236528 + ] + }, + "id": "node/5094461223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5103916694", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "8", + "covered": "yes", + "level": "-2", + "note": "Tem um vestiário com chuveiro no local", + "operator": "ANTT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8444662, + -15.8104292 + ] + }, + "id": "node/5103916694" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5110347647", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3607887, + -22.91458 + ] + }, + "id": "node/5110347647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5111323491", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:00-21:00; Sa 07:00-21:00; Su 10:00-21:00", + "operator": "Terminal Hidroviário de Guaíba", + "supervised": "yes", + "website": "https://www.travessiapoaguaiba.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.31119, + -30.107701 + ] + }, + "id": "node/5111323491" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5113887566", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5178893, + -3.735758 + ] + }, + "id": "node/5113887566" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5113887571", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5090966, + -3.7310726 + ] + }, + "id": "node/5113887571" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5115257789", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 10:00-23:00", + "operator": "Shopping Nova Olaria", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2200143, + -30.0393117 + ] + }, + "id": "node/5115257789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5115365025", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-19:00; Sa 10:00-17:00", + "operator": "5ª Avenida Center", + "supervised": "no", + "website": "http://www.5avenidacenter.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2062147, + -30.0286951 + ] + }, + "id": "node/5115365025" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5116249438", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "yes", + "fee": "no", + "level": "2", + "lit": "yes", + "operator": "Getúlio Vargas Prime Offices", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2234652, + -30.0548201 + ] + }, + "id": "node/5116249438" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5117805094", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "yes", + "name": "Estacionamento Shopping Barra" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5236184, + -13.0061333 + ] + }, + "id": "node/5117805094" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5125771452", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro Comercial Francisco Trein", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1595432, + -30.0114259 + ] + }, + "id": "node/5125771452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5125771453", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "14", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "TecnoPUC", + "supervised": "yes", + "website": "https://www.pucrs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1698341, + -30.0600103 + ] + }, + "id": "node/5125771453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5125771454", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro Comercial Francisco Trein", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1597864, + -30.0113912 + ] + }, + "id": "node/5125771454" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5125771455", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "14", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Aeroporto Internacional Salgado Filho", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1761149, + -29.9894837 + ] + }, + "id": "node/5125771455" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5125771493", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-20:00", + "operator": "Colégio Marista Champagnat", + "supervised": "yes", + "website": "http://colegiomarista.org.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1724711, + -30.05954 + ] + }, + "id": "node/5125771493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126584292", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Trend 24", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.194774, + -30.0217831 + ] + }, + "id": "node/5126584292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126584293", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 10:00-23:45", + "operator": "Complex Skatepark", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1727483, + -30.0395576 + ] + }, + "id": "node/5126584293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126584294", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:30-24:00; Sa 09:00-17:00; Su 10:00-15:00", + "operator": "Top One Barão do Amazonas", + "supervised": "no", + "website": "https://www.toponeacademia.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1866418, + -30.0497114 + ] + }, + "id": "node/5126584294" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126584375", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Igreja Evangélica Luterana do Brasil Centro Administrativo", + "supervised": "yes", + "website": "https://www.ielb.org.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1943507, + -30.0304952 + ] + }, + "id": "node/5126584375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126584550", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:30-23:30", + "operator": "Trend City Center", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2304653, + -30.0470874 + ] + }, + "id": "node/5126584550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126731036", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Edificio Itamogi", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2103323, + -30.0301384 + ] + }, + "id": "node/5126731036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126731037", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Mantra", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2059515, + -30.0307572 + ] + }, + "id": "node/5126731037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126731038", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Oi Gracia", + "supervised": "no", + "website": "https://www.oigracia.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2110769, + -30.0349947 + ] + }, + "id": "node/5126731038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126731039", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 06:30-22:30; Sa 09:00-18:00; Su 09:00-18:00", + "operator": "Bio Express Parcão", + "supervised": "no", + "website": "https://bioexpressacademia.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2014631, + -30.0249901 + ] + }, + "id": "node/5126731039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126731061", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo do PoA Bikes", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Scarpazza", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2109044, + -30.0355896 + ] + }, + "id": "node/5126731061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126731063", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Casa Catarinense", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2107107, + -30.0356904 + ] + }, + "id": "node/5126731063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126759455", + "access": "yes", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Café República Cup", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2230693, + -30.0382921 + ] + }, + "id": "node/5126759455" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126759456", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Estética Nadya", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2234886, + -30.0386642 + ] + }, + "id": "node/5126759456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126759457", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "tree", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Casa de Pelotas", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2239329, + -30.0388315 + ] + }, + "id": "node/5126759457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126759459", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Centro", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2213478, + -30.032964 + ] + }, + "id": "node/5126759459" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126759460", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Centro", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2215586, + -30.0330211 + ] + }, + "id": "node/5126759460" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126777213", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "operator": "Praia de Belas Business Center", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2292031, + -30.0573699 + ] + }, + "id": "node/5126777213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126777214", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "yes", + "fee": "no", + "lit": "yes", + "operator": "Estacionamento Fórum Central", + "supervised": "yes", + "website": "https://www.tjrs.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2310709, + -30.0459664 + ] + }, + "id": "node/5126777214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5129554021", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "UFRGS Campus Saúde", + "supervised": "no", + "website": "http://www.ufrgs.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2056549, + -30.0418786 + ] + }, + "id": "node/5129554021" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134071995", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "14", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Escola Estadual Presidente Kennedy", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.101657, + -29.9558801 + ] + }, + "id": "node/5134071995" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134071999", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-22:00; Su 13:00-22:00", + "operator": "Lupy Lan House", + "supervised": "no", + "website": "http://www.lupylanhouse.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1800443, + -29.9633057 + ] + }, + "id": "node/5134071999" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134072018", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-17:00", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.176981, + -29.9542479 + ] + }, + "id": "node/5134072018" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134072020", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "15", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Prefeitura", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.178812, + -29.8874212 + ] + }, + "id": "node/5134072020" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260616", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "50", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:30-22:00; Sa 08:00-14:00", + "operator": "ULBRA", + "supervised": "yes", + "website": "https://www.ulbra.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1632192, + -29.8854535 + ] + }, + "id": "node/5134260616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134262121", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Unilasalle", + "supervised": "no", + "website": "https://www.unilasalle.edu.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.180225, + -29.9174181 + ] + }, + "id": "node/5134262121" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134262132", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:30; Su 08:00-20:30", + "operator": "Asun", + "supervised": "yes", + "website": "http://www.asun.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1037146, + -29.9532836 + ] + }, + "id": "node/5134262132" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134262135", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 10:00-15:00", + "operator": "Caixa Econômica Federal", + "supervised": "yes", + "website": "https://www.caixa.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.103, + -29.953316 + ] + }, + "id": "node/5134262135" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134262152", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:00", + "operator": "Farmácias Associadas", + "supervised": "no", + "website": "https://www.farmaciasassociadas.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0944215, + -29.9542459 + ] + }, + "id": "node/5134262152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5135159090", + "access": "customers", + "amenity": "bicycle_parking", + "covered": "no", + "operator": "Casa Thomas Jefferson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8750581, + -15.7689336 + ] + }, + "id": "node/5135159090" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5141096434", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9339286, + -19.9216143 + ] + }, + "id": "node/5141096434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5141096435", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9350659, + -19.9243049 + ] + }, + "id": "node/5141096435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5141096436", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9349868, + -19.9244363 + ] + }, + "id": "node/5141096436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5153006844", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no", + "fee": "no", + "opening_hours": "Mo-Sa 08:30-22:00", + "surface": "asphalt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8161658, + -29.70444 + ] + }, + "id": "node/5153006844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5153998123", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4389041, + -12.9700487 + ] + }, + "id": "node/5153998123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188731", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "11", + "check_date:fee": "2022-11-15", + "covered": "no", + "fee": "no", + "lit": "yes", + "name": "Bourbon Hipermercado", + "opening_hours": "Mo-Sa 08:00-22:00", + "supervised": "no", + "website": "https://www.zaffari.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.130888, + -29.6935829 + ] + }, + "id": "node/5158188731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188732", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "name": "Caixa Econômica Federal", + "opening_hours": "Mo-Fr 11:00-16:00", + "supervised": "no", + "website": "https://www.caixa.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1279888, + -29.6846517 + ] + }, + "id": "node/5158188732" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188733", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "name": "Fundação Escola Técnica Liberato Salzano Vieira da Cunha", + "supervised": "no", + "website": "https://www.liberato.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1487939, + -29.6927686 + ] + }, + "id": "node/5158188733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188735", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "32", + "covered": "yes", + "fee": "no", + "lit": "yes", + "name": "Trensurb", + "opening_hours": "Mo-Su, PH 05:00-23:20", + "supervised": "no", + "website": "https://www.trensurb.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.134878, + -29.7156848 + ] + }, + "id": "node/5158188735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188736", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "50", + "covered": "yes", + "fee": "no", + "lit": "yes", + "name": "Trensurb", + "opening_hours": "Mo-Su, PH 05:00-23:20", + "supervised": "no", + "website": "https://www.trensurb.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1404305, + -29.7299404 + ] + }, + "id": "node/5158188736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188737", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "50", + "covered": "yes", + "fee": "no", + "lit": "yes", + "name": "Trensurb", + "opening_hours": "Mo-Su, PH 05:00-23:20", + "supervised": "no", + "website": "https://www.trensurb.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1451076, + -29.7488244 + ] + }, + "id": "node/5158188737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188773", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Indigo Universidade Feevale", + "supervised": "no", + "website": "https://parkindigo.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1191553, + -29.6661917 + ] + }, + "id": "node/5158188773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5158188799", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:30-18:30", + "operator": "Lojas Lebes", + "supervised": "no", + "website": "https://www.lebes.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1355725, + -29.68464 + ] + }, + "id": "node/5158188799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5159408164", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Pãozeiro", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2066045, + -30.0335633 + ] + }, + "id": "node/5159408164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5161881821", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9323021, + -19.9272323 + ] + }, + "id": "node/5161881821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5168316204", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "tree", + "capacity": "35", + "covered": "yes", + "fee": "no", + "lit": "yes", + "name": "Trensurb", + "opening_hours": "Mo-Su, PH 04:50-23:20", + "supervised": "no", + "website": "https://www.trensurb.gov.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1351127, + -29.7010701 + ] + }, + "id": "node/5168316204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5168316210", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "11", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1488571, + -29.8232136 + ] + }, + "id": "node/5168316210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5168316211", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "bollard", + "capacity": "24", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Prefeitura", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1655784, + -29.8332837 + ] + }, + "id": "node/5168316211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5168316212", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Agafarma", + "supervised": "no", + "website": "https://www.agafarma.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.177341, + -29.9539069 + ] + }, + "id": "node/5168316212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5172829911", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.317111, + -30.3406897 + ] + }, + "id": "node/5172829911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5180238054", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3172699, + -30.33988 + ] + }, + "id": "node/5180238054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5182527277", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3257363, + -30.3332142 + ] + }, + "id": "node/5182527277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5182684787", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "check_date:capacity": "2025-05-15", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1766373, + -26.7375573 + ] + }, + "id": "node/5182684787" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5200301954", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8852678, + -15.7743234 + ] + }, + "id": "node/5200301954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5200301955", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8851338, + -15.7743037 + ] + }, + "id": "node/5200301955" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5204740295", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.225736, + -22.9773635 + ] + }, + "id": "node/5204740295" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5209399133", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1759068, + -26.7373777 + ] + }, + "id": "node/5209399133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5212766022", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9364494, + -19.9362609 + ] + }, + "id": "node/5212766022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5212938524", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9384793, + -19.937364 + ] + }, + "id": "node/5212938524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5213370170", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1735595, + -26.7391569 + ] + }, + "id": "node/5213370170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5245899510", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "surface": "grass" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7943831, + -29.6918683 + ] + }, + "id": "node/5245899510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5247846949", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7181918, + -29.6992484 + ] + }, + "id": "node/5247846949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5256936024", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9065344, + -22.76713 + ] + }, + "id": "node/5256936024" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5259802876", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8665868, + -21.315996 + ] + }, + "id": "node/5259802876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5264259262", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.8058064, + -22.229798 + ] + }, + "id": "node/5264259262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5264259278", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.8129604, + -22.2180357 + ] + }, + "id": "node/5264259278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5264259279", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.8119221, + -22.217933 + ] + }, + "id": "node/5264259279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5265134350", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.8359152, + -22.2132751 + ] + }, + "id": "node/5265134350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5266030395", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.792798, + -29.6849585 + ] + }, + "id": "node/5266030395" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5266287489", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7031947, + -23.5258012 + ] + }, + "id": "node/5266287489" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5276821934", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5561022, + -22.9023225 + ] + }, + "id": "node/5276821934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5283610321", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9386372, + -19.931415 + ] + }, + "id": "node/5283610321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5283922221", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9368193, + -19.9324597 + ] + }, + "id": "node/5283922221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5287223421", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "112", + "covered": "no", + "fee": "no", + "operator": "Prefeitura Municipal de Campinas", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1531441, + -22.8613808 + ] + }, + "id": "node/5287223421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5291977443", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6895895, + -3.936744 + ] + }, + "id": "node/5291977443" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5296220677", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:00-22:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1939283, + -30.0224609 + ] + }, + "id": "node/5296220677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5296220684", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário da BikeTech", + "fee": "no", + "lit": "yes", + "opening_hours": "Tu-Sa 09:00-20:00; Su 10:00-15:00", + "operator": "Love It", + "supervised": "no", + "website": "http://www.lojaloveit.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1937236, + -30.0225931 + ] + }, + "id": "node/5296220684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5296220686", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Diego Andino Pâtisserie", + "supervised": "no", + "website": "https://www.diegoandino.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.188102, + -30.0301533 + ] + }, + "id": "node/5296220686" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5296220687", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "I Love CB", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2262231, + -30.0404391 + ] + }, + "id": "node/5296220687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5296220688", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 07:00-22:00; Sa 07:00-21:00; Su 07:00-20:00", + "operator": "Clube do Comércio Sede Esportiva", + "supervised": "no", + "website": "https://www.clubedocomerciopoa.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2264472, + -30.0502123 + ] + }, + "id": "node/5296220688" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5298040662", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8610657, + -15.7673267 + ] + }, + "id": "node/5298040662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5298101277", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "operator": "Ferroviário Futebol Clube", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8376467, + -23.0518846 + ] + }, + "id": "node/5298101277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5299319053", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "18", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9134684, + -15.8141841 + ] + }, + "id": "node/5299319053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5300766665", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6242253, + -23.7170083 + ] + }, + "id": "node/5300766665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5303759540", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0258853, + -28.4751667 + ] + }, + "id": "node/5303759540" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5306733107", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "PanVel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2552465, + -30.1133503 + ] + }, + "id": "node/5306733107" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5309977773", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1477149, + -29.8225456 + ] + }, + "id": "node/5309977773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5309977779", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "17", + "covered": "yes", + "fee": "no", + "lit": "yes", + "operator": "MED Gastro", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.212254, + -30.0277228 + ] + }, + "id": "node/5309977779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5314133413", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 10:00-22:00; Su 14:00-20:00", + "operator": "Bourbon Shopping Ipiranga", + "supervised": "yes", + "website": "https://www.bourbonshopping.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1875423, + -30.054423 + ] + }, + "id": "node/5314133413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5316639582", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Su-Sa 07:30-23:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2312966, + -30.0972634 + ] + }, + "id": "node/5316639582" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5316828811", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1775586, + -22.9380714 + ] + }, + "id": "node/5316828811" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5320468010", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9065826, + -22.7670632 + ] + }, + "id": "node/5320468010" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5321137822", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4884048, + -13.0142277 + ] + }, + "id": "node/5321137822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5326039530", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Banco do Brasil", + "smoothness": "excellent", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.06308, + -26.9293166 + ] + }, + "id": "node/5326039530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5333275177", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1938665, + -22.976446 + ] + }, + "id": "node/5333275177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5334962528", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Prefeitura", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.5053029, + -29.1702756 + ] + }, + "id": "node/5334962528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5340026364", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Água Doce Aquática e Fitness", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1788805, + -26.7319751 + ] + }, + "id": "node/5340026364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341080414", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3324814, + -30.3362254 + ] + }, + "id": "node/5341080414" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341824445", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0141543, + -26.7739115 + ] + }, + "id": "node/5341824445" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341833994", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "Supermercado Econômico", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1739853, + -26.7505349 + ] + }, + "id": "node/5341833994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5343200402", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "fee": "no", + "operator": "Casa do Sono" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1785544, + -26.7315614 + ] + }, + "id": "node/5343200402" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5344921439", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3216077, + -30.3346373 + ] + }, + "id": "node/5344921439" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5344976870", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5741079, + -27.600772 + ] + }, + "id": "node/5344976870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5345601251", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0638085, + -26.4807821 + ] + }, + "id": "node/5345601251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5346029834", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3343013, + -30.3443355 + ] + }, + "id": "node/5346029834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5346029854", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3348614, + -30.3496926 + ] + }, + "id": "node/5346029854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5347153660", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "operator": "DeRose Method Lago Sul" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8733867, + -15.8301136 + ] + }, + "id": "node/5347153660" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5347302343", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3300614, + -30.3460235 + ] + }, + "id": "node/5347302343" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5349601595", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1763634, + -26.7395986 + ] + }, + "id": "node/5349601595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5352840063", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "high_capacity", + "capacity": "30", + "covered": "yes", + "operator": "Prefeitura de Queimados" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5595726, + -22.721746 + ] + }, + "id": "node/5352840063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5353466490", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9238564, + -22.7739589 + ] + }, + "id": "node/5353466490" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5358102278", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9147017, + -22.7737111 + ] + }, + "id": "node/5358102278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5361887762", + "amenity": "bicycle_parking", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3158591, + -30.3294898 + ] + }, + "id": "node/5361887762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5361887781", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3130904, + -30.3215162 + ] + }, + "id": "node/5361887781" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5362348341", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7165752, + -23.7302603 + ] + }, + "id": "node/5362348341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5366683945", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9198763, + -22.774881 + ] + }, + "id": "node/5366683945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5367007198", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "68", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2749863, + -25.4490716 + ] + }, + "id": "node/5367007198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5367728333", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1789729, + -26.7313985 + ] + }, + "id": "node/5367728333" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5367982082", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1748436, + -26.7505804 + ] + }, + "id": "node/5367982082" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5368723345", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "tree", + "capacity": "10", + "covered": "no", + "operator": "Supermercado Marcon" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8900392, + -23.039273 + ] + }, + "id": "node/5368723345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5369283521", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "bicycle_parking", + "covered": "yes", + "fee": "no", + "operator": "Itatiaia Móveis", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9611769, + -21.1052771 + ] + }, + "id": "node/5369283521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5375485243", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3278754, + -30.3415201 + ] + }, + "id": "node/5375485243" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5375822422", + "amenity": "bicycle_parking", + "operator": "TRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8919052, + -15.7591543 + ] + }, + "id": "node/5375822422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5379677209", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1678242, + -26.7781057 + ] + }, + "id": "node/5379677209" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5381069142", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.2867437, + -30.3517436 + ] + }, + "id": "node/5381069142" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5385798431", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3234856, + -30.3344128 + ] + }, + "id": "node/5385798431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5405434922", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 08:00-21:00; Su 08:00-12:30,15:00-20:30", + "operator": "UniSuper Humaitá", + "supervised": "no", + "website": "https://www.unisuper.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1892764, + -29.9785303 + ] + }, + "id": "node/5405434922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5405435133", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1903883, + -29.9802609 + ] + }, + "id": "node/5405435133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5405435145", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "description": "Paraciclos da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2237576, + -30.0331171 + ] + }, + "id": "node/5405435145" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5405435151", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2116346, + -30.0331455 + ] + }, + "id": "node/5405435151" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5405435161", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 09:00-22:00; Sa-Su 10:00-22:00", + "operator": "La Tasca", + "supervised": "no", + "website": "https://www.latasca.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2345084, + -30.0337575 + ] + }, + "id": "node/5405435161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5405435170", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Sa 07:30-22:00; Su 09:00-20:00", + "operator": "Panvel", + "supervised": "no", + "website": "https://www.panvel.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2031871, + -30.0740458 + ] + }, + "id": "node/5405435170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5405435179", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2286138, + -30.1391683 + ] + }, + "id": "node/5405435179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5409724396", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "tree", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2325372, + -30.0441926 + ] + }, + "id": "node/5409724396" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5411007735", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3188216, + -30.3427238 + ] + }, + "id": "node/5411007735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5412945675", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3276849, + -30.3435432 + ] + }, + "id": "node/5412945675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5412945680", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3266349, + -30.3414478 + ] + }, + "id": "node/5412945680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5413409134", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Centro de Estudos Budistas Bodisatva", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.215235, + -30.0327573 + ] + }, + "id": "node/5413409134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5416366188", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,13:30-17:30", + "operator": "EMATER", + "supervised": "no", + "website": "http://www.emater.tche.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2190877, + -30.0554696 + ] + }, + "id": "node/5416366188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5418418545", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1762561, + -26.7410307 + ] + }, + "id": "node/5418418545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5420875820", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7185509, + -23.729725 + ] + }, + "id": "node/5420875820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5425808392", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0688427, + -26.9173155 + ] + }, + "id": "node/5425808392" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5427479480", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3091698, + -20.3647158 + ] + }, + "id": "node/5427479480" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5427556111", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3046429, + -20.374831 + ] + }, + "id": "node/5427556111" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5429103693", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3052377, + -20.3598042 + ] + }, + "id": "node/5429103693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5430432105", + "amenity": "bicycle_parking", + "capacity": "15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3151293, + -30.3372777 + ] + }, + "id": "node/5430432105" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5441544321", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8971533, + -15.7992727 + ] + }, + "id": "node/5441544321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5446083595", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3201406, + -30.3288401 + ] + }, + "id": "node/5446083595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5448142623", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5755716, + -23.5289182 + ] + }, + "id": "node/5448142623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5453991421", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6292799, + -23.5763738 + ] + }, + "id": "node/5453991421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5454037721", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6328114, + -23.5797389 + ] + }, + "id": "node/5454037721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5456505912", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Oficina do Pilates", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2058312, + -30.0349222 + ] + }, + "id": "node/5456505912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5456506727", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 11:00-19:00; Sa 10:00-18:00", + "operator": "Insecta Shoes", + "supervised": "no", + "website": "https://www.insectashoes.com/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2056114, + -30.0355811 + ] + }, + "id": "node/5456506727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5456506732", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Tribunal Regional do Trabalho", + "supervised": "no", + "website": "https://www.trt4.jus.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2274185, + -30.0485108 + ] + }, + "id": "node/5456506732" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459382715", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15", + "covered": "yes", + "operator": "Instituto de Física da USP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7345435, + -23.5607286 + ] + }, + "id": "node/5459382715" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459383821", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "operator": "Instituto de Física da USP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.735342, + -23.5600183 + ] + }, + "id": "node/5459383821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459383822", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "30", + "covered": "no", + "level": "-1", + "operator": "IAG-USP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7339358, + -23.5595678 + ] + }, + "id": "node/5459383822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459383823", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "yes", + "operator": "IO-USP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7323718, + -23.5615939 + ] + }, + "id": "node/5459383823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459383824", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "operator": "IFUSP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7361199, + -23.5614355 + ] + }, + "id": "node/5459383824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459392180", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "yes", + "fee": "no", + "operator": "FAU-USP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7303044, + -23.5600889 + ] + }, + "id": "node/5459392180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459392181", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "50", + "covered": "yes", + "operator": "FEA-USP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.728198, + -23.5579608 + ] + }, + "id": "node/5459392181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459392182", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7264018, + -23.5601993 + ] + }, + "id": "node/5459392182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5459447074", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "capacity": "86", + "covered": "yes", + "description": "Ao lado da Estação Fradique Coutinho", + "fee": "no", + "name": "Bicicletário Estação Fradique Coutinho", + "opening_hours": "Mo-Su 04:40-24:00", + "operator": "ViaQuatro", + "operator:type": "private", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6844025, + -23.5660838 + ] + }, + "id": "node/5459447074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5463292669", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9198419, + -27.0941875 + ] + }, + "id": "node/5463292669" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5465546283", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1873125, + -22.9495669 + ] + }, + "id": "node/5465546283" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5465744243", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Cresol" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1750635, + -26.7419761 + ] + }, + "id": "node/5465744243" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5465744244", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1751491, + -26.7419335 + ] + }, + "id": "node/5465744244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5471566524", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.019425, + -15.8362145 + ] + }, + "id": "node/5471566524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5474340394", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "16", + "covered": "no", + "free": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.717133, + -29.7114201 + ] + }, + "id": "node/5474340394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5479143388", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "yes", + "fee": "no", + "operator": "Rede Top Supermercados" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1749462, + -26.7340542 + ] + }, + "id": "node/5479143388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5479143390", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "Rede Top Supermercados" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1745418, + -26.7337233 + ] + }, + "id": "node/5479143390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5479168604", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1755185, + -26.7419725 + ] + }, + "id": "node/5479168604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5509799028", + "access": "private", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3243102, + -22.7093894 + ] + }, + "id": "node/5509799028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5510773375", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3451596, + -23.0096289 + ] + }, + "id": "node/5510773375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5512068923", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.9105614, + -4.0968036 + ] + }, + "id": "node/5512068923" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5521199421", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0731425, + -26.9085957 + ] + }, + "id": "node/5521199421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5522508054", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3217395, + -25.4728212 + ] + }, + "id": "node/5522508054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5544624921", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "200", + "covered": "yes", + "operator": "Supermercado Formosa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4047387, + -1.3679709 + ] + }, + "id": "node/5544624921" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5544624923", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "200", + "covered": "yes", + "operator": "Preço Baixo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4065398, + -1.3596952 + ] + }, + "id": "node/5544624923" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5544624927", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4049562, + -1.3540822 + ] + }, + "id": "node/5544624927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5544624928", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "capacity": "10", + "covered": "no", + "operator": "Portugal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4051023, + -1.3540632 + ] + }, + "id": "node/5544624928" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5544624929", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "informal", + "capacity": "200", + "covered": "no", + "operator": "Colégio Impacto" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.406705, + -1.3659077 + ] + }, + "id": "node/5544624929" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5544624930", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "200", + "covered": "yes", + "operator": "Assaí Atacadista" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4290784, + -1.3592089 + ] + }, + "id": "node/5544624930" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5582892954", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.069259, + -26.9143728 + ] + }, + "id": "node/5582892954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5598950961", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6441913, + -26.9919583 + ] + }, + "id": "node/5598950961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5599521052", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.282258, + -26.8243341 + ] + }, + "id": "node/5599521052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5599521053", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2820126, + -26.8252795 + ] + }, + "id": "node/5599521053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5600995439", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0556408, + -26.9222768 + ] + }, + "id": "node/5600995439" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5604450864", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5213146, + -3.7565473 + ] + }, + "id": "node/5604450864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5609477893", + "access": "private", + "addr:street": "Federação Espírita Brasileira", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "description": "Bicicletário do tipo \"entorta roda\" descoberto, porém em frente à guarita de segurança da FEB", + "operator": "Federação Espírita Brasileira", + "phone": "+55 61 2101-6161" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8740793, + -15.7767474 + ] + }, + "id": "node/5609477893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5615968958", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.070155, + -26.9147289 + ] + }, + "id": "node/5615968958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5617185961", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4314139, + -12.9690462 + ] + }, + "id": "node/5617185961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5620370777", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "operator": "Pão de Acúcar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4482814, + -12.9886928 + ] + }, + "id": "node/5620370777" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5624753207", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3056139, + -20.3359208 + ] + }, + "id": "node/5624753207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5625645829", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1851033, + -22.9686074 + ] + }, + "id": "node/5625645829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5629478422", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5044591, + -12.9811386 + ] + }, + "id": "node/5629478422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5633253558", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator": "CEFET-MG Campus Nova Gameleira" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9996279, + -19.9391886 + ] + }, + "id": "node/5633253558" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5644825575", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7175028, + -29.7016682 + ] + }, + "id": "node/5644825575" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5644826601", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7194545, + -29.7142365 + ] + }, + "id": "node/5644826601" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5644928294", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1763932, + -26.7376878 + ] + }, + "id": "node/5644928294" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5646639532", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0831777, + -26.8867835 + ] + }, + "id": "node/5646639532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5648301651", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Forum da Comarca de Belford Roxo", + "pt:bicycle_parking": "grelha" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.384817, + -22.7365919 + ] + }, + "id": "node/5648301651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5653712414", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "14", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6008163, + -22.8932797 + ] + }, + "id": "node/5653712414" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5653713362", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5993641, + -22.890246 + ] + }, + "id": "node/5653713362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5653713363", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5994993, + -22.8901519 + ] + }, + "id": "node/5653713363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5653959056", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1674547, + -26.7170854 + ] + }, + "id": "node/5653959056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5678510022", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4903779, + -13.0131895 + ] + }, + "id": "node/5678510022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5688129178", + "amenity": "bicycle_parking", + "capacity": "1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6790338, + -23.5586711 + ] + }, + "id": "node/5688129178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5688129179", + "amenity": "bicycle_parking", + "capacity": "1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6792238, + -23.5585038 + ] + }, + "id": "node/5688129179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5688129180", + "amenity": "bicycle_parking", + "capacity": "1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6791017, + -23.5583056 + ] + }, + "id": "node/5688129180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5726852622", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "cargo_bike": "no", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4402808, + -12.9941605 + ] + }, + "id": "node/5726852622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5728708118", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "description": "Bicicletário do SESC Estreito", + "fee": "no", + "opening_hours": "24/7", + "operator": "SESC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5776137, + -27.5906457 + ] + }, + "id": "node/5728708118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5736473906", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "check_date": "2025-06-16", + "check_date:capacity": "2025-06-16", + "covered": "no", + "operator": "LIFE Academia" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9043463, + -8.0384136 + ] + }, + "id": "node/5736473906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5737557592", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5256222, + -3.7302911 + ] + }, + "id": "node/5737557592" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5737557593", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5262623, + -3.7295788 + ] + }, + "id": "node/5737557593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5737806572", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1682956, + -26.7158078 + ] + }, + "id": "node/5737806572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5744481123", + "amenity": "bicycle_parking", + "operator": "bicicletário" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.4711039, + -22.8952365 + ] + }, + "id": "node/5744481123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752222643", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.236941, + -30.0428245 + ] + }, + "id": "node/5752222643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752222645", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2383673, + -30.0425264 + ] + }, + "id": "node/5752222645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752222665", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2363267, + -30.0427083 + ] + }, + "id": "node/5752222665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752222691", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2400726, + -30.0420449 + ] + }, + "id": "node/5752222691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752222849", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2410936, + -30.041394 + ] + }, + "id": "node/5752222849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752222851", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2416036, + -30.0390353 + ] + }, + "id": "node/5752222851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752222852", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.241525, + -30.0398519 + ] + }, + "id": "node/5752222852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223147", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "layer": "1", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2407829, + -30.0414735 + ] + }, + "id": "node/5752223147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223188", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "check_date": "2023-07-14", + "covered": "no", + "fee": "no", + "layer": "1", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2414054, + -30.0392797 + ] + }, + "id": "node/5752223188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223384", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2416655, + -30.0362669 + ] + }, + "id": "node/5752223384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223594", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2414616, + -30.0342923 + ] + }, + "id": "node/5752223594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223658", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2413563, + -30.0343851 + ] + }, + "id": "node/5752223658" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223682", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2412248, + -30.0355983 + ] + }, + "id": "node/5752223682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223685", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2413775, + -30.0359801 + ] + }, + "id": "node/5752223685" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223692", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "layer": "1", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2414656, + -30.0358445 + ] + }, + "id": "node/5752223692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5752223771", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2419501, + -30.0349095 + ] + }, + "id": "node/5752223771" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5754754199", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5238438, + -12.9897151 + ] + }, + "id": "node/5754754199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5766304757", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "name": "paraciclo \"U\" invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6648463, + -23.5268074 + ] + }, + "id": "node/5766304757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5777081374", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1738901, + -26.7488308 + ] + }, + "id": "node/5777081374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5783047773", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1760975, + -26.7293074 + ] + }, + "id": "node/5783047773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5783047774", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1761361, + -26.7297914 + ] + }, + "id": "node/5783047774" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5788356454", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wide_stands", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2462695, + -26.8838159 + ] + }, + "id": "node/5788356454" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5810367160", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6771907, + -23.5599847 + ] + }, + "id": "node/5810367160" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5824643862", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0591908, + -26.9224095 + ] + }, + "id": "node/5824643862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5836796360", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4990354, + -3.7272505 + ] + }, + "id": "node/5836796360" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5837321104", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.177555, + -26.735749 + ] + }, + "id": "node/5837321104" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5837321108", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.177615, + -26.7380609 + ] + }, + "id": "node/5837321108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842263915", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "description": "Paraciclo da Braskem", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2026657, + -30.0742018 + ] + }, + "id": "node/5842263915" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5861828260", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "28", + "compressed_air": "yes", + "covered": "yes", + "operator": "Shopping Parangaba" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5614808, + -3.7755285 + ] + }, + "id": "node/5861828260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5866266188", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4855239, + -13.0125397 + ] + }, + "id": "node/5866266188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5877302618", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0655811, + -26.9196796 + ] + }, + "id": "node/5877302618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5880242674", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1639478, + -26.7106897 + ] + }, + "id": "node/5880242674" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5889582692", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7264048, + -29.7170878 + ] + }, + "id": "node/5889582692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359127", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1741361, + -26.7500511 + ] + }, + "id": "node/5895359127" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5897122635", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Farmácias São João", + "supervised": "no", + "website": "http://www.saojoaofarmacias.com.br/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2198896, + -30.1407499 + ] + }, + "id": "node/5897122635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5897913383", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5228267, + -27.6026739 + ] + }, + "id": "node/5897913383" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5900621611", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8967281, + -8.0859587 + ] + }, + "id": "node/5900621611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5903616874", + "amenity": "bicycle_parking", + "bicycle_parking": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3855745, + -22.9714732 + ] + }, + "id": "node/5903616874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5907441335", + "amenity": "bicycle_parking", + "bicycle_parking": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4633358, + -22.9823979 + ] + }, + "id": "node/5907441335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5907441398", + "amenity": "bicycle_parking", + "bicycle_parking": "rack" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4631399, + -22.982487 + ] + }, + "id": "node/5907441398" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5928845611", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "1510", + "addr:postcode": "05404-004", + "addr:street": "Rua Artur de Azevedo", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6854847, + -23.5647948 + ] + }, + "id": "node/5928845611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5967963363", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1749332, + -26.7435113 + ] + }, + "id": "node/5967963363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5972416250", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4287321, + -22.5573829 + ] + }, + "id": "node/5972416250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5972416251", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "30", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.429762, + -22.5554855 + ] + }, + "id": "node/5972416251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5972416252", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.429526, + -22.5552031 + ] + }, + "id": "node/5972416252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5972416253", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4296616, + -22.554163 + ] + }, + "id": "node/5972416253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5991993435", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0696313, + -26.9147331 + ] + }, + "id": "node/5991993435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5991993722", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0578724, + -26.9221512 + ] + }, + "id": "node/5991993722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5993299772", + "addr:city": "São Paulo", + "addr:housenumber": "1321", + "addr:postcode": "05404-013", + "addr:street": "Rua Artur de Azevedo", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6838491, + -23.5639865 + ] + }, + "id": "node/5993299772" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5993982657", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "210", + "addr:postcode": "05415-020", + "addr:street": "Rua Doutor Virgílio de Carvalho Pinto", + "amenity": "bicycle_parking", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6832909, + -23.5637021 + ] + }, + "id": "node/5993982657" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5993983088", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "1239", + "addr:postcode": "05404-013", + "addr:street": "Rua Artur de Azevedo", + "amenity": "bicycle_parking", + "capacity": "4", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6832282, + -23.5636183 + ] + }, + "id": "node/5993983088" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5996803907", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0483176, + -22.8761111 + ] + }, + "id": "node/5996803907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5999150350", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Dolce Gusto", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.5043461, + -29.1692282 + ] + }, + "id": "node/5999150350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6026258678", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1035746, + -26.874983 + ] + }, + "id": "node/6026258678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6033311373", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0641032, + -26.9228376 + ] + }, + "id": "node/6033311373" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6041789735", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5133122, + -3.7194684 + ] + }, + "id": "node/6041789735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6041789736", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5142462, + -3.7191572 + ] + }, + "id": "node/6041789736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6041789737", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5162966, + -3.7189449 + ] + }, + "id": "node/6041789737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6051793333", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3717565, + -22.9996066 + ] + }, + "id": "node/6051793333" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6053755043", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1735763, + -26.7269475 + ] + }, + "id": "node/6053755043" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6072355979", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.198012, + -23.3268259 + ] + }, + "id": "node/6072355979" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6086878712", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4514656, + -13.0031981 + ] + }, + "id": "node/6086878712" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6095304315", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5198755, + -3.7186384 + ] + }, + "id": "node/6095304315" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6095304316", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5123364, + -3.720015 + ] + }, + "id": "node/6095304316" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6101034211", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.509275, + -3.7212432 + ] + }, + "id": "node/6101034211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6101034212", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5170855, + -3.7188932 + ] + }, + "id": "node/6101034212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6101034213", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5162953, + -3.7237167 + ] + }, + "id": "node/6101034213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6103813285", + "amenity": "bicycle_parking", + "operator": "Google Campus" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6498982, + -23.5709449 + ] + }, + "id": "node/6103813285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6109357785", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.582155, + -23.5841616 + ] + }, + "id": "node/6109357785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6109377185", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5872605, + -23.5767703 + ] + }, + "id": "node/6109377185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6111812748", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "operator": "Fridas Café Bar" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6779718, + -23.5600909 + ] + }, + "id": "node/6111812748" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6125822691", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4141186, + -22.9691829 + ] + }, + "id": "node/6125822691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6137617285", + "amenity": "bicycle_parking", + "operator": "Comunidade da Resina" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.4185411, + -10.4745575 + ] + }, + "id": "node/6137617285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6169468207", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2030201, + -26.7227664 + ] + }, + "id": "node/6169468207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6172135590", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3516773, + -22.8970606 + ] + }, + "id": "node/6172135590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6181787680", + "access": "yes", + "addr:housenumber": "776", + "addr:postcode": "66053-020", + "addr:street": "Rua Aristides Lobo", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "28", + "covered": "yes", + "fee": "yes", + "payment:cash": "yes", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4896505, + -1.4463885 + ] + }, + "id": "node/6181787680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6181821785", + "amenity": "bicycle_parking", + "operator": "McDonald's" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4527981, + -12.9851267 + ] + }, + "id": "node/6181821785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6188377709", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "operator": "Museu de Arte Sacra" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6315786, + -23.5311173 + ] + }, + "id": "node/6188377709" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6193411352", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5877979, + -23.5151526 + ] + }, + "id": "node/6193411352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6196373596", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.5470285, + -23.0086162 + ] + }, + "id": "node/6196373596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6198747285", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4893682, + -13.0127441 + ] + }, + "id": "node/6198747285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6208097414", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4417522, + -27.4308278 + ] + }, + "id": "node/6208097414" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6213783293", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Grützmacher Produtos Artesanais" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1609752, + -26.7012908 + ] + }, + "id": "node/6213783293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6215822276", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.456204, + -13.0063063 + ] + }, + "id": "node/6215822276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6219877205", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2664357, + -26.8465923 + ] + }, + "id": "node/6219877205" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6219877206", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "5", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2664732, + -26.8465982 + ] + }, + "id": "node/6219877206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6224096170", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1741744, + -26.7454906 + ] + }, + "id": "node/6224096170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6224096171", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.174222, + -26.74529 + ] + }, + "id": "node/6224096171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6238999118", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2927706, + -25.476497 + ] + }, + "id": "node/6238999118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6244306671", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "yes", + "fee": "no", + "operator": "Villa Aymoré" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1760891, + -22.9227974 + ] + }, + "id": "node/6244306671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6249454259", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "operator": "UFSCar", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8822588, + -21.9849685 + ] + }, + "id": "node/6249454259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6254182180", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Comunidade Evangélica em Testo Central" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1611656, + -26.8229255 + ] + }, + "id": "node/6254182180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6259002562", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.879366, + -21.9882257 + ] + }, + "id": "node/6259002562" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6259016496", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8786388, + -21.9820014 + ] + }, + "id": "node/6259016496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6259016501", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8783916, + -21.9829069 + ] + }, + "id": "node/6259016501" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6261024638", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1514574, + -26.8524026 + ] + }, + "id": "node/6261024638" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6261024672", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Academia Mind Fitness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1642581, + -26.8158153 + ] + }, + "id": "node/6261024672" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6263947703", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5094994, + -3.7431955 + ] + }, + "id": "node/6263947703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6263947704", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5092591, + -3.7432134 + ] + }, + "id": "node/6263947704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6268371469", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3117457, + -25.6446603 + ] + }, + "id": "node/6268371469" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6270520022", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8783095, + -21.9882274 + ] + }, + "id": "node/6270520022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6272970307", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8817425, + -21.9877663 + ] + }, + "id": "node/6272970307" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6274370261", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8821494, + -21.98719 + ] + }, + "id": "node/6274370261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6275173488", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.882468, + -21.9882844 + ] + }, + "id": "node/6275173488" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6284941226", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "operator": "Prefeitura Municipal de Laranjal Paulista" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8923192, + -23.0403019 + ] + }, + "id": "node/6284941226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6286876461", + "access": "yes", + "amenity": "bicycle_parking", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2045806, + -25.5313915 + ] + }, + "id": "node/6286876461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6313077122", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8847155, + -21.982458 + ] + }, + "id": "node/6313077122" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6313103183", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8807208, + -21.979946 + ] + }, + "id": "node/6313103183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6331672935", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "operator": "Selfit" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4487292, + -12.9928639 + ] + }, + "id": "node/6331672935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6332890847", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.0260901, + -19.3928775 + ] + }, + "id": "node/6332890847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6338906550", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0840326, + -26.8732679 + ] + }, + "id": "node/6338906550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6359576727", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2176707, + -20.1976153 + ] + }, + "id": "node/6359576727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6361077254", + "access": "customers", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no", + "level": "-2", + "opening_hours": "Mo-Su 06:00-23:00", + "operator": "Mobike" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6965033, + -23.5720285 + ] + }, + "id": "node/6361077254" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6374786600", + "access": "customers", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7172122, + -29.7017271 + ] + }, + "id": "node/6374786600" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6381164458", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8657035, + -15.7728468 + ] + }, + "id": "node/6381164458" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6404610665", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5615436, + -3.7953753 + ] + }, + "id": "node/6404610665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6407963340", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.9530954, + -8.2945442 + ] + }, + "id": "node/6407963340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6410644430", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "operator": "Coremma" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0798407, + -26.8958074 + ] + }, + "id": "node/6410644430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6415426539", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "fee": "no", + "operator": "Unifique" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1797795, + -26.7273254 + ] + }, + "id": "node/6415426539" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6418719588", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3522165, + -20.3207954 + ] + }, + "id": "node/6418719588" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6418727764", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6753715, + -23.5929771 + ] + }, + "id": "node/6418727764" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6419344986", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3515494, + -20.3227679 + ] + }, + "id": "node/6419344986" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6432178753", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "no", + "opening_hours": "24/7", + "operator": "Prefeitura Municipal de Curitiba", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.205921, + -25.4132118 + ] + }, + "id": "node/6432178753" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6438997245", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0634312, + -26.9228815 + ] + }, + "id": "node/6438997245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6441058426", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0854912, + -26.8814127 + ] + }, + "id": "node/6441058426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6445583350", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4978085, + -3.7374552 + ] + }, + "id": "node/6445583350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6447820886", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3513416, + -20.32254 + ] + }, + "id": "node/6447820886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6470584162", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "source": "Mapillary" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2951358, + -20.3133172 + ] + }, + "id": "node/6470584162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6475453161", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5193466, + -27.5985935 + ] + }, + "id": "node/6475453161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6514038364", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.717357, + -29.7021913 + ] + }, + "id": "node/6514038364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6515681897", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4394529, + -23.5086786 + ] + }, + "id": "node/6515681897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6518578331", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3071097, + -25.4803486 + ] + }, + "id": "node/6518578331" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6518875084", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5518968, + -27.5980695 + ] + }, + "id": "node/6518875084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6521579962", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4971487, + -3.7345197 + ] + }, + "id": "node/6521579962" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6528462391", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5010311, + -3.7365406 + ] + }, + "id": "node/6528462391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6528532312", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5210806, + -3.7313045 + ] + }, + "id": "node/6528532312" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6528532313", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5197837, + -3.728209 + ] + }, + "id": "node/6528532313" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6533759975", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5501519, + -27.5935367 + ] + }, + "id": "node/6533759975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6535987020", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9357349, + -8.0426148 + ] + }, + "id": "node/6535987020" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538644446", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6316681, + -22.7087857 + ] + }, + "id": "node/6538644446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647873", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6327696, + -22.7046141 + ] + }, + "id": "node/6538647873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647874", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6325497, + -22.7058302 + ] + }, + "id": "node/6538647874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647875", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6333946, + -22.7096159 + ] + }, + "id": "node/6538647875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647876", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6322171, + -22.7093882 + ] + }, + "id": "node/6538647876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647877", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6355698, + -22.7110114 + ] + }, + "id": "node/6538647877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647878", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6355966, + -22.7120332 + ] + }, + "id": "node/6538647878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647879", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6307579, + -22.7126963 + ] + }, + "id": "node/6538647879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647880", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6304119, + -22.7130254 + ] + }, + "id": "node/6538647880" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647881", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6312327, + -22.7135103 + ] + }, + "id": "node/6538647881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6538647882", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.634277, + -22.7063473 + ] + }, + "id": "node/6538647882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6542564797", + "amenity": "bicycle_parking", + "name": "Vila Urbana" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2655015, + -25.430875 + ] + }, + "id": "node/6542564797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6542587115", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6922017, + -23.5692193 + ] + }, + "id": "node/6542587115" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6542888758", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6356921, + -22.7112549 + ] + }, + "id": "node/6542888758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6548005900", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "1340", + "addr:postcode": "01451-001", + "addr:street": "Avenida Brigadeiro Faria Lima", + "amenity": "bicycle_parking", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6918732, + -23.5697305 + ] + }, + "id": "node/6548005900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6550117561", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6921977, + -23.568425 + ] + }, + "id": "node/6550117561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6550117562", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6921218, + -23.5685563 + ] + }, + "id": "node/6550117562" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6550117563", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6920437, + -23.5686996 + ] + }, + "id": "node/6550117563" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6554091147", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6327252, + -22.7091423 + ] + }, + "id": "node/6554091147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6556465128", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6317318, + -22.708434 + ] + }, + "id": "node/6556465128" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6557711448", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2546418, + -25.4354881 + ] + }, + "id": "node/6557711448" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6563514157", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "operator": "Rice" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4572253, + -13.0020218 + ] + }, + "id": "node/6563514157" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6578867918", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5137914, + -3.7352767 + ] + }, + "id": "node/6578867918" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6612061997", + "access": "yes", + "amenity": "bicycle_parking", + "name": "praca dito bike" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.3358394, + -15.5218306 + ] + }, + "id": "node/6612061997" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6624499964", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4975313, + -3.7366521 + ] + }, + "id": "node/6624499964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6625433753", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "969", + "addr:postcode": "03001-000", + "addr:street": "Avenida Rangel Pestana", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6247904, + -23.5471106 + ] + }, + "id": "node/6625433753" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6643621874", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1737781, + -26.7381502 + ] + }, + "id": "node/6643621874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6648419864", + "access": "private", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4630143, + -22.9830494 + ] + }, + "id": "node/6648419864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6681865932", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "1", + "cargo_bike": "no", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4611039, + -12.9910504 + ] + }, + "id": "node/6681865932" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6699566268", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5234338, + -27.6024893 + ] + }, + "id": "node/6699566268" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6701112056", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "operator": "Academia Movimento" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1768052, + -26.7417971 + ] + }, + "id": "node/6701112056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6707998345", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6356537, + -22.7122668 + ] + }, + "id": "node/6707998345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6707998361", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6302088, + -22.7124821 + ] + }, + "id": "node/6707998361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6707998362", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6315043, + -22.7121134 + ] + }, + "id": "node/6707998362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6727691467", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9499173, + -19.9317102 + ] + }, + "id": "node/6727691467" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6732713396", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2947502, + -20.2997231 + ] + }, + "id": "node/6732713396" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6779894986", + "amenity": "bicycle_parking", + "operator": "SmartFit" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4574125, + -12.9861484 + ] + }, + "id": "node/6779894986" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6795696821", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0850003, + -26.8944816 + ] + }, + "id": "node/6795696821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6796985103", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5629815, + -3.7948164 + ] + }, + "id": "node/6796985103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6799493385", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.1995582, + -5.8432644 + ] + }, + "id": "node/6799493385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6806028077", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "yes", + "capacity": "5", + "colour": "yellow", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Parque da Cidade", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8980534, + -15.7934652 + ] + }, + "id": "node/6806028077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6812469937", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6536923, + -23.5496483 + ] + }, + "id": "node/6812469937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6841191147", + "amenity": "bicycle_parking", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2834706, + -28.8576298 + ] + }, + "id": "node/6841191147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6844582935", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2608083, + -25.4346829 + ] + }, + "id": "node/6844582935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6845597766", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4965221, + -3.7341361 + ] + }, + "id": "node/6845597766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6856423718", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "indoor": "no", + "operator": "Parx", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.682209, + -23.5855093 + ] + }, + "id": "node/6856423718" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6877034368", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3494694, + -22.8590303 + ] + }, + "id": "node/6877034368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6893750907", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2900651, + -20.3305541 + ] + }, + "id": "node/6893750907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6902634385", + "access": "yes", + "amenity": "bicycle_parking", + "name": "Bicicletar Corporativo SDHDS", + "operator": "Prefeitura de Fortaleza", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4951894, + -3.8465928 + ] + }, + "id": "node/6902634385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6909388966", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8215458, + -22.4361195 + ] + }, + "id": "node/6909388966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6912282858", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2745558, + -25.4474429 + ] + }, + "id": "node/6912282858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6930726065", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5296224, + -3.7319897 + ] + }, + "id": "node/6930726065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6939866123", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1737627, + -26.7341653 + ] + }, + "id": "node/6939866123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6981696613", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0770729, + 0.019668 + ] + }, + "id": "node/6981696613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6982916185", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.508171, + -13.0019055 + ] + }, + "id": "node/6982916185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6983103026", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5078027, + -13.0010962 + ] + }, + "id": "node/6983103026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6983103028", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5084256, + -13.0015167 + ] + }, + "id": "node/6983103028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6983120681", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.508393, + -13.0014864 + ] + }, + "id": "node/6983120681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6987064220", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0828379, + -25.3701211 + ] + }, + "id": "node/6987064220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7040767139", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.489397, + -3.7348223 + ] + }, + "id": "node/7040767139" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7041673817", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1690044, + -26.7644091 + ] + }, + "id": "node/7041673817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7052890792", + "access": "private", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6540352, + -23.5989062 + ] + }, + "id": "node/7052890792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7065262227", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "fee": "no", + "operator": "Loja Marlou" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1643608, + -26.710187 + ] + }, + "id": "node/7065262227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7069816989", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6851277, + -23.5953783 + ] + }, + "id": "node/7069816989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7069816990", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6848764, + -23.5953069 + ] + }, + "id": "node/7069816990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7069816991", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6845685, + -23.5952161 + ] + }, + "id": "node/7069816991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7069816992", + "amenity": "bicycle_parking", + "bicycle_parking": "shed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6851418, + -23.5954366 + ] + }, + "id": "node/7069816992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7069816993", + "amenity": "bicycle_parking", + "bicycle_parking": "lockers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6848552, + -23.5953491 + ] + }, + "id": "node/7069816993" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7069816994", + "amenity": "bicycle_parking", + "bicycle_parking": "lockers" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6845543, + -23.595268 + ] + }, + "id": "node/7069816994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7070250270", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6847553, + -23.5948537 + ] + }, + "id": "node/7070250270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7070250271", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6849911, + -23.5949022 + ] + }, + "id": "node/7070250271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7070250272", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6852147, + -23.594932 + ] + }, + "id": "node/7070250272" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7072274406", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453848, + -23.539673 + ] + }, + "id": "node/7072274406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7072274407", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451764, + -23.5398388 + ] + }, + "id": "node/7072274407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7072274408", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453807, + -23.5400272 + ] + }, + "id": "node/7072274408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7085961167", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5211336, + -23.6694081 + ] + }, + "id": "node/7085961167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7111841097", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5112817, + -23.6710987 + ] + }, + "id": "node/7111841097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7124826294", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5369956, + -23.6466729 + ] + }, + "id": "node/7124826294" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7158786458", + "amenity": "bicycle_parking", + "fixme": "confirmar posição e survey detalhes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.639543, + -23.5476472 + ] + }, + "id": "node/7158786458" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7164734508", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.810037, + -5.0876276 + ] + }, + "id": "node/7164734508" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7176270866", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "loops", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2283007, + -30.0361223 + ] + }, + "id": "node/7176270866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7179596855", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.4029747, + -28.2663468 + ] + }, + "id": "node/7179596855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7188733279", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9045391, + -8.1422728 + ] + }, + "id": "node/7188733279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7196296831", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4645498, + -12.9935571 + ] + }, + "id": "node/7196296831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7198335153", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "description": "Bicicletário do Banco do Brasil", + "fee": "no", + "opening_hours": "24/7", + "operator": "Banco do Brasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5801748, + -27.5853218 + ] + }, + "id": "node/7198335153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7198363194", + "access": "yes", + "addr:housenumber": "877", + "addr:postcode": "88052-810", + "addr:street": "Rua Francisco Faustino Martins", + "addr:suburb": "Vargem de Fora", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Bicicletário do Terminal Integrado de Canasvieiras", + "opening_hours": "24/7", + "operator": "Prefeitura Municipal de Florianópolis", + "operator:type": "government", + "short_name": "Bicicletário do TICAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4560508, + -27.4517088 + ] + }, + "id": "node/7198363194" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7198369648", + "access": "yes", + "addr:housenumber": "184", + "addr:postcode": "88050-400", + "addr:street": "Rua Padre Lourenço R. de Andrade", + "addr:suburb": "Santo Antônio de Lisboa", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no", + "name": "Bicicletário do Terminal Integrado de Sto. Antônio de Lisboa", + "opening_hours": "24/7", + "operator": "Prefeitura Municipal de Florianópolis", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5147014, + -27.5017029 + ] + }, + "id": "node/7198369648" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7200872150", + "access": "yes", + "addr:city": "São Paulo", + "addr:housenumber": "404", + "addr:postcode": "04142-080", + "addr:street": "Avenida Bosque da Saúde", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6342013, + -23.6119362 + ] + }, + "id": "node/7200872150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201079463", + "access": "yes", + "addr:city": "São José", + "addr:state": "Santa Catarina", + "addr:street": "Av. Acioni Souza Filho", + "addr:suburb": "Kobrasol", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário da Beira Mar de São José", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.614355, + -27.6038481 + ] + }, + "id": "node/7201079463" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201082480", + "access": "customers", + "addr:city": "São José", + "addr:housenumber": "1079", + "addr:postcode": "88117-900", + "addr:street": "Rua Gerôncio Thives", + "addr:suburb": "Barreiros", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "unknown", + "opening_hours": "Mo-Sa 10:00-22:00; Su 14:00-20:00", + "operator": "Shopping Itaguaçu", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6142315, + -27.5842088 + ] + }, + "id": "node/7201082480" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201083524", + "access": "yes", + "addr:city": "Palhoça", + "addr:postcode": "88137-270", + "addr:street": "Rua da Universidade", + "addr:suburb": "Pedra Branca", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Bicicletário 1 do Passeio Pedra Branca", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6800657, + -27.6235223 + ] + }, + "id": "node/7201083524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201083525", + "access": "yes", + "addr:city": "Palhoça", + "addr:postcode": "88137-270", + "addr:street": "Rua da Universidade", + "addr:suburb": "Pedra Branca", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Bicicletário 2 do Passeio Pedra Branca", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6795374, + -27.6232627 + ] + }, + "id": "node/7201083525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201083526", + "access": "yes", + "addr:city": "Palhoça", + "addr:postcode": "88137-270", + "addr:street": "Rua da Universidade", + "addr:suburb": "Pedra Branca", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário 3 do Passeio Pedra Branca", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6793948, + -27.6230926 + ] + }, + "id": "node/7201083526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201083527", + "access": "yes", + "addr:city": "Palhoça", + "addr:postcode": "88137-270", + "addr:street": "Rua da Universidade", + "addr:suburb": "Pedra Branca", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário 4 do Passeio Pedra Branca", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.678702, + -27.62287 + ] + }, + "id": "node/7201083527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201083529", + "access": "yes", + "addr:city": "Palhoça", + "addr:postcode": "88137-270", + "addr:street": "Rua da Universidade", + "addr:suburb": "Pedra Branca", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Bicicletário 6 do Passeio Pedra Branca", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6782181, + -27.6226641 + ] + }, + "id": "node/7201083529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201083530", + "access": "yes", + "addr:city": "Palhoça", + "addr:housenumber": "38", + "addr:postcode": "88137-084", + "addr:street": "Rua Jair Hamms", + "addr:suburb": "Pedra Branca", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Bicicletário 6 do Passeio Pedra Branca", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6770833, + -27.6220769 + ] + }, + "id": "node/7201083530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201093855", + "access": "yes", + "addr:city": "Palhoça", + "addr:postcode": "88133-280", + "addr:street": "Rua das Cegonhas", + "addr:suburb": "Pedra Branca", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Bicicletário do Centro Empresarial Pedra Branca", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6794583, + -27.6260422 + ] + }, + "id": "node/7201093855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7201201431", + "access": "yes", + "addr:city": "Florianópolis", + "addr:postcode": "88066-386", + "addr:street": "Rua Ênnio Cavallazzi", + "addr:suburb": "Armação do Pântano do Sul", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário da Praia da Armação", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5042222, + -27.7496405 + ] + }, + "id": "node/7201201431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255941", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8960376, + -8.0643997 + ] + }, + "id": "node/7206255941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255942", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8957815, + -8.0652244 + ] + }, + "id": "node/7206255942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255943", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8946145, + -8.064104 + ] + }, + "id": "node/7206255943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255944", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8944844, + -8.0640562 + ] + }, + "id": "node/7206255944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255945", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8937543, + -8.0656248 + ] + }, + "id": "node/7206255945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255946", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9040629, + -8.0466061 + ] + }, + "id": "node/7206255946" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255947", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "check_date": "2025-06-19", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9040936, + -8.0359854 + ] + }, + "id": "node/7206255947" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255948", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8772143, + -8.0604911 + ] + }, + "id": "node/7206255948" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255949", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8710321, + -8.0615194 + ] + }, + "id": "node/7206255949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7206255950", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8731067, + -8.064658 + ] + }, + "id": "node/7206255950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7213176418", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "fee": "no", + "land_property": "Açaí é Bom" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1780887, + -26.7399887 + ] + }, + "id": "node/7213176418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7231335265", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "operator": "Smart Fit" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4231749, + -12.9690688 + ] + }, + "id": "node/7231335265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7231339006", + "access": "private", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "operator": "Centro de Convenções" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4329551, + -12.9852832 + ] + }, + "id": "node/7231339006" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7237120015", + "amenity": "bicycle_parking", + "source": "Esri; survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878412, + -7.1187512 + ] + }, + "id": "node/7237120015" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7237212114", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "30", + "covered": "no", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8811915, + -7.1210661 + ] + }, + "id": "node/7237212114" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7241266356", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "capacity": "5", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -32.4259088, + -3.8494109 + ] + }, + "id": "node/7241266356" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7248461481", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.872331, + -8.0588715 + ] + }, + "id": "node/7248461481" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7248461482", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8717749, + -8.0589966 + ] + }, + "id": "node/7248461482" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258241646", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8716589, + -8.061846 + ] + }, + "id": "node/7258241646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258241647", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "check_date": "2025-06-21", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8719089, + -8.0617926 + ] + }, + "id": "node/7258241647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245175", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8805384, + -8.0576397 + ] + }, + "id": "node/7258245175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245176", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8815322, + -8.0709069 + ] + }, + "id": "node/7258245176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245177", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.88476, + -8.0729486 + ] + }, + "id": "node/7258245177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245178", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8727598, + -8.0537773 + ] + }, + "id": "node/7258245178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245179", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9010015, + -8.1318319 + ] + }, + "id": "node/7258245179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245180", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9057682, + -8.0372824 + ] + }, + "id": "node/7258245180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245181", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9115289, + -8.0288304 + ] + }, + "id": "node/7258245181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245182", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8825237, + -8.0941709 + ] + }, + "id": "node/7258245182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245183", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8833811, + -8.0976859 + ] + }, + "id": "node/7258245183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258245184", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8842797, + -8.1000736 + ] + }, + "id": "node/7258245184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258254785", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8920562, + -8.1154589 + ] + }, + "id": "node/7258254785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258254786", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8940574, + -8.1187668 + ] + }, + "id": "node/7258254786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258254787", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8958598, + -8.1220423 + ] + }, + "id": "node/7258254787" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258254788", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9001404, + -8.1328623 + ] + }, + "id": "node/7258254788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258254789", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9035756, + -8.1422658 + ] + }, + "id": "node/7258254789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258254790", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9052878, + -8.1457456 + ] + }, + "id": "node/7258254790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258301109", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9043845, + -8.0411193 + ] + }, + "id": "node/7258301109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258641636", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8721727, + -8.0604966 + ] + }, + "id": "node/7258641636" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258969496", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9171208, + -8.0412605 + ] + }, + "id": "node/7258969496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7258969497", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9332813, + -8.0214506 + ] + }, + "id": "node/7258969497" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7278447944", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4994385, + -27.1907634 + ] + }, + "id": "node/7278447944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7289201242", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "operator": "UFSCar", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8812336, + -21.979092 + ] + }, + "id": "node/7289201242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7289206610", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "UFSCar", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8828892, + -21.9846918 + ] + }, + "id": "node/7289206610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7289206611", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "UFSCar", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8829118, + -21.9847915 + ] + }, + "id": "node/7289206611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7306672420", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3495981, + -20.4442918 + ] + }, + "id": "node/7306672420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7347416229", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Supermercado Pires", + "operator": "Supermercado Pires", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6022347, + -20.5264309 + ] + }, + "id": "node/7347416229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370270498", + "access": "private", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8890073, + -8.0586149 + ] + }, + "id": "node/7370270498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370433513", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8839767, + -21.9824467 + ] + }, + "id": "node/7370433513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370438604", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8846142, + -21.9824701 + ] + }, + "id": "node/7370438604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370443309", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.88077, + -21.981975 + ] + }, + "id": "node/7370443309" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370444962", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8794675, + -21.9822937 + ] + }, + "id": "node/7370444962" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370450302", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8828633, + -21.9832761 + ] + }, + "id": "node/7370450302" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370451695", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8829558, + -21.984813 + ] + }, + "id": "node/7370451695" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370451933", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8827849, + -21.982788 + ] + }, + "id": "node/7370451933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7370458470", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8822071, + -21.9823327 + ] + }, + "id": "node/7370458470" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7468388066", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9183473, + -19.8706347 + ] + }, + "id": "node/7468388066" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7486063384", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4858369, + -13.0130918 + ] + }, + "id": "node/7486063384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7554411717", + "amenity": "bicycle_parking", + "fixme": "Completar dados e verificar posição", + "operator": "Subprefeitura Regional do Pirapitingui" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.341033, + -23.3872133 + ] + }, + "id": "node/7554411717" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7561450944", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8865607, + -23.1856279 + ] + }, + "id": "node/7561450944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7619917449", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6966323, + -23.5597318 + ] + }, + "id": "node/7619917449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7642850527", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4735081, + -12.9044971 + ] + }, + "id": "node/7642850527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7642850539", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4733439, + -12.9048662 + ] + }, + "id": "node/7642850539" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7642852692", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4738142, + -12.9047793 + ] + }, + "id": "node/7642852692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7642891613", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4730256, + -12.9055164 + ] + }, + "id": "node/7642891613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7689627081", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4719893, + -23.4833023 + ] + }, + "id": "node/7689627081" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7696107974", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.2275926, + -31.7556798 + ] + }, + "id": "node/7696107974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7697626794", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.2281602, + -31.7597486 + ] + }, + "id": "node/7697626794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7747072761", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1723698, + -26.7406598 + ] + }, + "id": "node/7747072761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7795553591", + "addr:street": "Rua da Esperança", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.0045624, + -8.5046873 + ] + }, + "id": "node/7795553591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7796710287", + "access": "customers", + "amenity": "bicycle_parking", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6804319, + -23.5622579 + ] + }, + "id": "node/7796710287" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7814348336", + "bicycle_parking": "yes", + "name": "Bicicletário" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.129529, + -30.0421842 + ] + }, + "id": "node/7814348336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7814348337", + "bicycle_parking": "yes", + "name": "Bicicletário" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1297495, + -30.0419131 + ] + }, + "id": "node/7814348337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7830019820", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1883921, + -22.5315449 + ] + }, + "id": "node/7830019820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7830019821", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1778018, + -22.5410889 + ] + }, + "id": "node/7830019821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7838125834", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6647662, + -30.9800961 + ] + }, + "id": "node/7838125834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7841871503", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1928733, + -29.6105986 + ] + }, + "id": "node/7841871503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7843759429", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9287784, + -22.7703615 + ] + }, + "id": "node/7843759429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7845413355", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2272932, + -5.824669 + ] + }, + "id": "node/7845413355" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7845413364", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2284178, + -5.8251529 + ] + }, + "id": "node/7845413364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7855743364", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.8538782, + -19.2234386 + ] + }, + "id": "node/7855743364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7866681141", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2974044, + -20.3532295 + ] + }, + "id": "node/7866681141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7877004670", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.468835, + -12.9924306 + ] + }, + "id": "node/7877004670" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7900669345", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4614717, + -12.9965318 + ] + }, + "id": "node/7900669345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7918391602", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "description": "Bicicletário 1 da Praça Governador Celso Ramos", + "fee": "no", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5437391, + -27.5811426 + ] + }, + "id": "node/7918391602" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7920956514", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "yes", + "fee": "no", + "operator": "Colégio São Paulo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4692397, + -12.9915031 + ] + }, + "id": "node/7920956514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7920956529", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "operator": "SmartFit" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4672738, + -12.9911601 + ] + }, + "id": "node/7920956529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7949550104", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2798486, + -16.7439844 + ] + }, + "id": "node/7949550104" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7966822180", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5396254, + -3.7815089 + ] + }, + "id": "node/7966822180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8117120839", + "amenity": "bicycle_parking", + "capacity": "1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6102579, + -23.4896528 + ] + }, + "id": "node/8117120839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8122546017", + "amenity": "bicycle_parking", + "name": "Impacto Moto Bike", + "shop": "bicycle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4013499, + -1.3575721 + ] + }, + "id": "node/8122546017" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8130774198", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Prefeitura Municipal de Laranjal Paulista", + "operator:type": "government", + "operator:wikidata": "Q95630587" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8417224, + -23.0570515 + ] + }, + "id": "node/8130774198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8133832046", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1788965, + -22.9369981 + ] + }, + "id": "node/8133832046" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8146260442", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "qppp", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9392025, + -23.3998444 + ] + }, + "id": "node/8146260442" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8175433492", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "44", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3304051, + -20.425109 + ] + }, + "id": "node/8175433492" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8222972070", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4682357, + -13.0126069 + ] + }, + "id": "node/8222972070" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8222972071", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4686561, + -13.0130081 + ] + }, + "id": "node/8222972071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8222972073", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4678192, + -13.0120768 + ] + }, + "id": "node/8222972073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8222972094", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4703459, + -13.0142729 + ] + }, + "id": "node/8222972094" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8245088157", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "22", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.471983, + -13.0137033 + ] + }, + "id": "node/8245088157" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8246276228", + "access": "customers", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3998553, + -23.4991612 + ] + }, + "id": "node/8246276228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8262537075", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "operator": "Drogasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4612702, + -13.0012601 + ] + }, + "id": "node/8262537075" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8264120579", + "amenity": "bicycle_parking", + "name": "Loca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9015729, + -15.8091433 + ] + }, + "id": "node/8264120579" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8271497117", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.0131624, + -12.5781231 + ] + }, + "id": "node/8271497117" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8278561199", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.704977, + -23.5722629 + ] + }, + "id": "node/8278561199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8278561200", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7051946, + -23.5721933 + ] + }, + "id": "node/8278561200" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8278625027", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7071618, + -23.5715651 + ] + }, + "id": "node/8278625027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8278944240", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Droga Raia", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5578737, + -27.5886375 + ] + }, + "id": "node/8278944240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8285041631", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no", + "name": "Bicecletário de Teresina", + "operator": "PMT", + "operator:type": "government", + "toilets": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8139386, + -5.0882279 + ] + }, + "id": "node/8285041631" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8334259492", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5311207, + -3.7272405 + ] + }, + "id": "node/8334259492" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8334727062", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3208729, + -12.7054241 + ] + }, + "id": "node/8334727062" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8356905185", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2313253, + -25.5598368 + ] + }, + "id": "node/8356905185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8400754016", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "McDonald's", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4589696, + -13.0026344 + ] + }, + "id": "node/8400754016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8441780556", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1737251, + -26.7326651 + ] + }, + "id": "node/8441780556" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8446003325", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5768741, + -27.6050656 + ] + }, + "id": "node/8446003325" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484163293", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.46546, + -1.4273525 + ] + }, + "id": "node/8484163293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484239760", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "yes", + "description": "Gratuito para clientes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4891817, + -1.4613074 + ] + }, + "id": "node/8484239760" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484254530", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "description": "Gratuito | Com ficha de Controle", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4623694, + -1.4305893 + ] + }, + "id": "node/8484254530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484264152", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "39", + "covered": "yes", + "description": "Exclusivo para clientes | Com Ficha de Controle", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4840306, + -1.4343092 + ] + }, + "id": "node/8484264152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484276681", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4838478, + -1.4715422 + ] + }, + "id": "node/8484276681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484276937", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "yes", + "description": "24h | Sem ficha de controle" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4875935, + -1.447898 + ] + }, + "id": "node/8484276937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484296064", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4764404, + -1.4654204 + ] + }, + "id": "node/8484296064" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484296065", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4763629, + -1.4666153 + ] + }, + "id": "node/8484296065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484296066", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "fee": "yes", + "payment:cash": "yes", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4944133, + -1.45866 + ] + }, + "id": "node/8484296066" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484323956", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4683379, + -1.4673578 + ] + }, + "id": "node/8484323956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502821", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9470229, + -16.2755559 + ] + }, + "id": "node/8508502821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502822", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9469659, + -16.2754044 + ] + }, + "id": "node/8508502822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502823", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9469304, + -16.2753023 + ] + }, + "id": "node/8508502823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502824", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9468927, + -16.2751996 + ] + }, + "id": "node/8508502824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502825", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9468588, + -16.2751108 + ] + }, + "id": "node/8508502825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502830", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9469172, + -16.2755924 + ] + }, + "id": "node/8508502830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502831", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9468602, + -16.2754408 + ] + }, + "id": "node/8508502831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502832", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9468247, + -16.2753387 + ] + }, + "id": "node/8508502832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502833", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.946787, + -16.275236 + ] + }, + "id": "node/8508502833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502834", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9467531, + -16.2751472 + ] + }, + "id": "node/8508502834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502839", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9466883, + -16.2756731 + ] + }, + "id": "node/8508502839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502840", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9466313, + -16.2755215 + ] + }, + "id": "node/8508502840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502841", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465959, + -16.2754194 + ] + }, + "id": "node/8508502841" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502842", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465582, + -16.2753167 + ] + }, + "id": "node/8508502842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502843", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465243, + -16.2752279 + ] + }, + "id": "node/8508502843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502848", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465891, + -16.2756999 + ] + }, + "id": "node/8508502848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502849", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465321, + -16.2755484 + ] + }, + "id": "node/8508502849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502850", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9464967, + -16.2754463 + ] + }, + "id": "node/8508502850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502851", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9464589, + -16.2753436 + ] + }, + "id": "node/8508502851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502852", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.946425, + -16.2752548 + ] + }, + "id": "node/8508502852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502857", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9463603, + -16.2757795 + ] + }, + "id": "node/8508502857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502858", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9463033, + -16.2756279 + ] + }, + "id": "node/8508502858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502859", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462679, + -16.2755259 + ] + }, + "id": "node/8508502859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502860", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462301, + -16.2754231 + ] + }, + "id": "node/8508502860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502861", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9461962, + -16.2753344 + ] + }, + "id": "node/8508502861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502866", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462587, + -16.2757975 + ] + }, + "id": "node/8508502866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502867", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462017, + -16.2756459 + ] + }, + "id": "node/8508502867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502868", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9461663, + -16.2755438 + ] + }, + "id": "node/8508502868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502869", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9461285, + -16.2754411 + ] + }, + "id": "node/8508502869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502870", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9460946, + -16.2753523 + ] + }, + "id": "node/8508502870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502875", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9460287, + -16.2758905 + ] + }, + "id": "node/8508502875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502876", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459717, + -16.2757389 + ] + }, + "id": "node/8508502876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502877", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459363, + -16.2756369 + ] + }, + "id": "node/8508502877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502878", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458985, + -16.2755341 + ] + }, + "id": "node/8508502878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502879", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458646, + -16.2754454 + ] + }, + "id": "node/8508502879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502884", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459368, + -16.2759221 + ] + }, + "id": "node/8508502884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502885", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458798, + -16.2757706 + ] + }, + "id": "node/8508502885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502886", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458444, + -16.2756685 + ] + }, + "id": "node/8508502886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502887", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458066, + -16.2755657 + ] + }, + "id": "node/8508502887" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502888", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9457728, + -16.275477 + ] + }, + "id": "node/8508502888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502893", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9456282, + -16.2753183 + ] + }, + "id": "node/8508502893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502894", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9455712, + -16.2751667 + ] + }, + "id": "node/8508502894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502895", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9455358, + -16.2750647 + ] + }, + "id": "node/8508502895" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502896", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9454981, + -16.2749619 + ] + }, + "id": "node/8508502896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502897", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9454771, + -16.2749033 + ] + }, + "id": "node/8508502897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502905", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9457312, + -16.2752877 + ] + }, + "id": "node/8508502905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502906", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9456742, + -16.2751361 + ] + }, + "id": "node/8508502906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502907", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9456387, + -16.2750341 + ] + }, + "id": "node/8508502907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502908", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.945601, + -16.2749313 + ] + }, + "id": "node/8508502908" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502909", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9455671, + -16.2748426 + ] + }, + "id": "node/8508502909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502914", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459626, + -16.2752164 + ] + }, + "id": "node/8508502914" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502915", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459056, + -16.2750648 + ] + }, + "id": "node/8508502915" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502916", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458702, + -16.2749627 + ] + }, + "id": "node/8508502916" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502917", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458324, + -16.27486 + ] + }, + "id": "node/8508502917" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502918", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9457985, + -16.2747712 + ] + }, + "id": "node/8508502918" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502923", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9460551, + -16.2751752 + ] + }, + "id": "node/8508502923" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502924", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459981, + -16.2750236 + ] + }, + "id": "node/8508502924" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502925", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459627, + -16.2749215 + ] + }, + "id": "node/8508502925" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502926", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.945925, + -16.2748188 + ] + }, + "id": "node/8508502926" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502927", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458911, + -16.27473 + ] + }, + "id": "node/8508502927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502932", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462845, + -16.2751056 + ] + }, + "id": "node/8508502932" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502933", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462275, + -16.2749541 + ] + }, + "id": "node/8508502933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502934", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.946192, + -16.274852 + ] + }, + "id": "node/8508502934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502935", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9461543, + -16.2747493 + ] + }, + "id": "node/8508502935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502936", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9461204, + -16.2746605 + ] + }, + "id": "node/8508502936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502941", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9463902, + -16.2750707 + ] + }, + "id": "node/8508502941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502942", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9463332, + -16.2749191 + ] + }, + "id": "node/8508502942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502943", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462978, + -16.2748171 + ] + }, + "id": "node/8508502943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502944", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.94626, + -16.2747143 + ] + }, + "id": "node/8508502944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502945", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462261, + -16.2746256 + ] + }, + "id": "node/8508502945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502950", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9466133, + -16.2749972 + ] + }, + "id": "node/8508502950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502951", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465563, + -16.2748456 + ] + }, + "id": "node/8508502951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502952", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465209, + -16.2747436 + ] + }, + "id": "node/8508502952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502953", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9464831, + -16.2746408 + ] + }, + "id": "node/8508502953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502954", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9464492, + -16.2745521 + ] + }, + "id": "node/8508502954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502959", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9467174, + -16.2749648 + ] + }, + "id": "node/8508502959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502960", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9466604, + -16.2748132 + ] + }, + "id": "node/8508502960" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502961", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9466249, + -16.2747111 + ] + }, + "id": "node/8508502961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502962", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465872, + -16.2746084 + ] + }, + "id": "node/8508502962" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502963", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9465533, + -16.2745196 + ] + }, + "id": "node/8508502963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502972", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9463228, + -16.2744135 + ] + }, + "id": "node/8508502972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502973", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.946433, + -16.2743553 + ] + }, + "id": "node/8508502973" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502974", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9461911, + -16.2744715 + ] + }, + "id": "node/8508502974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502975", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9461099, + -16.274364 + ] + }, + "id": "node/8508502975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502976", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9462417, + -16.274306 + ] + }, + "id": "node/8508502976" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502977", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9463519, + -16.2742478 + ] + }, + "id": "node/8508502977" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502978", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9457156, + -16.274561 + ] + }, + "id": "node/8508502978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502979", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9458474, + -16.2745029 + ] + }, + "id": "node/8508502979" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502980", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459576, + -16.2744448 + ] + }, + "id": "node/8508502980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502989", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.945921, + -16.2746411 + ] + }, + "id": "node/8508502989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502990", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9459904, + -16.2746215 + ] + }, + "id": "node/8508502990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502991", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9460459, + -16.274604 + ] + }, + "id": "node/8508502991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502992", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9456006, + -16.2747476 + ] + }, + "id": "node/8508502992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502993", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9456708, + -16.2747243 + ] + }, + "id": "node/8508502993" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8508502994", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9457409, + -16.2746972 + ] + }, + "id": "node/8508502994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8515154966", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8054336, + -5.0845865 + ] + }, + "id": "node/8515154966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8572668926", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "colour": "yellow", + "covered": "no", + "fee": "no", + "note": "em frente ao Clemente Café" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6397954, + -23.5962221 + ] + }, + "id": "node/8572668926" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8612781069", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4681229, + -12.883381 + ] + }, + "id": "node/8612781069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8622638696", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "36", + "covered": "no", + "fee": "no", + "note": "Ao lado do Sesc 24 de Maio" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402394, + -23.5440867 + ] + }, + "id": "node/8622638696" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8622695684", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "colour": "yellow", + "covered": "no", + "fee": "no", + "note": "em frente ao número 458" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6400578, + -23.6039419 + ] + }, + "id": "node/8622695684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8680964519", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0705392, + -26.8931503 + ] + }, + "id": "node/8680964519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8680964529", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0710698, + -26.9186703 + ] + }, + "id": "node/8680964529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8691803319", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4968335, + -3.7333045 + ] + }, + "id": "node/8691803319" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8695414612", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.8431539, + -2.9003737 + ] + }, + "id": "node/8695414612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8723124594", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.9171556, + -13.0733809 + ] + }, + "id": "node/8723124594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8739973936", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0708098, + -26.9174189 + ] + }, + "id": "node/8739973936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8742512593", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5072631, + -3.7226199 + ] + }, + "id": "node/8742512593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8747340171", + "amenity": "bicycle_rental", + "bicycle_parking": "streetpod", + "capacity": "23", + "covered": "no", + "fee": "yes", + "network": "Bike Sampa", + "operator": "Bike Itaú", + "operator:type": "private", + "payment:electronic_purses": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6351377, + -23.5898678 + ] + }, + "id": "node/8747340171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8747340172", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6351402, + -23.5898345 + ] + }, + "id": "node/8747340172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8761483214", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5133612, + -27.4335512 + ] + }, + "id": "node/8761483214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8769250050", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.3242251, + -27.8157661 + ] + }, + "id": "node/8769250050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8794681896", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.7107539, + -25.4302488 + ] + }, + "id": "node/8794681896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8807453862", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5672534, + -3.7105411 + ] + }, + "id": "node/8807453862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8814887992", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0831731, + -26.9085821 + ] + }, + "id": "node/8814887992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8899355214", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "5", + "operator": "Oferecido pelo Banco do Brasil - Agência Aldeota" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4981992, + -3.7360619 + ] + }, + "id": "node/8899355214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8901799448", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "description": "Dentro do posto de saúde", + "fee": "no", + "name": "Paraciclo UBS Jardim Vera Cruz", + "opening_hours": "Mo-Fr 07:00-19:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6891034, + -23.5385482 + ] + }, + "id": "node/8901799448" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8905700783", + "access": "yes", + "addr:city": "São Paulo", + "addr:postcode": "05412-010", + "addr:street": "Praça Horácio Sabino", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6837205, + -23.5508007 + ] + }, + "id": "node/8905700783" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8910224106", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6858568, + -23.5507787 + ] + }, + "id": "node/8910224106" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8913857302", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Casa Esportiva", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4558133, + -12.9903146 + ] + }, + "id": "node/8913857302" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8944535272", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0825394, + -26.9093529 + ] + }, + "id": "node/8944535272" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8944535273", + "amenity": "bicycle_parking", + "covered": "yes", + "level": "-1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0806712, + -26.9131975 + ] + }, + "id": "node/8944535273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8971285713", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1823685, + -26.677227 + ] + }, + "id": "node/8971285713" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8978466034", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6755882, + -23.5407546 + ] + }, + "id": "node/8978466034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8978466035", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6765827, + -23.5415037 + ] + }, + "id": "node/8978466035" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8978471238", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.67007, + -23.5355616 + ] + }, + "id": "node/8978471238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8978471239", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6711629, + -23.5367959 + ] + }, + "id": "node/8978471239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8978471240", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6721972, + -23.5363836 + ] + }, + "id": "node/8978471240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8997306297", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5034344, + -27.1456042 + ] + }, + "id": "node/8997306297" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8997313794", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5927869, + -27.1419144 + ] + }, + "id": "node/8997313794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9001375189", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6538773, + -23.5469164 + ] + }, + "id": "node/9001375189" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9005335120", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5088618, + -27.5896318 + ] + }, + "id": "node/9005335120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9014307627", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9363497, + -23.4051742 + ] + }, + "id": "node/9014307627" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9026889934", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5533351, + -27.5969233 + ] + }, + "id": "node/9026889934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9027126509", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Petz", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0781534, + -26.9029248 + ] + }, + "id": "node/9027126509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9029218257", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.065036, + -26.9212592 + ] + }, + "id": "node/9029218257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9035821945", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0807141, + -26.9086542 + ] + }, + "id": "node/9035821945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9035821946", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "smoothness": "good", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0791786, + -26.9074816 + ] + }, + "id": "node/9035821946" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9038076019", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5471254, + -3.7190336 + ] + }, + "id": "node/9038076019" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9039058449", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5120563, + -27.5720616 + ] + }, + "id": "node/9039058449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9039058466", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5123111, + -27.572174 + ] + }, + "id": "node/9039058466" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9041254998", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.080002, + -26.9078873 + ] + }, + "id": "node/9041254998" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9042120405", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "40", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5178874, + -27.6003192 + ] + }, + "id": "node/9042120405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9042120481", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "crossbar", + "capacity": "6", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5222501, + -27.6015932 + ] + }, + "id": "node/9042120481" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061252260", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4992836, + -27.1709428 + ] + }, + "id": "node/9061252260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9064032773", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8662432, + -23.4976363 + ] + }, + "id": "node/9064032773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9068805336", + "access": "customers", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5289033, + -27.1797488 + ] + }, + "id": "node/9068805336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9071350499", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "33", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5649669, + -27.1586924 + ] + }, + "id": "node/9071350499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9074013196", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6321643, + -26.9713615 + ] + }, + "id": "node/9074013196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9074092133", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.113378, + -22.8942216 + ] + }, + "id": "node/9074092133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9082205973", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3400695, + -22.9450478 + ] + }, + "id": "node/9082205973" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9082205974", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3400366, + -22.9451895 + ] + }, + "id": "node/9082205974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9084771784", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1635059, + -26.7069493 + ] + }, + "id": "node/9084771784" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9085301639", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6256318, + -27.6112884 + ] + }, + "id": "node/9085301639" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9091333633", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4986409, + -3.7374398 + ] + }, + "id": "node/9091333633" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9102478342", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5462585, + -27.5922609 + ] + }, + "id": "node/9102478342" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9102478356", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5468446, + -27.5930288 + ] + }, + "id": "node/9102478356" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9102478799", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5480033, + -27.5981609 + ] + }, + "id": "node/9102478799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9102478843", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5482038, + -27.5999823 + ] + }, + "id": "node/9102478843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103590917", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4705322, + -12.9953377 + ] + }, + "id": "node/9103590917" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103592817", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4712583, + -12.9950807 + ] + }, + "id": "node/9103592817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103599218", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4710912, + -12.9953852 + ] + }, + "id": "node/9103599218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103974544", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5520145, + -27.5984437 + ] + }, + "id": "node/9103974544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9106529242", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no", + "lit": "yes", + "operator": "Centro Executivo Beiramar", + "supervised": "yes", + "surface": "paved" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5448591, + -27.5856957 + ] + }, + "id": "node/9106529242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9112289948", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5577045, + -27.5884479 + ] + }, + "id": "node/9112289948" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9112290008", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5603669, + -27.5932819 + ] + }, + "id": "node/9112290008" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9112290051", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5615357, + -27.5921171 + ] + }, + "id": "node/9112290051" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9115610443", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1242771, + -22.8961042 + ] + }, + "id": "node/9115610443" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9117913156", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5753565, + -27.6026652 + ] + }, + "id": "node/9117913156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9118872964", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "11", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.702461, + -27.6432301 + ] + }, + "id": "node/9118872964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9123124551", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1258297, + -22.9064091 + ] + }, + "id": "node/9123124551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9124267817", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4553652, + -12.9847446 + ] + }, + "id": "node/9124267817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9124412506", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5003277, + -27.5448218 + ] + }, + "id": "node/9124412506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9128379761", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "lit": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6656872, + -27.487827 + ] + }, + "id": "node/9128379761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9138647594", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9562871, + -26.928638 + ] + }, + "id": "node/9138647594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9161439026", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1236937, + -22.8961164 + ] + }, + "id": "node/9161439026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9161439027", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1240571, + -22.8960693 + ] + }, + "id": "node/9161439027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9175283456", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4888861, + -27.4399857 + ] + }, + "id": "node/9175283456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9178863252", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0610879, + -26.9238968 + ] + }, + "id": "node/9178863252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9198568678", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.7074645, + -23.0997729 + ] + }, + "id": "node/9198568678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9199819212", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0503753, + -10.8998017 + ] + }, + "id": "node/9199819212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9200053055", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0468211, + -10.9461542 + ] + }, + "id": "node/9200053055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9200053056", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0614974, + -10.9438224 + ] + }, + "id": "node/9200053056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9203450054", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "operator": "Banco do Brasil", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8248035, + -26.8999589 + ] + }, + "id": "node/9203450054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9204875996", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5161374, + -3.7237303 + ] + }, + "id": "node/9204875996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9217303430", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5374931, + -27.4900803 + ] + }, + "id": "node/9217303430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9245999839", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Villa San Luigi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4578537, + -13.0030685 + ] + }, + "id": "node/9245999839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9283671877", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8731033, + -23.4972527 + ] + }, + "id": "node/9283671877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9293482034", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1839103, + -22.9453871 + ] + }, + "id": "node/9293482034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9296410828", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator": "Bruno DERZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -67.8577374, + -9.9594642 + ] + }, + "id": "node/9296410828" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297183961", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mercadão Municipal", + "note": "Paraciclo em desacordo com a Lei Municipal de Bicicletários", + "operator": "Mercadão Municipal Antônio Valente", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6201394, + -20.4662007 + ] + }, + "id": "node/9297183961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297256475", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "no", + "fee": "no", + "name": "Paraciclo Shopping Bosque dos Ipês", + "operator": "Shopping Bosque dos Ipês", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5605863, + -20.3985391 + ] + }, + "id": "node/9297256475" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297271468", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "tree", + "capacity": "20", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Shopping Campo Grande (Estacionamento Interno)", + "operator": "Shopping Campo Grande", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5885186, + -20.4586688 + ] + }, + "id": "node/9297271468" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9300275768", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Shopping Norte Sul Plaza", + "operator": "Shopping Norte Sul Plaza", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6266115, + -20.4820115 + ] + }, + "id": "node/9300275768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9300290041", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Paraciclo Câmara Municipal de Campo Grande", + "operator": "Câmara Municipal de Campo Grande", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5881678, + -20.4628681 + ] + }, + "id": "node/9300290041" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9300952419", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Comper Ceará", + "operator": "Comper", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5944397, + -20.4524649 + ] + }, + "id": "node/9300952419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9303720063", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Paraciclo Supermercado Comper", + "operator": "Comper", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6282013, + -20.4351147 + ] + }, + "id": "node/9303720063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9303721812", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário da Feira Central", + "operator": "Feira Central", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6201001, + -20.4533252 + ] + }, + "id": "node/9303721812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9303729999", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário da Feira Central", + "operator": "Feira Central", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6197663, + -20.4514342 + ] + }, + "id": "node/9303729999" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9303731892", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário da UCDB", + "operator": "UCDB", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6189307, + -20.4083619 + ] + }, + "id": "node/9303731892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9303772773", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Mister Junior", + "operator": "Supermercado Mister Junior", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5656941, + -20.3900996 + ] + }, + "id": "node/9303772773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9304025023", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Assaí Atacadista", + "operator": "Assaí Atacadista", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6589949, + -20.4596284 + ] + }, + "id": "node/9304025023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9305429927", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mercado Pag Poko", + "operator": "Mercado Pag Poko", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5538213, + -20.4209925 + ] + }, + "id": "node/9305429927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9306363730", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1842183, + -22.957459 + ] + }, + "id": "node/9306363730" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9306451876", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2562196, + -22.9236548 + ] + }, + "id": "node/9306451876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9306471052", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6340786, + -23.6055349 + ] + }, + "id": "node/9306471052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9306598439", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8781455, + -8.0679147 + ] + }, + "id": "node/9306598439" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9306607434", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8441725, + -26.3014569 + ] + }, + "id": "node/9306607434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9306607435", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8441737, + -26.3009933 + ] + }, + "id": "node/9306607435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9306974947", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6310223, + -26.988413 + ] + }, + "id": "node/9306974947" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308180607", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1841245, + -22.9557378 + ] + }, + "id": "node/9308180607" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308180609", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1839475, + -22.9573821 + ] + }, + "id": "node/9308180609" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308543327", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1815431, + -22.9546489 + ] + }, + "id": "node/9308543327" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717874", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6162143, + -20.4683032 + ] + }, + "id": "node/9308717874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717875", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.616361, + -20.468328 + ] + }, + "id": "node/9308717875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717876", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6165608, + -20.4671758 + ] + }, + "id": "node/9308717876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717877", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6164406, + -20.4671654 + ] + }, + "id": "node/9308717877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717878", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6164195, + -20.4672688 + ] + }, + "id": "node/9308717878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717879", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.616545, + -20.4672792 + ] + }, + "id": "node/9308717879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717880", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6166787, + -20.4665239 + ] + }, + "id": "node/9308717880" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717881", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6166886, + -20.4664512 + ] + }, + "id": "node/9308717881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717882", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6165742, + -20.4664353 + ] + }, + "id": "node/9308717882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717883", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6165614, + -20.4665064 + ] + }, + "id": "node/9308717883" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717884", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6168498, + -20.4655329 + ] + }, + "id": "node/9308717884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717885", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6168655, + -20.465458 + ] + }, + "id": "node/9308717885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717886", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6167873, + -20.4654514 + ] + }, + "id": "node/9308717886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717887", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6167552, + -20.4655171 + ] + }, + "id": "node/9308717887" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717888", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6171095, + -20.4643018 + ] + }, + "id": "node/9308717888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717889", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6169834, + -20.4642756 + ] + }, + "id": "node/9308717889" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717890", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6171679, + -20.4639228 + ] + }, + "id": "node/9308717890" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717891", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6170441, + -20.4639042 + ] + }, + "id": "node/9308717891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717892", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6173699, + -20.4627212 + ] + }, + "id": "node/9308717892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717893", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6173827, + -20.4626441 + ] + }, + "id": "node/9308717893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717894", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6172794, + -20.4626305 + ] + }, + "id": "node/9308717894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717895", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6172671, + -20.4627005 + ] + }, + "id": "node/9308717895" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717896", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6176063, + -20.4614234 + ] + }, + "id": "node/9308717896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717897", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6175088, + -20.461407 + ] + }, + "id": "node/9308717897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717898", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6175193, + -20.4613359 + ] + }, + "id": "node/9308717898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717899", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6176215, + -20.4613485 + ] + }, + "id": "node/9308717899" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717900", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6178474, + -20.4601305 + ] + }, + "id": "node/9308717900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717901", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6178596, + -20.4600588 + ] + }, + "id": "node/9308717901" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717902", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6177569, + -20.460043 + ] + }, + "id": "node/9308717902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717903", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.617747, + -20.4601103 + ] + }, + "id": "node/9308717903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717904", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6180873, + -20.458779 + ] + }, + "id": "node/9308717904" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717905", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6180972, + -20.4587145 + ] + }, + "id": "node/9308717905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717906", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6180062, + -20.4586975 + ] + }, + "id": "node/9308717906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717907", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6179881, + -20.458761 + ] + }, + "id": "node/9308717907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717908", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6183173, + -20.457549 + ] + }, + "id": "node/9308717908" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717909", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6182169, + -20.4575331 + ] + }, + "id": "node/9308717909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717910", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6182332, + -20.4574412 + ] + }, + "id": "node/9308717910" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717911", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6183319, + -20.4574549 + ] + }, + "id": "node/9308717911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717912", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6185526, + -20.4562659 + ] + }, + "id": "node/9308717912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308717913", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6184562, + -20.4562467 + ] + }, + "id": "node/9308717913" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309143906", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "30", + "covered": "no", + "fee": "no", + "name": "Paraciclo sede PEMS", + "operator": "Parque Estadual Matas do Segredo", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5864812, + -20.3988649 + ] + }, + "id": "node/9309143906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309148842", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "7", + "covered": "no", + "name": "Paraciclo Sicoob", + "operator": "Banco Sicoob", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6139242, + -20.4632485 + ] + }, + "id": "node/9309148842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309158372", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo", + "operator": "Farmácia Estrela Dalva", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.552872, + -20.4274167 + ] + }, + "id": "node/9309158372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309161903", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Dourado", + "operator": "Supermercado Dourado", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5607941, + -20.4194103 + ] + }, + "id": "node/9309161903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309181086", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "name": "Paraciclo CRS Nova Bahia", + "operator": "CRS Nova Bahia", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5723287, + -20.4103892 + ] + }, + "id": "node/9309181086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309187546", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "name": "Paraciclo Supermercado Dourado", + "operator": "Supermercado Dourado", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.56312, + -20.421774 + ] + }, + "id": "node/9309187546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855457", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mercado Silva", + "operator": "Mercado Silva", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5562968, + -20.4280644 + ] + }, + "id": "node/9309855457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855458", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Paraciclo Parque do Sóter (Entrada Norte)", + "operator": "Prefeitura", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5788176, + -20.4275772 + ] + }, + "id": "node/9309855458" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855459", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo Parque do Sóter (Entrada Sul)", + "operator": "Prefeitura", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5781745, + -20.4303213 + ] + }, + "id": "node/9309855459" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855461", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo Parque do Sóter (Entrada Leste)", + "operator": "Prefeitura", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5726386, + -20.4290781 + ] + }, + "id": "node/9309855461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855462", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Paraciclo Academia BS Trainer Studio", + "operator": "BS Trainer Studio", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5708203, + -20.4312193 + ] + }, + "id": "node/9309855462" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855463", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "6", + "covered": "no", + "name": "Paraciclo Mercado Santo Antônio", + "operator": "Mercado Santo Antônio", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.536976, + -20.4555124 + ] + }, + "id": "node/9309855463" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855509", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paracilo Mercado Santo Antonio", + "operator": "Mercado Santo Antônio", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.550173, + -20.4706481 + ] + }, + "id": "node/9309855509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855510", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "13", + "fee": "no", + "name": "Paraciclo Academia Saúde e Forma", + "operator": "Academia Saúde e Forma", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5500226, + -20.4689221 + ] + }, + "id": "node/9309855510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855511", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Paraciclo Aacademia Kadas Fitness", + "operator": "Academia Kadas Fitness", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5506927, + -20.4229077 + ] + }, + "id": "node/9309855511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9309855512", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Paraciclo Academia Performance", + "operator": "Academia Perormance", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6236693, + -20.4805606 + ] + }, + "id": "node/9309855512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315155813", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Leroy Merlin", + "operator": "Leroy Merlin", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5620826, + -20.3988628 + ] + }, + "id": "node/9315155813" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315190032", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "name": "Paraciclo Alpha Academia", + "operator": "Alpha Academia", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5640515, + -20.416402 + ] + }, + "id": "node/9315190032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315197392", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "fee": "no", + "name": "Bicicletário UEMS", + "operator": "UEMS", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6624008, + -20.4206317 + ] + }, + "id": "node/9315197392" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315651816", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Karandá Shopping", + "operator": "Karandá Shopping", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5701907, + -20.4344543 + ] + }, + "id": "node/9315651816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315733821", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo Karandá Shopping", + "operator": "Karandá Shopping", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5702631, + -20.4331247 + ] + }, + "id": "node/9315733821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315760539", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Bicicletário Sertão", + "operator": "Sertão", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5980351, + -20.437897 + ] + }, + "id": "node/9315760539" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315773688", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Paraciclo Agência BB - Parque dos Poderes", + "operator": "Banco do Brasil", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5512494, + -20.4397771 + ] + }, + "id": "node/9315773688" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315781506", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Bicicletário Agência Bradesco", + "operator": "Bradesco", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6013202, + -20.441544 + ] + }, + "id": "node/9315781506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9315904795", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Bicicletário Lotérica Cidade Morena", + "operator": "Lotérica Cidade Morena", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5920616, + -20.4338626 + ] + }, + "id": "node/9315904795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316202242", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Bicicletário Atacadão", + "operator": "Atacadão", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6514954, + -20.462762 + ] + }, + "id": "node/9316202242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316808603", + "amenity": "bicycle_parking", + "capacity": "9", + "covered": "no", + "fee": "no", + "operator": "operator=Rio Office Mall", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3444495, + -22.944612 + ] + }, + "id": "node/9316808603" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828047", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3403863, + -22.9436812 + ] + }, + "id": "node/9316828047" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828048", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3411521, + -22.9422337 + ] + }, + "id": "node/9316828048" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828049", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3414096, + -22.9419293 + ] + }, + "id": "node/9316828049" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828050", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3414753, + -22.9418218 + ] + }, + "id": "node/9316828050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828051", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3416952, + -22.9414587 + ] + }, + "id": "node/9316828051" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828052", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3422424, + -22.9410005 + ] + }, + "id": "node/9316828052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828053", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3423752, + -22.9409561 + ] + }, + "id": "node/9316828053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828054", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3419661, + -22.9409968 + ] + }, + "id": "node/9316828054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828055", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3417972, + -22.9410499 + ] + }, + "id": "node/9316828055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828056", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3416389, + -22.941129 + ] + }, + "id": "node/9316828056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828057", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3434595, + -22.9404368 + ] + }, + "id": "node/9316828057" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828058", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3438628, + -22.9398588 + ] + }, + "id": "node/9316828058" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828059", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3440361, + -22.9396537 + ] + }, + "id": "node/9316828059" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828060", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3445565, + -22.9390547 + ] + }, + "id": "node/9316828060" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828061", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3443996, + -22.9389374 + ] + }, + "id": "node/9316828061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828062", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3435399, + -22.9396636 + ] + }, + "id": "node/9316828062" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828063", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3434809, + -22.9396439 + ] + }, + "id": "node/9316828063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828064", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3431872, + -22.9397167 + ] + }, + "id": "node/9316828064" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828065", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3431047, + -22.9395395 + ] + }, + "id": "node/9316828065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828066", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3429405, + -22.9396229 + ] + }, + "id": "node/9316828066" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828067", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3425294, + -22.9395154 + ] + }, + "id": "node/9316828067" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828068", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3425569, + -22.9393715 + ] + }, + "id": "node/9316828068" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828069", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3423685, + -22.9393172 + ] + }, + "id": "node/9316828069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828070", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3421331, + -22.9394006 + ] + }, + "id": "node/9316828070" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828071", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3417026, + -22.9392647 + ] + }, + "id": "node/9316828071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828072", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3415316, + -22.9390578 + ] + }, + "id": "node/9316828072" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828073", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3411393, + -22.9391011 + ] + }, + "id": "node/9316828073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828074", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3411246, + -22.9389522 + ] + }, + "id": "node/9316828074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828075", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3407712, + -22.9388281 + ] + }, + "id": "node/9316828075" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828076", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3409422, + -22.9390263 + ] + }, + "id": "node/9316828076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828077", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3404128, + -22.9387089 + ] + }, + "id": "node/9316828077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828078", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3401131, + -22.9387855 + ] + }, + "id": "node/9316828078" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828079", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3398113, + -22.9386682 + ] + }, + "id": "node/9316828079" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828080", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3394901, + -22.9385243 + ] + }, + "id": "node/9316828080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828081", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3389, + -22.9378209 + ] + }, + "id": "node/9316828081" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828082", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3382228, + -22.9375245 + ] + }, + "id": "node/9316828082" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9316828083", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3374979, + -22.9375078 + ] + }, + "id": "node/9316828083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9317946542", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "40", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Atacadão Costa e Silva", + "operator": "Atacadão", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6124536, + -20.4959416 + ] + }, + "id": "node/9317946542" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9317998306", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Paraciclo Comper Tamandaré", + "operator": "Supermercado Comper", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.634128, + -20.4544404 + ] + }, + "id": "node/9317998306" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318001782", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário Comper Tijuca", + "operator": "Supermercado Comper", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6569775, + -20.5156044 + ] + }, + "id": "node/9318001782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789724", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2035431, + -5.7764496 + ] + }, + "id": "node/9318789724" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789725", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2009755, + -5.7845221 + ] + }, + "id": "node/9318789725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789726", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2004099, + -5.7847447 + ] + }, + "id": "node/9318789726" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789727", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.200886, + -5.8413731 + ] + }, + "id": "node/9318789727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789728", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2003578, + -5.841952 + ] + }, + "id": "node/9318789728" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789729", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.1989658, + -5.8426323 + ] + }, + "id": "node/9318789729" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789730", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.1996624, + -5.8431842 + ] + }, + "id": "node/9318789730" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789731", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2196385, + -5.7957598 + ] + }, + "id": "node/9318789731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789732", + "access": "private", + "amenity": "bicycle_parking", + "operator": "Partage Norte Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2478691, + -5.7590576 + ] + }, + "id": "node/9318789732" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789733", + "access": "yes", + "amenity": "bicycle_parking", + "operator": "Prefeitura" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2531065, + -5.752009 + ] + }, + "id": "node/9318789733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789734", + "access": "private", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2520668, + -5.7615493 + ] + }, + "id": "node/9318789734" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789735", + "access": "private", + "amenity": "bicycle_parking", + "operator": "Nordestão" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2068001, + -5.815407 + ] + }, + "id": "node/9318789735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789736", + "access": "private", + "amenity": "bicycle_parking", + "operator": "Shopping Midway Mall" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2051543, + -5.8110604 + ] + }, + "id": "node/9318789736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9318789737", + "access": "private", + "amenity": "bicycle_parking", + "operator": "Nordestão" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2062948, + -5.8495314 + ] + }, + "id": "node/9318789737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9319735912", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3441332, + -22.9649364 + ] + }, + "id": "node/9319735912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9320521500", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2109122, + -5.8420383 + ] + }, + "id": "node/9320521500" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336936", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo Instituto Guataverá", + "operator": "Instituto Guapuverá", + "operator:type": "ngo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5305248, + -20.4611769 + ] + }, + "id": "node/9321336936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336937", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Panificadora Pão Dourado", + "operator": "Panificadora Pão Dourado", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5305934, + -20.4611664 + ] + }, + "id": "node/9321336937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336938", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "no", + "fee": "no", + "name": "Paraciclo Uniderp-Agrárias", + "operator": "Uniderp Agrárias", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5418096, + -20.4392399 + ] + }, + "id": "node/9321336938" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336939", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Nutri + Coco Verde", + "operator": "Nutri + Coco Verde", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6250422, + -20.4493873 + ] + }, + "id": "node/9321336939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336940", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "20", + "covered": "yes", + "fee": "no", + "name": "Paraciclo do Colégio Militar", + "operator": "Colegio Militar", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6477486, + -20.4359615 + ] + }, + "id": "node/9321336940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336942", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo Lotéricas", + "operator": "Lotéricas Supermercado Duarte", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6309564, + -20.4971791 + ] + }, + "id": "node/9321336942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336943", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Paraciclo Supermercado Duarte", + "operator": "Supermercado Duarte", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6311117, + -20.4971777 + ] + }, + "id": "node/9321336943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321336944", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo USB Piratininga", + "operator": "UBS Piratininga", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6238857, + -20.495095 + ] + }, + "id": "node/9321336944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321596715", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Bicicletário Supermercado Guaicurus", + "operator": "Supermercado Guaicurus", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5921851, + -20.523013 + ] + }, + "id": "node/9321596715" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321639218", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "30", + "covered": "no", + "fee": "no", + "name": "Paraciclo Aeroporto (funcionários)" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6699808, + -20.4572337 + ] + }, + "id": "node/9321639218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321691844", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "fee": "no", + "name": "Bicicletário Hortifruti Santa Rita", + "operator": "Hortifruti Santa Rita", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5906816, + -20.5224961 + ] + }, + "id": "node/9321691844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321705543", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Bicicletário Campesino Supermercados", + "operator": "Campesino Supermercados", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5732322, + -20.5162115 + ] + }, + "id": "node/9321705543" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321720071", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Bicicletário SUPERMERCADO ZAPE", + "operator": "SUPERMERCADO ZAPE", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6448415, + -20.537805 + ] + }, + "id": "node/9321720071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321722302", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.602951, + -20.5266458 + ] + }, + "id": "node/9321722302" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321743654", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Mercearia Rocha", + "operator": "Mercearia Rocha", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.654351, + -20.5349925 + ] + }, + "id": "node/9321743654" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321926953", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "fee": "no", + "name": "Bicicletário UEMS", + "operator": "UEMS", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6620991, + -20.4209858 + ] + }, + "id": "node/9321926953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321926954", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "fee": "no", + "name": "Bicicletário UEMS", + "operator": "UEMS", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6622686, + -20.4214651 + ] + }, + "id": "node/9321926954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321926955", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "fee": "no", + "name": "Bicicletário UEMS", + "operator": "UEMS", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6643329, + -20.4215084 + ] + }, + "id": "node/9321926955" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321926956", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "fee": "no", + "name": "Bicicletário UEMS", + "operator": "UEMS", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6643113, + -20.421237 + ] + }, + "id": "node/9321926956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321926957", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "32", + "covered": "yes", + "fee": "no", + "name": "Bicicletário UEMS", + "operator": "UEMS", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6634209, + -20.4216961 + ] + }, + "id": "node/9321926957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9323772288", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Bicicletário Hemosul", + "operator": "Hemosul", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6090966, + -20.4684714 + ] + }, + "id": "node/9323772288" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324250465", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Bicicletário Universidade Estácio de Sá", + "operator": "Universidade Estácio de Sá", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6049037, + -20.4679484 + ] + }, + "id": "node/9324250465" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324321844", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Supermercado Duarte", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6763921, + -20.50021 + ] + }, + "id": "node/9324321844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324372308", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "50", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Real Supermercados", + "operator": "Real Supermercados", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6815848, + -20.4983935 + ] + }, + "id": "node/9324372308" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324688771", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "UBSF Jardim Los Angeles", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6284125, + -20.5492531 + ] + }, + "id": "node/9324688771" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324975245", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "no", + "fee": "no", + "name": "Paraciclo B - Shopping das Araras", + "operator": "Shopping das Araras", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5731885, + -20.4711391 + ] + }, + "id": "node/9324975245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324975246", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "no", + "fee": "no", + "name": "Paraciclo A - Shopping das Araras", + "operator": "Shopping das Araras", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5738369, + -20.4712826 + ] + }, + "id": "node/9324975246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324975247", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Paraciclo - Assaí Joaquim Murtinho", + "operator": "Assaí Atacadista", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5837778, + -20.4704746 + ] + }, + "id": "node/9324975247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9324975248", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mercado Bolando", + "operator": "Mercado Bolando", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5686292, + -20.47157 + ] + }, + "id": "node/9324975248" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9325215693", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "7", + "covered": "no", + "fee": "no", + "operator": "Igreja Missionária", + "operator:type": "religious" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6666823, + -20.4454362 + ] + }, + "id": "node/9325215693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9325262091", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "30", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Terminal Julho de Castillho", + "operator": "Terminal Julho de Castillho", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6651156, + -20.4453257 + ] + }, + "id": "node/9325262091" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9325298726", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "4", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Supermercado Nunes", + "operator": "Supermercado Nunes", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6788269, + -20.4471749 + ] + }, + "id": "node/9325298726" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9325312977", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "6", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Mercado Moreira", + "operator": "Mercado Moreira", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.682449, + -20.4489647 + ] + }, + "id": "node/9325312977" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9325778389", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "6", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Comper Rui Barbosa", + "operator": "Comper Rui Barbosa", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6108837, + -20.4795122 + ] + }, + "id": "node/9325778389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9327518318", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "11", + "covered": "no", + "fee": "no", + "name": "Paraciclo - Fort Tiradentes", + "operator": "Fort Atacadista", + "operator:type": "privado" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5842178, + -20.4719413 + ] + }, + "id": "node/9327518318" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9327723885", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Paraciclo Sul - Praça Belmar Fidalgo", + "operator": "Prefeitura", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.606538, + -20.4607251 + ] + }, + "id": "node/9327723885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9327723886", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Paraciclo Norte - Praça Belmar Fidalgo", + "operator": "Prefeitura", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6067391, + -20.4596395 + ] + }, + "id": "node/9327723886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334578897", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "front_wheel", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Grupo Liderança", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6600343, + -20.5286413 + ] + }, + "id": "node/9334578897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334620232", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator": "Banco do Brasil", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6549033, + -20.510878 + ] + }, + "id": "node/9334620232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334653211", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Supermercado do Produtor", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6539607, + -20.5065965 + ] + }, + "id": "node/9334653211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334659185", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "1", + "covered": "no", + "fee": "no", + "name": "Paraciclo Drogasil", + "operator": "Drogasil", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6501819, + -20.4955974 + ] + }, + "id": "node/9334659185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334665595", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Supermercado Comper", + "operator": "Supermercado Comper", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6404037, + -20.4792329 + ] + }, + "id": "node/9334665595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334679546", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Paraciclo Academia Hi-Power", + "operator": "Academia Hi-Power", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6450023, + -20.4853484 + ] + }, + "id": "node/9334679546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334741564", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo Loja Falantes & Cia.", + "operator": "Loja Falantes & Cia.", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6284495, + -20.4686633 + ] + }, + "id": "node/9334741564" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334751731", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "name": "Paraciclo Senai", + "operator": "Senai", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.624944, + -20.4661551 + ] + }, + "id": "node/9334751731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334760215", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo UPA Vila Almeida", + "operator": "UPA Vila Almeida", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6575747, + -20.4396498 + ] + }, + "id": "node/9334760215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9334766758", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "name": "Paraciclo Correios AC Guanandi", + "operator": "Correios AC Guanandi", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6482108, + -20.4939004 + ] + }, + "id": "node/9334766758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335087787", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6715625, + -20.5373008 + ] + }, + "id": "node/9335087787" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335087788", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo em frente a Drogaria Pacheco" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6715696, + -20.5373227 + ] + }, + "id": "node/9335087788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335087789", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo em frente a loja de utilidades" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6714741, + -20.537319 + ] + }, + "id": "node/9335087789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335116900", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Drogaria Droga Mais", + "operator": "Drogaria Droga Mais", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6715537, + -20.5371044 + ] + }, + "id": "node/9335116900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335150285", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.8185837, + -21.0348113 + ] + }, + "id": "node/9335150285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335165661", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Paraciclo Depósito Milênio", + "operator": "Depósito Milênio", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6602128, + -20.5054424 + ] + }, + "id": "node/9335165661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335177305", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo Casa & Cor", + "operator": "Casa & Cor", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6593052, + -20.4867754 + ] + }, + "id": "node/9335177305" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335191335", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "name": "Paraciclo Lotérica O Vitorioso", + "operator": "Lotérica O Vitorioso", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.679161, + -20.4992628 + ] + }, + "id": "node/9335191335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335195396", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Barbearia El Shaday", + "operator": "Barbearia El Shaday", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6818508, + -20.4983279 + ] + }, + "id": "node/9335195396" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335201668", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Drogaria Nielly", + "operator": "Drogaria Nielly", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6763362, + -20.5003842 + ] + }, + "id": "node/9335201668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335203743", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "name": "Paraciclo Loja Club Doopé", + "operator": "Loja Club Doopé", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6811288, + -20.498739 + ] + }, + "id": "node/9335203743" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335207177", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Academia Power Fitness", + "operator": "Academia Power Fitness", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6851231, + -20.4972282 + ] + }, + "id": "node/9335207177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335286072", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "name": "Paraciclo Nutri Pet", + "operator": "Nutri Pet", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5651376, + -20.4702682 + ] + }, + "id": "node/9335286072" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335286073", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Paraciclo Tabernáculo da Revelação", + "operator": "Tabernáculo", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5750624, + -20.4773719 + ] + }, + "id": "node/9335286073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337354384", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "name": "Paraciclo Drogaria Bem Viver", + "operator": "Drogaria Bem Viver", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6731068, + -20.5424544 + ] + }, + "id": "node/9337354384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337359628", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "14", + "covered": "no", + "fee": "no", + "name": "Paraciclo Atletic Academia", + "operator": "Atletic Academia", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6734007, + -20.5429023 + ] + }, + "id": "node/9337359628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337366797", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "name": "Paraciclo Drogarias Farmais", + "operator": "Rede de Drogarias Farmais", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6709585, + -20.5355781 + ] + }, + "id": "node/9337366797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337372030", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Academia Sports Center", + "operator": "Academia Sports Center", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6709178, + -20.5354438 + ] + }, + "id": "node/9337372030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337379950", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Paraciclo Ágape Multi Serviços", + "operator": "Ágape Multi Serviços", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6713117, + -20.5365083 + ] + }, + "id": "node/9337379950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337404536", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo Di Sapatus", + "operator": "Di Sapatus", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.670778, + -20.5349185 + ] + }, + "id": "node/9337404536" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337404537", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6705709, + -20.5343783 + ] + }, + "id": "node/9337404537" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337434450", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "yes", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6700118, + -20.5335215 + ] + }, + "id": "node/9337434450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337436926", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Supermercado Athenas", + "operator": "Supermercado Athenas", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6689208, + -20.5301536 + ] + }, + "id": "node/9337436926" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497492", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "yes", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6677449, + -20.5262379 + ] + }, + "id": "node/9337497492" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497493", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "operator": "Supermercado Pires", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6664252, + -20.5224332 + ] + }, + "id": "node/9337497493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497494", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "operator": "Farmácia Popular Tijuca", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6663988, + -20.5223399 + ] + }, + "id": "node/9337497494" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497495", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "yes", + "fee": "no", + "name": "Diel Cyber", + "operator": "Diel Cyber", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6656447, + -20.5194462 + ] + }, + "id": "node/9337497495" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497496", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mercado Quitanda Maior", + "operator": "Mercado Quitanda Maior", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6654942, + -20.5189741 + ] + }, + "id": "node/9337497496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497497", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "5", + "covered": "yes", + "name": "Paraciclo Supermercado Econômico", + "operator": "Supermercado Econômico", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6649495, + -20.5173121 + ] + }, + "id": "node/9337497497" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497498", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6647035, + -20.5165068 + ] + }, + "id": "node/9337497498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497499", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Maná", + "operator": "Supermercado Maná", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6644799, + -20.5158195 + ] + }, + "id": "node/9337497499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497500", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Mercado Ouro Branco", + "operator": "Mercado Ouro Branco", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6640408, + -20.5143993 + ] + }, + "id": "node/9337497500" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497501", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Trazzi", + "operator": "Supermercado Trazzi", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6630407, + -20.5111227 + ] + }, + "id": "node/9337497501" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337497503", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Home Fight", + "operator": "Home Fight", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6626614, + -20.5099729 + ] + }, + "id": "node/9337497503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337505902", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "informal", + "name": "Grade do Terminal General Osório" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.593646, + -20.4331667 + ] + }, + "id": "node/9337505902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337624521", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "informal", + "covered": "no", + "fee": "no", + "operator": "Fort Atacadista", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6266996, + -20.4780439 + ] + }, + "id": "node/9337624521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337726100", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mercadão Municipal", + "note": "Paraciclo em desacordo com a Lei Municipal de Bicicletários", + "operator": "Mercadão Municipal Antônio Valente", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6195864, + -20.4670831 + ] + }, + "id": "node/9337726100" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337769215", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Pires", + "operator": "Supermercado Pires", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.562427, + -20.3870534 + ] + }, + "id": "node/9337769215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9337774069", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Drogaria São Leopoldo", + "operator": "Drogaria São Leopoldo", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5704008, + -20.3953104 + ] + }, + "id": "node/9337774069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9338005982", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Lunardi", + "operator": "Supermercado Lunardi", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5770665, + -20.3895616 + ] + }, + "id": "node/9338005982" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9338005983", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5724181, + -20.3900266 + ] + }, + "id": "node/9338005983" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9338005984", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Paraciclo Souza Supermercado", + "operator": "Souza Supermercado", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5745995, + -20.3926229 + ] + }, + "id": "node/9338005984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9338014608", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5920935, + -20.4061854 + ] + }, + "id": "node/9338014608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9338030125", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Paraciclo Garoto Supermercado", + "operator": "Garoto Supermercado", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.558721, + -20.3865787 + ] + }, + "id": "node/9338030125" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9338444678", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "1", + "covered": "no", + "fee": "no", + "name": "Paraciclo Drogasil", + "operator": "Drogasil", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.604939, + -20.4468192 + ] + }, + "id": "node/9338444678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9340247182", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mercado Marquez", + "operator": "Mercado Marquez", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6199188, + -20.3967411 + ] + }, + "id": "node/9340247182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9340294408", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclo Academia Performance", + "operator": "Academia Performance", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6276353, + -20.4334433 + ] + }, + "id": "node/9340294408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9340334667", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Pereira", + "operator": "Supermercado Pereira", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6413081, + -20.413373 + ] + }, + "id": "node/9340334667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9341036800", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "name": "Paraciclo Petz", + "operator": "Estacionamento Petz", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5843319, + -20.4588897 + ] + }, + "id": "node/9341036800" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9341687599", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "name": "Paraciclo Mister João Supermercado", + "operator": "Mister João Supermercado", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6268371, + -20.4226677 + ] + }, + "id": "node/9341687599" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9341687600", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo Telesom Soluções Técnicas", + "operator": "Telesom Soluções Técnicas", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6325773, + -20.4210397 + ] + }, + "id": "node/9341687600" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9341699836", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Camila", + "operator": "Supermercado Camila", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.638423, + -20.422551 + ] + }, + "id": "node/9341699836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9341699837", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9", + "covered": "no", + "fee": "no", + "name": "Paraciclo Supermercado Nunes", + "operator": "Supermercado Nunes", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6484981, + -20.4268114 + ] + }, + "id": "node/9341699837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344301116", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Barbosa", + "operator": "Supermercado Barbosa", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7028968, + -20.4509801 + ] + }, + "id": "node/9344301116" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344311330", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Nunes Supermercado", + "operator": "Nunes Supermercado", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6889515, + -20.4414553 + ] + }, + "id": "node/9344311330" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344311331", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Supermercado Dona Jandyra", + "operator": "Supermercado Dona Jandyra", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6717445, + -20.4349909 + ] + }, + "id": "node/9344311331" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344325517", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no", + "operator": "Supermercado Carioca II", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7000855, + -20.4476106 + ] + }, + "id": "node/9344325517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344450530", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "7", + "covered": "no", + "fee": "no", + "name": "Paraciclo Supermercado Carioca", + "operator": "Supermercado Carioca", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7085265, + -20.4687062 + ] + }, + "id": "node/9344450530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344686963", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Paraciclco Odontoclinic", + "operator": "Odontoclinic", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5803791, + -20.4809579 + ] + }, + "id": "node/9344686963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344686964", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Paraciclo Marcio Cabelereiro", + "operator": "Marcio Cabelereiro", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5755028, + -20.4775517 + ] + }, + "id": "node/9344686964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344686965", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Paraciclo Sr. Italo Barbearia", + "operator": "Sr. Italo Barbearia", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5757771, + -20.47774 + ] + }, + "id": "node/9344686965" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344686966", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Paraciclo espaço Itatiaia", + "operator": "Espaço Itatiaia", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5790537, + -20.4800174 + ] + }, + "id": "node/9344686966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9344686967", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Condomínio Aero Rancho CH7", + "operator": "Condomínio Aero Rancho CH 7", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6557847, + -20.5270755 + ] + }, + "id": "node/9344686967" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9346401819", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "name": "Paraciclo Havan", + "note": "Paraciclo incompatível com a lei municipal e o manual de bicicletários.", + "operator": "Havan", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5808061, + -20.4199625 + ] + }, + "id": "node/9346401819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9351565204", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "35", + "covered": "yes", + "fee": "no", + "operator": "Multiplan (ParkJacarepaguá)", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3398967, + -22.9564511 + ] + }, + "id": "node/9351565204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9352462354", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4910974, + -13.0125345 + ] + }, + "id": "node/9352462354" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9354286757", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3412197, + -22.9490113 + ] + }, + "id": "node/9354286757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9354286758", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3441768, + -22.9462283 + ] + }, + "id": "node/9354286758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9363398212", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1940768, + -22.9513114 + ] + }, + "id": "node/9363398212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9363517366", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.195062, + -22.9551309 + ] + }, + "id": "node/9363517366" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9363538321", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.193392, + -22.9545531 + ] + }, + "id": "node/9363538321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924586", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "operator": "Supermercado Prezunic", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3400851, + -22.9458174 + ] + }, + "id": "node/9366924586" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924587", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3400019, + -22.9457704 + ] + }, + "id": "node/9366924587" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924588", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3399858, + -22.9458791 + ] + }, + "id": "node/9366924588" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924589", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3399765, + -22.9459927 + ] + }, + "id": "node/9366924589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924590", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3398705, + -22.9469505 + ] + }, + "id": "node/9366924590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924591", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3398973, + -22.9468609 + ] + }, + "id": "node/9366924591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924593", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3399355, + -22.9474167 + ] + }, + "id": "node/9366924593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9366924594", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "´5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3407838, + -22.9486275 + ] + }, + "id": "node/9366924594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9367016736", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3332843, + -22.9364711 + ] + }, + "id": "node/9367016736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9367016737", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.333517, + -22.9363532 + ] + }, + "id": "node/9367016737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9367016738", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3335754, + -22.9363625 + ] + }, + "id": "node/9367016738" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9367016739", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.335748, + -22.9369115 + ] + }, + "id": "node/9367016739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9377705039", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3410454, + -22.9430956 + ] + }, + "id": "node/9377705039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9377705040", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3411513, + -22.9429104 + ] + }, + "id": "node/9377705040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9381641172", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1926931, + -22.9552069 + ] + }, + "id": "node/9381641172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9392267351", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "pt:bicycle_parking": "U invertido" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1925175, + -22.9551236 + ] + }, + "id": "node/9392267351" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9408688447", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3518364, + -22.9582461 + ] + }, + "id": "node/9408688447" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9408688448", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3511436, + -22.9582897 + ] + }, + "id": "node/9408688448" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9408688449", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3513812, + -22.9583078 + ] + }, + "id": "node/9408688449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9412810664", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Paraciclo Bar Mr. Hoppy", + "operator": "Mr. Hoppy Bar", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6098751, + -20.465288 + ] + }, + "id": "node/9412810664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9445146074", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5691332, + -3.7336344 + ] + }, + "id": "node/9445146074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9445147517", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5705592, + -3.7325373 + ] + }, + "id": "node/9445147517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9445147518", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5706945, + -3.7325499 + ] + }, + "id": "node/9445147518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9451032858", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9282914, + -19.9281353 + ] + }, + "id": "node/9451032858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9451519613", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9400222, + -19.93478 + ] + }, + "id": "node/9451519613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9467098717", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4528046, + -12.9792063 + ] + }, + "id": "node/9467098717" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9470193551", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2178812, + -22.9478738 + ] + }, + "id": "node/9470193551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9471845747", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1760227, + -22.9262739 + ] + }, + "id": "node/9471845747" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9487830608", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5328707, + -13.0058006 + ] + }, + "id": "node/9487830608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9487996196", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5412632, + -3.7167705 + ] + }, + "id": "node/9487996196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9492930353", + "amenity": "bicycle_parking", + "bicycle_parking": "paraciclo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9208904, + -8.0458944 + ] + }, + "id": "node/9492930353" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9503721084", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7129388, + -23.5654117 + ] + }, + "id": "node/9503721084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9503750145", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "fee": "no", + "operator": "Extra", + "operator:wikidata": "Q5422131", + "operator:wikipedia": "pt:Extra (rede varejista)", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6184829, + -23.58967 + ] + }, + "id": "node/9503750145" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9506789989", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.73001, + -23.5645854 + ] + }, + "id": "node/9506789989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9518125817", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4581764, + -13.0051405 + ] + }, + "id": "node/9518125817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9524929497", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "40", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Shopping Internacional", + "operator": "Shopping Internacional Guarulhos", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5508474, + -23.4877083 + ] + }, + "id": "node/9524929497" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9524952216", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "153", + "covered": "yes", + "fee": "no", + "operator": "Serviço Social do Comércio", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.50161, + -23.4592803 + ] + }, + "id": "node/9524952216" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9530499628", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5445134, + -3.7185494 + ] + }, + "id": "node/9530499628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9530756081", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.546738, + -3.7227396 + ] + }, + "id": "node/9530756081" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9530832459", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -39.8778534, + -9.5915721 + ] + }, + "id": "node/9530832459" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9543005603", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5985457, + -3.716239 + ] + }, + "id": "node/9543005603" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9543031518", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5987123, + -3.7157715 + ] + }, + "id": "node/9543031518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9553194239", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2942427, + -20.308851 + ] + }, + "id": "node/9553194239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9559037417", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.897608, + -15.8110878 + ] + }, + "id": "node/9559037417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9560655273", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8721963, + -15.7892991 + ] + }, + "id": "node/9560655273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9561035917", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "operator": "Venâncio Shopping", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8926268, + -15.7946524 + ] + }, + "id": "node/9561035917" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9569654129", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9368825, + -19.9387618 + ] + }, + "id": "node/9569654129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9574058830", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6432284, + -27.1392898 + ] + }, + "id": "node/9574058830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9574059556", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6110634, + -27.2032297 + ] + }, + "id": "node/9574059556" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9574113615", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.060912, + -26.9235413 + ] + }, + "id": "node/9574113615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9574127417", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0618823, + -26.9233529 + ] + }, + "id": "node/9574127417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9576802148", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9274769, + -27.2861318 + ] + }, + "id": "node/9576802148" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9581839280", + "amenity": "bicycle_parking", + "indoor": "yes", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7233501, + -23.6405523 + ] + }, + "id": "node/9581839280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9588647039", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9532884, + -26.945826 + ] + }, + "id": "node/9588647039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9602072549", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "loops", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Shopping Pátio Savassi (Entrada Rua Lavras)", + "operator": "Pátio Savassi", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.934796, + -19.9405455 + ] + }, + "id": "node/9602072549" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9602072550", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "loops", + "covered": "yes", + "fee": "no", + "name": "Bicicletário Shopping Diamond Mall (Entrada Av. Olegário Maciel)", + "operator": "Diamond Mall", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9467186, + -19.928013 + ] + }, + "id": "node/9602072550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9603435702", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "operator": "Paula Ramos Esporte Clube" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5180765, + -27.5923691 + ] + }, + "id": "node/9603435702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9607705450", + "access": "private", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2407311, + -22.9975117 + ] + }, + "id": "node/9607705450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9609637018", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9677361, + -26.9247687 + ] + }, + "id": "node/9609637018" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9622069106", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.529782, + -3.7358145 + ] + }, + "id": "node/9622069106" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9624245819", + "access": "customers", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5715624, + -23.5499994 + ] + }, + "id": "node/9624245819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9627556555", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4449126, + -27.4313848 + ] + }, + "id": "node/9627556555" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9630473862", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6539438, + -26.906384 + ] + }, + "id": "node/9630473862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091122", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6479813, + -26.9943006 + ] + }, + "id": "node/9632091122" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091144", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "operator": "Faculdade Avantis" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.655694, + -26.9954848 + ] + }, + "id": "node/9632091144" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091167", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6398809, + -26.989557 + ] + }, + "id": "node/9632091167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091186", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6428931, + -26.9904275 + ] + }, + "id": "node/9632091186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091191", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6425659, + -26.9907263 + ] + }, + "id": "node/9632091191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091257", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.643274, + -26.9915042 + ] + }, + "id": "node/9632091257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091265", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6431091, + -26.9910382 + ] + }, + "id": "node/9632091265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091271", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.643557, + -26.9915066 + ] + }, + "id": "node/9632091271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091278", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.641206, + -26.9888309 + ] + }, + "id": "node/9632091278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091279", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6410075, + -26.9888166 + ] + }, + "id": "node/9632091279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091282", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "no", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6430997, + -26.9906856 + ] + }, + "id": "node/9632091282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9632091329", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "lit": "yes", + "smoothness": "excellent", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6427242, + -26.9892325 + ] + }, + "id": "node/9632091329" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9643815716", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0642874, + -26.9217417 + ] + }, + "id": "node/9643815716" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9660861789", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0646676, + -26.9225583 + ] + }, + "id": "node/9660861789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9670524591", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "operator": "Prefeitura do Campus USP da Capital" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7393495, + -23.5596434 + ] + }, + "id": "node/9670524591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9672514890", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2802909, + -8.0997035 + ] + }, + "id": "node/9672514890" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9688508653", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.6913284, + -27.2519822 + ] + }, + "id": "node/9688508653" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9693915064", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9724493, + -21.1349679 + ] + }, + "id": "node/9693915064" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9708301386", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6788455, + -27.6412134 + ] + }, + "id": "node/9708301386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9712756214", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0849359, + -26.7979022 + ] + }, + "id": "node/9712756214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9717906617", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0492982, + -10.9037062 + ] + }, + "id": "node/9717906617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9727626604", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5254368, + -3.7323929 + ] + }, + "id": "node/9727626604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9738511013", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1723117, + -22.9259605 + ] + }, + "id": "node/9738511013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9738511014", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1725466, + -22.9258572 + ] + }, + "id": "node/9738511014" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9741487339", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2588906, + -26.1989187 + ] + }, + "id": "node/9741487339" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9749076170", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9490418, + -12.2421924 + ] + }, + "id": "node/9749076170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9754828309", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0574517, + -26.9278265 + ] + }, + "id": "node/9754828309" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9755233793", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0337426, + -26.9077857 + ] + }, + "id": "node/9755233793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9760161732", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5136435, + -27.5915205 + ] + }, + "id": "node/9760161732" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9762181777", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes", + "fee": "no", + "lit": "yes", + "operator": "Círculo", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9635432, + -26.9285543 + ] + }, + "id": "node/9762181777" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9768408936", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4993014, + -3.7534091 + ] + }, + "id": "node/9768408936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9772103869", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3737438, + -17.827577 + ] + }, + "id": "node/9772103869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9783799269", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6290637, + -27.0026341 + ] + }, + "id": "node/9783799269" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9783799281", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6296564, + -27.0025302 + ] + }, + "id": "node/9783799281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9783799282", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6294526, + -27.0025624 + ] + }, + "id": "node/9783799282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9784249939", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0792376, + -26.9104657 + ] + }, + "id": "node/9784249939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9785691282", + "amenity": "bicycle_parking", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2563416, + -25.4363104 + ] + }, + "id": "node/9785691282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9797571441", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0580037, + -22.9408909 + ] + }, + "id": "node/9797571441" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9797571442", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0584905, + -22.9402495 + ] + }, + "id": "node/9797571442" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9801907445", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0178019, + -28.4852266 + ] + }, + "id": "node/9801907445" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9804885928", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7188375, + -29.7165556 + ] + }, + "id": "node/9804885928" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9810882413", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "CNA", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4574296, + -12.9906123 + ] + }, + "id": "node/9810882413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9812393094", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "lit": "no", + "operator": "Banco do Brasil", + "smoothness": "excellent", + "supervised": "no", + "surface": "paved" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.620624, + -27.041512 + ] + }, + "id": "node/9812393094" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9821383278", + "access": "permissive", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1002257, + -15.8441563 + ] + }, + "id": "node/9821383278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9821383307", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1020244, + -15.8441307 + ] + }, + "id": "node/9821383307" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9828956867", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3309454, + -22.9357703 + ] + }, + "id": "node/9828956867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9828956868", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3289773, + -22.9343309 + ] + }, + "id": "node/9828956868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9833623106", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6399025, + -27.6781387 + ] + }, + "id": "node/9833623106" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9835970929", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5326345, + -13.0106123 + ] + }, + "id": "node/9835970929" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9844537585", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1085301, + -15.9334676 + ] + }, + "id": "node/9844537585" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9844549624", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0267182, + -16.0420551 + ] + }, + "id": "node/9844549624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9849151651", + "access": "customers", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no", + "level": "-1", + "lit": "yes", + "name": "Bicicletario interno e subterrâneo da Decathlon", + "operator": "Decathlon", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9518361, + -15.8194913 + ] + }, + "id": "node/9849151651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9858543231", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0549488, + -26.9298636 + ] + }, + "id": "node/9858543231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860774006", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9377772, + -26.9113434 + ] + }, + "id": "node/9860774006" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860774013", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9383948, + -26.9114846 + ] + }, + "id": "node/9860774013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860774014", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9414069, + -26.9133621 + ] + }, + "id": "node/9860774014" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860778420", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9466614, + -26.9175953 + ] + }, + "id": "node/9860778420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860778421", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9468277, + -26.9175235 + ] + }, + "id": "node/9860778421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860778423", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9496064, + -26.9216418 + ] + }, + "id": "node/9860778423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860778425", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9518487, + -26.9246802 + ] + }, + "id": "node/9860778425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860778426", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9522538, + -26.9251525 + ] + }, + "id": "node/9860778426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860778436", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.949878, + -26.9306605 + ] + }, + "id": "node/9860778436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9860778444", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9533642, + -26.9279111 + ] + }, + "id": "node/9860778444" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9865774413", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Drogasil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4348487, + -12.9672915 + ] + }, + "id": "node/9865774413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9866565280", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0845705, + -26.480495 + ] + }, + "id": "node/9866565280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9867954052", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.3518005, + -23.0207486 + ] + }, + "id": "node/9867954052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9869076163", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.0516193, + -19.405166 + ] + }, + "id": "node/9869076163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9869084720", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.0606044, + -19.3998732 + ] + }, + "id": "node/9869084720" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9871394307", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "no", + "operator": "Powergym", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0776903, + -26.9017427 + ] + }, + "id": "node/9871394307" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9876594804", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0777195, + -26.9882681 + ] + }, + "id": "node/9876594804" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9876594805", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0777315, + -26.9880207 + ] + }, + "id": "node/9876594805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9876612945", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0784383, + -26.9880291 + ] + }, + "id": "node/9876612945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9876645496", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5154987, + -3.7194027 + ] + }, + "id": "node/9876645496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9876645497", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5145244, + -3.7191579 + ] + }, + "id": "node/9876645497" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9876705533", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5110091, + -3.7202879 + ] + }, + "id": "node/9876705533" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9876705543", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5098058, + -3.7207671 + ] + }, + "id": "node/9876705543" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9881748314", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "operator": "SmartFit", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.50211, + -12.9219673 + ] + }, + "id": "node/9881748314" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9893634484", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2763263, + -26.8220649 + ] + }, + "id": "node/9893634484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9899975273", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "supervised": "no", + "surface": "paving_stones" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0607444, + -26.9240573 + ] + }, + "id": "node/9899975273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9905033697", + "amenity": "motorcycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8731775, + -15.7635782 + ] + }, + "id": "node/9905033697" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9910787016", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2404303, + -26.8918586 + ] + }, + "id": "node/9910787016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9912587920", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6429964, + -27.6355831 + ] + }, + "id": "node/9912587920" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9921236831", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4914028, + -3.7254721 + ] + }, + "id": "node/9921236831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9921236905", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4884559, + -3.7235231 + ] + }, + "id": "node/9921236905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9927456757", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "indoor": "no", + "mapillary": "1408999352811992" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5122491, + -12.9702063 + ] + }, + "id": "node/9927456757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9945475862", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3814555, + -26.9554004 + ] + }, + "id": "node/9945475862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9945614549", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "18", + "operator": "UniRios", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.2216977, + -9.4105654 + ] + }, + "id": "node/9945614549" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9945796556", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3857859, + -27.0326461 + ] + }, + "id": "node/9945796556" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9949967131", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.899052, + -8.0353395 + ] + }, + "id": "node/9949967131" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9961813615", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2027293, + -22.5338135 + ] + }, + "id": "node/9961813615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9964340295", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6569218, + -27.5771204 + ] + }, + "id": "node/9964340295" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9964340296", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6568956, + -27.5766176 + ] + }, + "id": "node/9964340296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9988675580", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "fee": "no", + "level": "-1", + "operator": "Shopping Butantã", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7250324, + -23.5850928 + ] + }, + "id": "node/9988675580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9989508178", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1902288, + -22.9534293 + ] + }, + "id": "node/9989508178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9989508179", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1904932, + -22.9535146 + ] + }, + "id": "node/9989508179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9989508180", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1897196, + -22.9532281 + ] + }, + "id": "node/9989508180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9989508181", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1894658, + -22.9531554 + ] + }, + "id": "node/9989508181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9989508182", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1890483, + -22.9530241 + ] + }, + "id": "node/9989508182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9989508183", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1887588, + -22.9530682 + ] + }, + "id": "node/9989508183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9989508184", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1855304, + -22.9517611 + ] + }, + "id": "node/9989508184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9998107676", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.273404, + -26.8256422 + ] + }, + "id": "node/9998107676" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10003155013", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6192025, + -26.4610958 + ] + }, + "id": "node/10003155013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154401", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6403486, + -23.5869261 + ] + }, + "id": "node/10015154401" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154402", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6406785, + -23.5870968 + ] + }, + "id": "node/10015154402" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154403", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6408196, + -23.5871693 + ] + }, + "id": "node/10015154403" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154405", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6431053, + -23.5879367 + ] + }, + "id": "node/10015154405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154406", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6435788, + -23.5880973 + ] + }, + "id": "node/10015154406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154407", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6441435, + -23.5882891 + ] + }, + "id": "node/10015154407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154408", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448701, + -23.5885245 + ] + }, + "id": "node/10015154408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154409", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6457938, + -23.588849 + ] + }, + "id": "node/10015154409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154410", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6462734, + -23.5890219 + ] + }, + "id": "node/10015154410" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154411", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6472288, + -23.5893577 + ] + }, + "id": "node/10015154411" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154412", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6474978, + -23.5893967 + ] + }, + "id": "node/10015154412" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154413", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6476633, + -23.589409 + ] + }, + "id": "node/10015154413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10015154414", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6477619, + -23.5894592 + ] + }, + "id": "node/10015154414" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585380", + "amenity": "bicycle_parking", + "bicycle_parking": "informal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6648867, + -26.9018312 + ] + }, + "id": "node/10030585380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585419", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6650596, + -26.9021572 + ] + }, + "id": "node/10030585419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585624", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6523187, + -26.9160989 + ] + }, + "id": "node/10030585624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585658", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6571104, + -26.9034519 + ] + }, + "id": "node/10030585658" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585664", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wave", + "capacity": "6", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6544981, + -26.906275 + ] + }, + "id": "node/10030585664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585698", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6519105, + -26.9167957 + ] + }, + "id": "node/10030585698" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585704", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.650187, + -26.9188596 + ] + }, + "id": "node/10030585704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585821", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6422922, + -26.9182914 + ] + }, + "id": "node/10030585821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585863", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "covered": "yes", + "operator": "Bistek" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.65479, + -26.9180293 + ] + }, + "id": "node/10030585863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10043017946", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2952338, + -23.0048226 + ] + }, + "id": "node/10043017946" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10045300074", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8584569, + -15.764769 + ] + }, + "id": "node/10045300074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10054475600", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6607168, + -23.607099 + ] + }, + "id": "node/10054475600" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10054741467", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5251558, + -3.7320357 + ] + }, + "id": "node/10054741467" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067105622", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.769016, + -27.2666798 + ] + }, + "id": "node/10067105622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282560", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "1º Bicicletário da Biblioteca Central da Unifap" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0849147, + -0.0072367 + ] + }, + "id": "node/10067282560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282561", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "2º Bicicletário da Biblioteca Central da Unifap" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0848068, + -0.0071798 + ] + }, + "id": "node/10067282561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282562", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "name": "Bicicletário do Restaurante Universitário" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0835029, + -0.0081717 + ] + }, + "id": "node/10067282562" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282563", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "fee": "no", + "name": "Bicicletário do Auditório da UNIFAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0833848, + -0.0070729 + ] + }, + "id": "node/10067282563" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282564", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário do DERCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.083882, + -0.006045 + ] + }, + "id": "node/10067282564" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282565", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bicicletário do DEPSEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0839419, + -0.0057216 + ] + }, + "id": "node/10067282565" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282566", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Bicicletário do DEPLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0838489, + -0.0042379 + ] + }, + "id": "node/10067282566" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067282567", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "yes", + "fee": "no", + "name": "Bicicletário do DCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0838745, + -0.0028537 + ] + }, + "id": "node/10067282567" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10068329805", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5694455, + -3.8180629 + ] + }, + "id": "node/10068329805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10068801617", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "0", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5689907, + -3.8175521 + ] + }, + "id": "node/10068801617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10073204945", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5702322, + -3.8166531 + ] + }, + "id": "node/10073204945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10075067319", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5586928, + -3.7108802 + ] + }, + "id": "node/10075067319" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10092361682", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4715187, + -12.9891837 + ] + }, + "id": "node/10092361682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10096375546", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4984428, + -27.7046211 + ] + }, + "id": "node/10096375546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10099899525", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Droga Raia", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8461278, + -26.2948272 + ] + }, + "id": "node/10099899525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10102256398", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6673978, + -27.6070411 + ] + }, + "id": "node/10102256398" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110329128", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1105161, + -22.907022 + ] + }, + "id": "node/10110329128" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110329129", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1105522, + -22.907062 + ] + }, + "id": "node/10110329129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110329130", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1100632, + -22.9074113 + ] + }, + "id": "node/10110329130" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110329131", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1108001, + -22.906717 + ] + }, + "id": "node/10110329131" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10117401869", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4687232, + -12.9964432 + ] + }, + "id": "node/10117401869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10117401870", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "yes", + "fee": "no", + "operator": "BRT Salvador" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4668971, + -12.9848526 + ] + }, + "id": "node/10117401870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10117675223", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4578097, + -1.4749464 + ] + }, + "id": "node/10117675223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10125199731", + "access": "yes", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.192552, + -18.6523342 + ] + }, + "id": "node/10125199731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10126569684", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.8282686, + -27.4041256 + ] + }, + "id": "node/10126569684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874852", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4790423, + -3.7216542 + ] + }, + "id": "node/10128874852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874853", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4790195, + -3.7216944 + ] + }, + "id": "node/10128874853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874854", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4801452, + -3.7219586 + ] + }, + "id": "node/10128874854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874855", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.485041, + -3.7231963 + ] + }, + "id": "node/10128874855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874856", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4852203, + -3.7231964 + ] + }, + "id": "node/10128874856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874857", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4854498, + -3.7232032 + ] + }, + "id": "node/10128874857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874858", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4863765, + -3.723217 + ] + }, + "id": "node/10128874858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874859", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4866077, + -3.7232235 + ] + }, + "id": "node/10128874859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874860", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4868427, + -3.7232306 + ] + }, + "id": "node/10128874860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874861", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4870343, + -3.7232387 + ] + }, + "id": "node/10128874861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874862", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4874302, + -3.7232548 + ] + }, + "id": "node/10128874862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874863", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4879525, + -3.723345 + ] + }, + "id": "node/10128874863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874864", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4882613, + -3.7234523 + ] + }, + "id": "node/10128874864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874865", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4883797, + -3.7234879 + ] + }, + "id": "node/10128874865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874866", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4886118, + -3.7235616 + ] + }, + "id": "node/10128874866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874867", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4887274, + -3.7235939 + ] + }, + "id": "node/10128874867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874868", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4918059, + -3.7255888 + ] + }, + "id": "node/10128874868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874869", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4941106, + -3.7257906 + ] + }, + "id": "node/10128874869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874870", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4948187, + -3.724912 + ] + }, + "id": "node/10128874870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874871", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4951614, + -3.7249144 + ] + }, + "id": "node/10128874871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874872", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4955711, + -3.7249175 + ] + }, + "id": "node/10128874872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874873", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4959643, + -3.7249253 + ] + }, + "id": "node/10128874873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874874", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4963239, + -3.7249306 + ] + }, + "id": "node/10128874874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874875", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4984044, + -3.724751 + ] + }, + "id": "node/10128874875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874876", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4988837, + -3.7246908 + ] + }, + "id": "node/10128874876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874877", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5001577, + -3.7245205 + ] + }, + "id": "node/10128874877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874878", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5007467, + -3.7244412 + ] + }, + "id": "node/10128874878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874879", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.503542, + -3.7234635 + ] + }, + "id": "node/10128874879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874880", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5040058, + -3.7231909 + ] + }, + "id": "node/10128874880" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874881", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5045771, + -3.7228217 + ] + }, + "id": "node/10128874881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10128874882", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5048992, + -3.7226169 + ] + }, + "id": "node/10128874882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10133840608", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "bike_ride": "yes", + "capacity": "4", + "colour": "white", + "covered": "no", + "fee": "no", + "indoor": "no", + "lit": "yes", + "operator:type": "private", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1290416, + -29.6808926 + ] + }, + "id": "node/10133840608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10138910819", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2227899, + -25.5252741 + ] + }, + "id": "node/10138910819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10138910836", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2207553, + -25.5275213 + ] + }, + "id": "node/10138910836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10138910837", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2216543, + -25.5274278 + ] + }, + "id": "node/10138910837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10187260054", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "yes", + "indoor": "yes", + "level": "-0.5", + "operator": "Plaza Shopping Niterói", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1243997, + -22.8970615 + ] + }, + "id": "node/10187260054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10187403863", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Decathlon", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0073019, + -22.8846476 + ] + }, + "id": "node/10187403863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10207442067", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2279629, + -22.9655759 + ] + }, + "id": "node/10207442067" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10208156385", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "level": "0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2369844, + -25.5009111 + ] + }, + "id": "node/10208156385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10208156386", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "level": "0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2369526, + -25.5008606 + ] + }, + "id": "node/10208156386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10208156387", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "level": "0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2373608, + -25.5011527 + ] + }, + "id": "node/10208156387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10208156388", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "level": "0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2380291, + -25.5013147 + ] + }, + "id": "node/10208156388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10212057849", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8344481, + -25.476947 + ] + }, + "id": "node/10212057849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10212057851", + "amenity": "bicycle_parking", + "capacity": "50" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8308059, + -25.4823582 + ] + }, + "id": "node/10212057851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10231197147", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no", + "operator": "Mais Bike", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4592083, + -12.9833763 + ] + }, + "id": "node/10231197147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10265586036", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1416139, + -26.879473 + ] + }, + "id": "node/10265586036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10268444298", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Droga Raia", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.002724, + -28.4809489 + ] + }, + "id": "node/10268444298" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10268444303", + "amenity": "bicycle_parking", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9979078, + -28.4778798 + ] + }, + "id": "node/10268444303" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10268471612", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Panvel", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0003896, + -28.4796808 + ] + }, + "id": "node/10268471612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10274563504", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6547995, + -26.900851 + ] + }, + "id": "node/10274563504" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10274594679", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no", + "fee": "no", + "lit": "no", + "operator": "Milium", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6548182, + -26.8923059 + ] + }, + "id": "node/10274594679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10277110284", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1610644, + -26.7013246 + ] + }, + "id": "node/10277110284" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10280706172", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6270518, + -26.9993089 + ] + }, + "id": "node/10280706172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10293117419", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "saddle_holder", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1738116, + -26.7380139 + ] + }, + "id": "node/10293117419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10293723577", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2706881, + -25.4089584 + ] + }, + "id": "node/10293723577" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10296170917", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0918939, + -22.3025651 + ] + }, + "id": "node/10296170917" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10313055835", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2676134, + -25.4264521 + ] + }, + "id": "node/10313055835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10313055836", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2682893, + -25.4264049 + ] + }, + "id": "node/10313055836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10536190202", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1641107, + -26.7105524 + ] + }, + "id": "node/10536190202" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10560759967", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1613507, + -26.8227962 + ] + }, + "id": "node/10560759967" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10560759978", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1645527, + -26.8141938 + ] + }, + "id": "node/10560759978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10564978873", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2007116, + -22.984908 + ] + }, + "id": "node/10564978873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10565845937", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0746944, + -26.9071483 + ] + }, + "id": "node/10565845937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10567726936", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1998316, + -22.9845619 + ] + }, + "id": "node/10567726936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10568233263", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1983549, + -22.9834698 + ] + }, + "id": "node/10568233263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10568233264", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.198631, + -22.983454 + ] + }, + "id": "node/10568233264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570115232", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1988353, + -22.9845158 + ] + }, + "id": "node/10570115232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570715531", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1987368, + -22.9835526 + ] + }, + "id": "node/10570715531" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10574955020", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.385114, + -26.9544321 + ] + }, + "id": "node/10574955020" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10574957363", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3779324, + -26.9571648 + ] + }, + "id": "node/10574957363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10579016199", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5823999, + -25.5470959 + ] + }, + "id": "node/10579016199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10584987134", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.578577, + -25.5486278 + ] + }, + "id": "node/10584987134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10586826827", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0520588, + -26.8665341 + ] + }, + "id": "node/10586826827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10605079042", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6753772, + -30.9840256 + ] + }, + "id": "node/10605079042" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10606075749", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4329399, + -12.9696639 + ] + }, + "id": "node/10606075749" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10607110320", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1747364, + -26.7529479 + ] + }, + "id": "node/10607110320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10610703061", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.7100643, + -25.4312051 + ] + }, + "id": "node/10610703061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10614252691", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.9897657, + -10.8940694 + ] + }, + "id": "node/10614252691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10618415050", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0490189, + -10.9128391 + ] + }, + "id": "node/10618415050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10656340182", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6516656, + -26.9012761 + ] + }, + "id": "node/10656340182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10665519922", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "50", + "covered": "yes", + "fee": "yes", + "payment:none": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9127856, + -8.0363807 + ] + }, + "id": "node/10665519922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10689742045", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.9181608, + -20.4508583 + ] + }, + "id": "node/10689742045" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10703963805", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4556182, + -12.9811478 + ] + }, + "id": "node/10703963805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10710024320", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5031145, + -26.2287244 + ] + }, + "id": "node/10710024320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716697835", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.1972496, + -23.5201479 + ] + }, + "id": "node/10716697835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770734", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5629534, + -23.677023 + ] + }, + "id": "node/10716770734" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770735", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5568502, + -23.6779624 + ] + }, + "id": "node/10716770735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770736", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5577194, + -23.6803617 + ] + }, + "id": "node/10716770736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770737", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "covered": "yes", + "fee": "no", + "operator": "Golden Square Shopping", + "operator:type": "private", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5578903, + -23.6839144 + ] + }, + "id": "node/10716770737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770738", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator": "Secretaria de Finanças de São Bernardo do Campo", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5573938, + -23.6801738 + ] + }, + "id": "node/10716770738" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770739", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "6", + "covered": "yes", + "fee": "no", + "operator": "Supermercado Sonda/Decathlon", + "operator:type": "private", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.546861, + -23.6859403 + ] + }, + "id": "node/10716770739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770740", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Prefeitura de São Bernardo do Campo", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5507217, + -23.6882818 + ] + }, + "id": "node/10716770740" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770741", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Prefeitura de São Bernardo do Campo", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5482137, + -23.688974 + ] + }, + "id": "node/10716770741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10716770744", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.57195, + -23.6317139 + ] + }, + "id": "node/10716770744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10718028615", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "lit": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6866862, + -27.6718238 + ] + }, + "id": "node/10718028615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10724436672", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0717922, + -22.9360097 + ] + }, + "id": "node/10724436672" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10728819684", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1816067, + -26.7517487 + ] + }, + "id": "node/10728819684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10728819693", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1795649, + -26.7526857 + ] + }, + "id": "node/10728819693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10737875200", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5656934, + -23.6773608 + ] + }, + "id": "node/10737875200" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10737875201", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5638386, + -23.6773749 + ] + }, + "id": "node/10737875201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10750947440", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2535895, + -22.9934609 + ] + }, + "id": "node/10750947440" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10750959446", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "36", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2546387, + -22.9923486 + ] + }, + "id": "node/10750959446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10750977733", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "fixme": "Falta quantidade de vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2532893, + -22.9925111 + ] + }, + "id": "node/10750977733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10767386939", + "amenity": "bicycle_parking", + "bicycle_parking": "handlebar_holder", + "capacity": "24", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.7792476, + -15.7308178 + ] + }, + "id": "node/10767386939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10769242577", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "operator": "Shopping Neumarkt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0691833, + -26.9196969 + ] + }, + "id": "node/10769242577" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10771866571", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5585683, + -3.7228442 + ] + }, + "id": "node/10771866571" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10771866591", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5594338, + -3.7226909 + ] + }, + "id": "node/10771866591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10797792190", + "access": "customers", + "addr:floor": "G", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no", + "operator": "Hiperideal", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3963741, + -12.9597048 + ] + }, + "id": "node/10797792190" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10803316065", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "capacity": "50", + "fee": "yes", + "payment:cash": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.8376713, + -22.4669202 + ] + }, + "id": "node/10803316065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10804739996", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.91271, + -27.0990837 + ] + }, + "id": "node/10804739996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10808762892", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2348996, + -25.4497383 + ] + }, + "id": "node/10808762892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297935", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2365737, + -25.454032 + ] + }, + "id": "node/10812297935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297936", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2358297, + -25.4568784 + ] + }, + "id": "node/10812297936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297937", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2340638, + -25.4526037 + ] + }, + "id": "node/10812297937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297939", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2350967, + -25.4498234 + ] + }, + "id": "node/10812297939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297941", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2329107, + -25.4483015 + ] + }, + "id": "node/10812297941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297942", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2321813, + -25.4505276 + ] + }, + "id": "node/10812297942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297943", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.231429, + -25.4506309 + ] + }, + "id": "node/10812297943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297944", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2310579, + -25.4513766 + ] + }, + "id": "node/10812297944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10812297945", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "9", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2328626, + -25.4521467 + ] + }, + "id": "node/10812297945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822856683", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2389388, + -25.4444517 + ] + }, + "id": "node/10822856683" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822856684", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2387384, + -25.4447119 + ] + }, + "id": "node/10822856684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822856685", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2384969, + -25.4463411 + ] + }, + "id": "node/10822856685" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822856686", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2379157, + -25.4478638 + ] + }, + "id": "node/10822856686" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822856690", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2395175, + -25.45065 + ] + }, + "id": "node/10822856690" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822856691", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2396587, + -25.4508953 + ] + }, + "id": "node/10822856691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10836127628", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.045372, + -22.9403 + ] + }, + "id": "node/10836127628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10836192817", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6311829, + -26.9997339 + ] + }, + "id": "node/10836192817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10836192844", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6335182, + -27.0010347 + ] + }, + "id": "node/10836192844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10858290867", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2646797, + -25.4378372 + ] + }, + "id": "node/10858290867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10868033245", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "operator": "Giassi Supermercados", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.023643, + -28.4895176 + ] + }, + "id": "node/10868033245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10881807580", + "access": "yes", + "amenity": "bicycle_parking", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0326821, + -10.9059205 + ] + }, + "id": "node/10881807580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10884345687", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6461255, + -23.5610902 + ] + }, + "id": "node/10884345687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10892455793", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "bike_ride": "no", + "covered": "no", + "fee": "no", + "indoor": "no", + "level": "0", + "lit": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9861379, + -16.0028307 + ] + }, + "id": "node/10892455793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10912960749", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0616349, + -26.9272815 + ] + }, + "id": "node/10912960749" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919485596", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8 vagas", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.026595, + -22.9525582 + ] + }, + "id": "node/10919485596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919487512", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.024886, + -22.9505009 + ] + }, + "id": "node/10919487512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10920255472", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0909478, + -26.9037292 + ] + }, + "id": "node/10920255472" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10929814171", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator:type": "public", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9628402, + -29.4676262 + ] + }, + "id": "node/10929814171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10939793304", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2209473, + -22.9046238 + ] + }, + "id": "node/10939793304" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10939823807", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2228569, + -22.9082336 + ] + }, + "id": "node/10939823807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10942531167", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "7", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8969266, + -23.4785687 + ] + }, + "id": "node/10942531167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10946630022", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7128604, + -23.5604244 + ] + }, + "id": "node/10946630022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10957060855", + "access": "customers", + "amenity": "bicycle_parking", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4029465, + -12.9624516 + ] + }, + "id": "node/10957060855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10958547246", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7042618, + -24.743011 + ] + }, + "id": "node/10958547246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10970000643", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6379151, + -23.5033704 + ] + }, + "id": "node/10970000643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10970003827", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.649186, + -23.5077504 + ] + }, + "id": "node/10970003827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10983231436", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6907144, + -23.5468183 + ] + }, + "id": "node/10983231436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10985370809", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6583997, + -23.5627925 + ] + }, + "id": "node/10985370809" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10992432033", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.236005, + -22.9215938 + ] + }, + "id": "node/10992432033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10997663935", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "108", + "covered": "yes", + "operator": "CCR Metrô Bahia", + "surveillance": "indoor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4628558, + -12.9161197 + ] + }, + "id": "node/10997663935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11010623223", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "rack", + "covered": "yes", + "fee": "no", + "supervised": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6450661, + -23.4823925 + ] + }, + "id": "node/11010623223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11012030669", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "McDonald's" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3126836, + -22.8247669 + ] + }, + "id": "node/11012030669" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11012625188", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7309559, + -23.5531596 + ] + }, + "id": "node/11012625188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11028315763", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4597507, + -12.994242 + ] + }, + "id": "node/11028315763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11032348897", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3705004, + -23.9685108 + ] + }, + "id": "node/11032348897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11040015280", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7310115, + -23.5526114 + ] + }, + "id": "node/11040015280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11040349768", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9037822, + -8.0365287 + ] + }, + "id": "node/11040349768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11049630288", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6791734, + -27.6625759 + ] + }, + "id": "node/11049630288" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11056845840", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2495024, + -25.4771438 + ] + }, + "id": "node/11056845840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11067698008", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.6453379, + -27.2165604 + ] + }, + "id": "node/11067698008" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11067979816", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.801633, + -22.9037636 + ] + }, + "id": "node/11067979816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11068016232", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8356625, + -22.9083811 + ] + }, + "id": "node/11068016232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11068027513", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8230452, + -22.9072688 + ] + }, + "id": "node/11068027513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11069717719", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.130666, + -22.899633 + ] + }, + "id": "node/11069717719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11069732293", + "amenity": "bicycle_parking", + "bicycle_parking": "pórtico", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1047491, + -22.898607 + ] + }, + "id": "node/11069732293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11069737774", + "amenity": "bicycle_parking", + "bicycle_parking": "v", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1171499, + -22.8942633 + ] + }, + "id": "node/11069737774" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11069796409", + "amenity": "bicycle_parking", + "bicycle_parking": "pórtico", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.121433, + -22.885136 + ] + }, + "id": "node/11069796409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11070314734", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1609994, + -22.8838437 + ] + }, + "id": "node/11070314734" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11070323366", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1778253, + -22.8795891 + ] + }, + "id": "node/11070323366" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11070328682", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.174297, + -22.8803606 + ] + }, + "id": "node/11070328682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071311242", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0714538, + -26.9430009 + ] + }, + "id": "node/11071311242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071328385", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "operator": "Museu Janete Costa" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1278244, + -22.9035965 + ] + }, + "id": "node/11071328385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071328386", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1180053, + -22.9043284 + ] + }, + "id": "node/11071328386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071338375", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.084644, + -22.9145582 + ] + }, + "id": "node/11071338375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071338376", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0948542, + -22.9166106 + ] + }, + "id": "node/11071338376" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071398165", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1186378, + -22.9274599 + ] + }, + "id": "node/11071398165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071398166", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0735616, + -22.9561468 + ] + }, + "id": "node/11071398166" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071398167", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0627145, + -22.9598999 + ] + }, + "id": "node/11071398167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071398168", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1173367, + -22.8935215 + ] + }, + "id": "node/11071398168" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071411649", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1213966, + -22.8944712 + ] + }, + "id": "node/11071411649" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071411650", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1207577, + -22.8873722 + ] + }, + "id": "node/11071411650" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071411651", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1265094, + -22.9034268 + ] + }, + "id": "node/11071411651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071411652", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "fee": "no", + "operator": "Museu de Arte Contemporânea de Niterói" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1259205, + -22.9072761 + ] + }, + "id": "node/11071411652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071419380", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1127361, + -22.8950223 + ] + }, + "id": "node/11071419380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071419381", + "amenity": "bicycle_parking", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.096124, + -22.9148089 + ] + }, + "id": "node/11071419381" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071438441", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Horto do Fonseca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0907455, + -22.8814383 + ] + }, + "id": "node/11071438441" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071438519", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0940891, + -22.9191277 + ] + }, + "id": "node/11071438519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071438520", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1227806, + -22.8935643 + ] + }, + "id": "node/11071438520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071438521", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1226706, + -22.8935678 + ] + }, + "id": "node/11071438521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071438526", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1216547, + -22.8935895 + ] + }, + "id": "node/11071438526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071438527", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1204507, + -22.8935956 + ] + }, + "id": "node/11071438527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071446793", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Universidade Federal Fluminense" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1165058, + -22.9031467 + ] + }, + "id": "node/11071446793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071446794", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Universidade Federal Fluminense" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1326506, + -22.9057113 + ] + }, + "id": "node/11071446794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071446795", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Universidade Federal Fluminense" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1321651, + -22.8994004 + ] + }, + "id": "node/11071446795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071446796", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Universidade Federal Fluminense" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1354749, + -22.900584 + ] + }, + "id": "node/11071446796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071463691", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1210511, + -22.8936062 + ] + }, + "id": "node/11071463691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071481694", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1208165, + -22.893612 + ] + }, + "id": "node/11071481694" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071481695", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1204451, + -22.8936229 + ] + }, + "id": "node/11071481695" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071481696", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1203065, + -22.8936239 + ] + }, + "id": "node/11071481696" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071486987", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1198852, + -22.8936454 + ] + }, + "id": "node/11071486987" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071487079", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0787094, + -22.880711 + ] + }, + "id": "node/11071487079" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071487080", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.989016, + -22.8911669 + ] + }, + "id": "node/11071487080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071568931", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1212326, + -22.8930849 + ] + }, + "id": "node/11071568931" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071568932", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1208971, + -22.8942438 + ] + }, + "id": "node/11071568932" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071568933", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0090033, + -22.9350225 + ] + }, + "id": "node/11071568933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071568934", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1237779, + -22.8951436 + ] + }, + "id": "node/11071568934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071568935", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Museu do Ingá" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1254596, + -22.9035687 + ] + }, + "id": "node/11071568935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071598676", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0930906, + -22.8808878 + ] + }, + "id": "node/11071598676" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071598677", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0948046, + -22.9240299 + ] + }, + "id": "node/11071598677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071599456", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1233604, + -22.8961544 + ] + }, + "id": "node/11071599456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071599457", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0951321, + -22.8700175 + ] + }, + "id": "node/11071599457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071599458", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1067082, + -22.9037885 + ] + }, + "id": "node/11071599458" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071599459", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1064883, + -22.903581 + ] + }, + "id": "node/11071599459" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071599460", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0566999, + -22.9420286 + ] + }, + "id": "node/11071599460" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071599461", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0537158, + -22.9060073 + ] + }, + "id": "node/11071599461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071599462", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0555093, + -22.90633 + ] + }, + "id": "node/11071599462" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071606318", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1045598, + -22.8689664 + ] + }, + "id": "node/11071606318" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071606319", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1143587, + -22.8732292 + ] + }, + "id": "node/11071606319" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071606320", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1149023, + -22.8733678 + ] + }, + "id": "node/11071606320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071606321", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.115662, + -22.87429 + ] + }, + "id": "node/11071606321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071606322", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1223803, + -22.8955039 + ] + }, + "id": "node/11071606322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071615810", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1212566, + -22.8960599 + ] + }, + "id": "node/11071615810" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071615811", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1184777, + -22.8922966 + ] + }, + "id": "node/11071615811" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071615812", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1090472, + -22.8833508 + ] + }, + "id": "node/11071615812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071615813", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.111791, + -22.9058665 + ] + }, + "id": "node/11071615813" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071643220", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1106579, + -22.9092565 + ] + }, + "id": "node/11071643220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071643221", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0845447, + -22.9172449 + ] + }, + "id": "node/11071643221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071643222", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1166056, + -22.931505 + ] + }, + "id": "node/11071643222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071643224", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Complexo Esportivo do Barreto" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1019285, + -22.8589323 + ] + }, + "id": "node/11071643224" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071667919", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1354608, + -22.9039431 + ] + }, + "id": "node/11071667919" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071690957", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0889286, + -22.9538967 + ] + }, + "id": "node/11071690957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071690958", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0642221, + -22.9290784 + ] + }, + "id": "node/11071690958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071710879", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1167606, + -22.8942608 + ] + }, + "id": "node/11071710879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071711141", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0956714, + -22.9152947 + ] + }, + "id": "node/11071711141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071711142", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0948683, + -22.9211818 + ] + }, + "id": "node/11071711142" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071711143", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0946157, + -22.9158286 + ] + }, + "id": "node/11071711143" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071731032", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1085324, + -22.9116772 + ] + }, + "id": "node/11071731032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11071731033", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "40", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0580081, + -22.9509276 + ] + }, + "id": "node/11071731033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073417701", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "80", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0988497, + -22.932352 + ] + }, + "id": "node/11073417701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073417702", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0577733, + -22.9524833 + ] + }, + "id": "node/11073417702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073417703", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0511863, + -22.962521 + ] + }, + "id": "node/11073417703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073417704", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0725108, + -22.9560084 + ] + }, + "id": "node/11073417704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073426220", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0798702, + -22.9549709 + ] + }, + "id": "node/11073426220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073426221", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0970308, + -22.9540238 + ] + }, + "id": "node/11073426221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073426222", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0309971, + -22.9633463 + ] + }, + "id": "node/11073426222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073426223", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0443584, + -22.9703267 + ] + }, + "id": "node/11073426223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073426224", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0968519, + -22.9535593 + ] + }, + "id": "node/11073426224" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073426225", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.045162, + -22.9706047 + ] + }, + "id": "node/11073426225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073426226", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0953319, + -22.9254807 + ] + }, + "id": "node/11073426226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073463182", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1149681, + -22.9025405 + ] + }, + "id": "node/11073463182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073463183", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1143516, + -22.9022664 + ] + }, + "id": "node/11073463183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073463184", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1129351, + -22.9009627 + ] + }, + "id": "node/11073463184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073463185", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1127906, + -22.9007391 + ] + }, + "id": "node/11073463185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073505418", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1113733, + -22.9026172 + ] + }, + "id": "node/11073505418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073505419", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1130513, + -22.9046889 + ] + }, + "id": "node/11073505419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073505420", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1105812, + -22.9021558 + ] + }, + "id": "node/11073505420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073505421", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1110915, + -22.9028506 + ] + }, + "id": "node/11073505421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073505422", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1133897, + -22.9064314 + ] + }, + "id": "node/11073505422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073506035", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1137577, + -22.9023518 + ] + }, + "id": "node/11073506035" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073506036", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1102109, + -22.9000776 + ] + }, + "id": "node/11073506036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073506037", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1131064, + -22.9029923 + ] + }, + "id": "node/11073506037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073506038", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1120046, + -22.9019146 + ] + }, + "id": "node/11073506038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073506039", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1111469, + -22.9011387 + ] + }, + "id": "node/11073506039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073506040", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.114307, + -22.9055299 + ] + }, + "id": "node/11073506040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073513487", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1092665, + -22.9043968 + ] + }, + "id": "node/11073513487" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073513488", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1066785, + -22.9029986 + ] + }, + "id": "node/11073513488" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073520900", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1086941, + -22.9022109 + ] + }, + "id": "node/11073520900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073520901", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1098007, + -22.9040413 + ] + }, + "id": "node/11073520901" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073520902", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1102748, + -22.9053493 + ] + }, + "id": "node/11073520902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073520903", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1061423, + -22.9013962 + ] + }, + "id": "node/11073520903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073520904", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1039489, + -22.8995277 + ] + }, + "id": "node/11073520904" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073549073", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1121453, + -22.9076751 + ] + }, + "id": "node/11073549073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073549074", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.111511, + -22.9082244 + ] + }, + "id": "node/11073549074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073553704", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1044959, + -22.9008379 + ] + }, + "id": "node/11073553704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073555005", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.107646, + -22.9039326 + ] + }, + "id": "node/11073555005" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073634699", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1036587, + -22.9044019 + ] + }, + "id": "node/11073634699" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073634700", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1083051, + -22.9092125 + ] + }, + "id": "node/11073634700" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073634701", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1034441, + -22.9045806 + ] + }, + "id": "node/11073634701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073634702", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1042215, + -22.9055534 + ] + }, + "id": "node/11073634702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073634703", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1018767, + -22.9035544 + ] + }, + "id": "node/11073634703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073634704", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1017262, + -22.9034455 + ] + }, + "id": "node/11073634704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666215", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1098766, + -22.9065456 + ] + }, + "id": "node/11073666215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666216", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1046546, + -22.9021442 + ] + }, + "id": "node/11073666216" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666217", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1082105, + -22.9055602 + ] + }, + "id": "node/11073666217" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666218", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1073005, + -22.9054379 + ] + }, + "id": "node/11073666218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666219", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1096264, + -22.9079966 + ] + }, + "id": "node/11073666219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666220", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1066805, + -22.9052442 + ] + }, + "id": "node/11073666220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666221", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1055214, + -22.9043196 + ] + }, + "id": "node/11073666221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666222", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1031736, + -22.9018723 + ] + }, + "id": "node/11073666222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073666223", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1024773, + -22.9012258 + ] + }, + "id": "node/11073666223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073679429", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.104619, + -22.9035263 + ] + }, + "id": "node/11073679429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073679430", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1050116, + -22.9047565 + ] + }, + "id": "node/11073679430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073679431", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1063979, + -22.906528 + ] + }, + "id": "node/11073679431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073679432", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1050607, + -22.9050071 + ] + }, + "id": "node/11073679432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073679433", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1017475, + -22.9020636 + ] + }, + "id": "node/11073679433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073695505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1098014, + -22.9108436 + ] + }, + "id": "node/11073695505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073695506", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1079991, + -22.9093247 + ] + }, + "id": "node/11073695506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073695507", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1067458, + -22.9082209 + ] + }, + "id": "node/11073695507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073695508", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1058094, + -22.9075975 + ] + }, + "id": "node/11073695508" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073703887", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1092733, + -22.8813559 + ] + }, + "id": "node/11073703887" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073703888", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1254561, + -22.9025366 + ] + }, + "id": "node/11073703888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073703889", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1224036, + -22.9038282 + ] + }, + "id": "node/11073703889" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073703891", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1145436, + -22.9032444 + ] + }, + "id": "node/11073703891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073711815", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1040688, + -22.9057117 + ] + }, + "id": "node/11073711815" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073711816", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1032644, + -22.9066758 + ] + }, + "id": "node/11073711816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073711817", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1014144, + -22.9051201 + ] + }, + "id": "node/11073711817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073711818", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.099421, + -22.9034386 + ] + }, + "id": "node/11073711818" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073711819", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1038015, + -22.9080413 + ] + }, + "id": "node/11073711819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073711820", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1066822, + -22.9107889 + ] + }, + "id": "node/11073711820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073711821", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1061536, + -22.9112648 + ] + }, + "id": "node/11073711821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073784378", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "50", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7174779, + -23.5614607 + ] + }, + "id": "node/11073784378" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073873595", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1023805, + -22.9013219 + ] + }, + "id": "node/11073873595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073873596", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1121433, + -22.9056067 + ] + }, + "id": "node/11073873596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073873597", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1085125, + -22.899408 + ] + }, + "id": "node/11073873597" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073873598", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1198083, + -22.8930327 + ] + }, + "id": "node/11073873598" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073873599", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.093825, + -22.9204423 + ] + }, + "id": "node/11073873599" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073874971", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0964718, + -22.8626546 + ] + }, + "id": "node/11073874971" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073874972", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1237126, + -22.8944385 + ] + }, + "id": "node/11073874972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073874973", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0835424, + -22.9152847 + ] + }, + "id": "node/11073874973" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073895884", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1227525, + -22.9043223 + ] + }, + "id": "node/11073895884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073895885", + "amenity": "bicycle_parking", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1294985, + -22.9042688 + ] + }, + "id": "node/11073895885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073901679", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.123034, + -22.8883393 + ] + }, + "id": "node/11073901679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073901682", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1238186, + -22.8873653 + ] + }, + "id": "node/11073901682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073944026", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1115346, + -22.9043329 + ] + }, + "id": "node/11073944026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11073944027", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1201092, + -22.8943031 + ] + }, + "id": "node/11073944027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11079490763", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2514576, + -25.4421027 + ] + }, + "id": "node/11079490763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052366", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.093932, + -22.9196624 + ] + }, + "id": "node/11081052366" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052367", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0941906, + -22.9183228 + ] + }, + "id": "node/11081052367" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052368", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1023395, + -22.9044368 + ] + }, + "id": "node/11081052368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052369", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1199816, + -22.8911687 + ] + }, + "id": "node/11081052369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052370", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0969444, + -22.8980059 + ] + }, + "id": "node/11081052370" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052371", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1194041, + -22.8949436 + ] + }, + "id": "node/11081052371" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052372", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1059352, + -22.9023535 + ] + }, + "id": "node/11081052372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052373", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.114976, + -22.9045941 + ] + }, + "id": "node/11081052373" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081052374", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1102251, + -22.9082467 + ] + }, + "id": "node/11081052374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097761", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0980214, + -22.9315467 + ] + }, + "id": "node/11081097761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097762", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1019432, + -22.9059239 + ] + }, + "id": "node/11081097762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097763", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1209946, + -22.8860104 + ] + }, + "id": "node/11081097763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097764", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1216602, + -22.8941938 + ] + }, + "id": "node/11081097764" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097765", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1028512, + -22.9015846 + ] + }, + "id": "node/11081097765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097766", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1195796, + -22.8862398 + ] + }, + "id": "node/11081097766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097767", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1041427, + -22.9087724 + ] + }, + "id": "node/11081097767" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097768", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1089618, + -22.9056445 + ] + }, + "id": "node/11081097768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081097769", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1261715, + -22.8964914 + ] + }, + "id": "node/11081097769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081136931", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.077239, + -22.9339196 + ] + }, + "id": "node/11081136931" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081136933", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0621414, + -22.9369768 + ] + }, + "id": "node/11081136933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081136934", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0534601, + -22.9411405 + ] + }, + "id": "node/11081136934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081146702", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1147196, + -22.8926958 + ] + }, + "id": "node/11081146702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081148324", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0354106, + -22.9443742 + ] + }, + "id": "node/11081148324" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081148325", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0319931, + -22.9468298 + ] + }, + "id": "node/11081148325" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081148326", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0296891, + -22.9495554 + ] + }, + "id": "node/11081148326" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081180719", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1222407, + -22.8939516 + ] + }, + "id": "node/11081180719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081197671", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0410512, + -22.9413378 + ] + }, + "id": "node/11081197671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081214203", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1234193, + -22.8933891 + ] + }, + "id": "node/11081214203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081214204", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1230196, + -22.8934038 + ] + }, + "id": "node/11081214204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081230361", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1195261, + -22.8934641 + ] + }, + "id": "node/11081230361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081230362", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1194477, + -22.8934623 + ] + }, + "id": "node/11081230362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081230363", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1191892, + -22.8934755 + ] + }, + "id": "node/11081230363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081230364", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1190327, + -22.8934886 + ] + }, + "id": "node/11081230364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081230365", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1184523, + -22.8935167 + ] + }, + "id": "node/11081230365" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081246505", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1220381, + -22.8934369 + ] + }, + "id": "node/11081246505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081246506", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1214316, + -22.8934393 + ] + }, + "id": "node/11081246506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081246507", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1210854, + -22.8934726 + ] + }, + "id": "node/11081246507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081246508", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1205301, + -22.8934845 + ] + }, + "id": "node/11081246508" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081246509", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1198676, + -22.8934985 + ] + }, + "id": "node/11081246509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081331907", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1192593, + -22.8854419 + ] + }, + "id": "node/11081331907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081331908", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1239474, + -22.885321 + ] + }, + "id": "node/11081331908" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081331909", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1141049, + -22.9053025 + ] + }, + "id": "node/11081331909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081331910", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.114517, + -22.9032724 + ] + }, + "id": "node/11081331910" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081331911", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1150039, + -22.9025724 + ] + }, + "id": "node/11081331911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081331912", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1101445, + -22.9096264 + ] + }, + "id": "node/11081331912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081331913", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1113699, + -22.9027514 + ] + }, + "id": "node/11081331913" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343677", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1124769, + -22.878408 + ] + }, + "id": "node/11081343677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343678", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1161141, + -22.8726907 + ] + }, + "id": "node/11081343678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343679", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1068967, + -22.8747584 + ] + }, + "id": "node/11081343679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343680", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1046614, + -22.8715618 + ] + }, + "id": "node/11081343680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343681", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0955095, + -22.870162 + ] + }, + "id": "node/11081343681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343682", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1027403, + -22.8805665 + ] + }, + "id": "node/11081343682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343683", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0966249, + -22.8807862 + ] + }, + "id": "node/11081343683" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343684", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0962899, + -22.8811252 + ] + }, + "id": "node/11081343684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343685", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0888517, + -22.8814032 + ] + }, + "id": "node/11081343685" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343686", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0872664, + -22.8814365 + ] + }, + "id": "node/11081343686" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343687", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0829402, + -22.8816279 + ] + }, + "id": "node/11081343687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081343688", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0845464, + -22.881518 + ] + }, + "id": "node/11081343688" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081346842", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1082932, + -22.9095795 + ] + }, + "id": "node/11081346842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081346843", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1112528, + -22.9045119 + ] + }, + "id": "node/11081346843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081346844", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1119162, + -22.9075013 + ] + }, + "id": "node/11081346844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081346845", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1050775, + -22.9022756 + ] + }, + "id": "node/11081346845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081346846", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1033625, + -22.9107568 + ] + }, + "id": "node/11081346846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081351920", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1006881, + -22.9010577 + ] + }, + "id": "node/11081351920" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081351921", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0993556, + -22.9018024 + ] + }, + "id": "node/11081351921" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081351922", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0986941, + -22.9024525 + ] + }, + "id": "node/11081351922" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081351923", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0918985, + -22.9203031 + ] + }, + "id": "node/11081351923" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081351924", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0926008, + -22.9204391 + ] + }, + "id": "node/11081351924" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081351925", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0947311, + -22.9234927 + ] + }, + "id": "node/11081351925" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081369469", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9935071, + -22.8879168 + ] + }, + "id": "node/11081369469" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081369470", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9851295, + -22.9094513 + ] + }, + "id": "node/11081369470" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081376681", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9879004, + -22.891833 + ] + }, + "id": "node/11081376681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081376682", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9889565, + -22.8912249 + ] + }, + "id": "node/11081376682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081390212", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0573232, + -22.9068886 + ] + }, + "id": "node/11081390212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081390213", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0539677, + -22.8928704 + ] + }, + "id": "node/11081390213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081390214", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0559335, + -22.9066856 + ] + }, + "id": "node/11081390214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081390215", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0404128, + -22.8985821 + ] + }, + "id": "node/11081390215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484079", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0975373, + -22.9528337 + ] + }, + "id": "node/11081484079" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484080", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0937236, + -22.9534633 + ] + }, + "id": "node/11081484080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484081", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0892276, + -22.9538804 + ] + }, + "id": "node/11081484081" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484082", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0817143, + -22.954769 + ] + }, + "id": "node/11081484082" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484083", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0775534, + -22.9553256 + ] + }, + "id": "node/11081484083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484084", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1147932, + -22.9327343 + ] + }, + "id": "node/11081484084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484085", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0454434, + -22.9708986 + ] + }, + "id": "node/11081484085" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484086", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1130853, + -22.9347395 + ] + }, + "id": "node/11081484086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484087", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1170217, + -22.9312242 + ] + }, + "id": "node/11081484087" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484088", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1164716, + -22.9317248 + ] + }, + "id": "node/11081484088" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081484089", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1176541, + -22.9297191 + ] + }, + "id": "node/11081484089" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081524338", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1001479, + -22.9336427 + ] + }, + "id": "node/11081524338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081524339", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1061235, + -22.8987297 + ] + }, + "id": "node/11081524339" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081524340", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1013704, + -22.9082237 + ] + }, + "id": "node/11081524340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081524341", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1056287, + -22.9044414 + ] + }, + "id": "node/11081524341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081542456", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1027725, + -22.9026841 + ] + }, + "id": "node/11081542456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081542457", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.103234, + -22.9020907 + ] + }, + "id": "node/11081542457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081542458", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1176126, + -22.9040078 + ] + }, + "id": "node/11081542458" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081542459", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1048878, + -22.9070488 + ] + }, + "id": "node/11081542459" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081542460", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1112982, + -22.8997971 + ] + }, + "id": "node/11081542460" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081542461", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1185915, + -22.8936903 + ] + }, + "id": "node/11081542461" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081591807", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1242054, + -22.8886874 + ] + }, + "id": "node/11081591807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081591808", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1174219, + -22.8927196 + ] + }, + "id": "node/11081591808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081591809", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "22", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1354607, + -22.9005117 + ] + }, + "id": "node/11081591809" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081601211", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1225603, + -22.8898397 + ] + }, + "id": "node/11081601211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081601212", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1252039, + -22.8855307 + ] + }, + "id": "node/11081601212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081601213", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1178717, + -22.8734138 + ] + }, + "id": "node/11081601213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081601214", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.108838, + -22.8773527 + ] + }, + "id": "node/11081601214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081614739", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0686957, + -22.9585248 + ] + }, + "id": "node/11081614739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081614740", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no", + "operator": "E.M. Aberto Torres" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1167007, + -22.8952866 + ] + }, + "id": "node/11081614740" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081614741", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no", + "operator": "E.M. Maestro H. Villa Lobos" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.115655, + -22.8731426 + ] + }, + "id": "node/11081614741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081614742", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no", + "operator": "8", + "operator:type": "e.m._antineia_silveira_miranda" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0653911, + -22.8825552 + ] + }, + "id": "node/11081614742" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11081641247", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no", + "operator": "E.M. Paulo Freire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0825403, + -22.8828246 + ] + }, + "id": "node/11081641247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11082170755", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2763626, + -25.4405875 + ] + }, + "id": "node/11082170755" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083699351", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1298264, + -22.9082991 + ] + }, + "id": "node/11083699351" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705829", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no", + "operator": "E.M. Honorina de Carvalho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0266338, + -22.8824309 + ] + }, + "id": "node/11083705829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705830", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "operator": "E.M. Levi Carneiro" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0583343, + -22.8963654 + ] + }, + "id": "node/11083705830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705831", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no", + "operator": "Escola Municipal João Brazil" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0694574, + -22.8685589 + ] + }, + "id": "node/11083705831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705832", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no", + "operator": "E.M. Julia Cortines" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1082952, + -22.9037773 + ] + }, + "id": "node/11083705832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705833", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no", + "operator": "E.M. Santos Dumont" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1094483, + -22.8953571 + ] + }, + "id": "node/11083705833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705834", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1235596, + -22.8873633 + ] + }, + "id": "node/11083705834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705835", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0875209, + -22.9294845 + ] + }, + "id": "node/11083705835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083705836", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "fee": "no", + "operator": "Caminho Niemayer" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1282238, + -22.8903693 + ] + }, + "id": "node/11083705836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083742280", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1170703, + -22.9314271 + ] + }, + "id": "node/11083742280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083742281", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0877051, + -22.9166439 + ] + }, + "id": "node/11083742281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083752905", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1098656, + -22.907576 + ] + }, + "id": "node/11083752905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753316", + "amenity": "bicycle_parking", + "bicycle_parking": "transoceânica", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0662579, + -22.9329828 + ] + }, + "id": "node/11083753316" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753317", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0526455, + -22.9625388 + ] + }, + "id": "node/11083753317" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753318", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0650977, + -22.9593515 + ] + }, + "id": "node/11083753318" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753319", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0578565, + -22.960998 + ] + }, + "id": "node/11083753319" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753320", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0536746, + -22.9620789 + ] + }, + "id": "node/11083753320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753898", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0565049, + -22.9545996 + ] + }, + "id": "node/11083753898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753899", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.015798, + -22.9433669 + ] + }, + "id": "node/11083753899" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753900", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0980024, + -22.9490153 + ] + }, + "id": "node/11083753900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753901", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0966274, + -22.9478186 + ] + }, + "id": "node/11083753901" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753902", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0243222, + -22.9433063 + ] + }, + "id": "node/11083753902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753903", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0551268, + -22.9453167 + ] + }, + "id": "node/11083753903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083753904", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0580652, + -22.9411561 + ] + }, + "id": "node/11083753904" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782946", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0619945, + -22.9368876 + ] + }, + "id": "node/11083782946" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782947", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0653787, + -22.9376964 + ] + }, + "id": "node/11083782947" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782948", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0699579, + -22.9373422 + ] + }, + "id": "node/11083782948" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782949", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0030255, + -22.9274234 + ] + }, + "id": "node/11083782949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782950", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0966881, + -22.9538796 + ] + }, + "id": "node/11083782950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782951", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0851061, + -22.954432 + ] + }, + "id": "node/11083782951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782952", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0751545, + -22.9558187 + ] + }, + "id": "node/11083782952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782953", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0748831, + -22.9558632 + ] + }, + "id": "node/11083782953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083782954", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.073938, + -22.9558152 + ] + }, + "id": "node/11083782954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785255", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0952107, + -22.9535047 + ] + }, + "id": "node/11083785255" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785256", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0590609, + -22.9527316 + ] + }, + "id": "node/11083785256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785257", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0581473, + -22.9519085 + ] + }, + "id": "node/11083785257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785258", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0319055, + -22.9461438 + ] + }, + "id": "node/11083785258" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785259", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.027413, + -22.939526 + ] + }, + "id": "node/11083785259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785260", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.027527, + -22.9393161 + ] + }, + "id": "node/11083785260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785261", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0261693, + -22.937668 + ] + }, + "id": "node/11083785261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785262", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0294242, + -22.9425208 + ] + }, + "id": "node/11083785262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785263", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0286132, + -22.9412971 + ] + }, + "id": "node/11083785263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785264", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0255782, + -22.9368775 + ] + }, + "id": "node/11083785264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083785265", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0127067, + -22.927791 + ] + }, + "id": "node/11083785265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083797259", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1183068, + -22.8937985 + ] + }, + "id": "node/11083797259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083797260", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1029693, + -22.8615817 + ] + }, + "id": "node/11083797260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083797261", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.111829, + -22.9003297 + ] + }, + "id": "node/11083797261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083797262", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1118979, + -22.9002264 + ] + }, + "id": "node/11083797262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083797263", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1118757, + -22.9002781 + ] + }, + "id": "node/11083797263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083797264", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.111836, + -22.9001759 + ] + }, + "id": "node/11083797264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083810451", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1121423, + -22.9001557 + ] + }, + "id": "node/11083810451" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11083810452", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1120086, + -22.8999866 + ] + }, + "id": "node/11083810452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11084081096", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1092706, + -22.9123905 + ] + }, + "id": "node/11084081096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11084081097", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1155635, + -22.9045844 + ] + }, + "id": "node/11084081097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11084081098", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "18", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0579378, + -22.9537705 + ] + }, + "id": "node/11084081098" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085816515", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1221123, + -22.903476 + ] + }, + "id": "node/11085816515" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085816516", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1082476, + -22.9041375 + ] + }, + "id": "node/11085816516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085816517", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1075516, + -22.9030727 + ] + }, + "id": "node/11085816517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085882253", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1122721, + -22.9054514 + ] + }, + "id": "node/11085882253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085892587", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9890469, + -22.8911791 + ] + }, + "id": "node/11085892587" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085912611", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1012119, + -22.898656 + ] + }, + "id": "node/11085912611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085930427", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1213198, + -22.8853633 + ] + }, + "id": "node/11085930427" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085946933", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1212288, + -22.8931167 + ] + }, + "id": "node/11085946933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11085951405", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1101422, + -22.9083228 + ] + }, + "id": "node/11085951405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11086032459", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0665894, + -22.9329621 + ] + }, + "id": "node/11086032459" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11086035513", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1002362, + -22.9337189 + ] + }, + "id": "node/11086035513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11086038798", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0326217, + -22.9469405 + ] + }, + "id": "node/11086038798" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11086074837", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1002826, + -22.9341368 + ] + }, + "id": "node/11086074837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11086074838", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1001667, + -22.9340228 + ] + }, + "id": "node/11086074838" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11086074839", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1004594, + -22.9341478 + ] + }, + "id": "node/11086074839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11086446982", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1197625, + -22.9260836 + ] + }, + "id": "node/11086446982" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11095254609", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2721225, + -25.4349429 + ] + }, + "id": "node/11095254609" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11097918292", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0277611, + -22.9530808 + ] + }, + "id": "node/11097918292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11100322791", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2729283, + -25.4324952 + ] + }, + "id": "node/11100322791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11102384273", + "access": "yes", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5298749, + -27.6160133 + ] + }, + "id": "node/11102384273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11104656103", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "lit": "yes", + "opening_hours": "24/7", + "operator": "Café República Cup", + "operator:type": "private", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2231735, + -30.0384512 + ] + }, + "id": "node/11104656103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11107951118", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2714854, + -25.4439982 + ] + }, + "id": "node/11107951118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11108054959", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2756315, + -25.4465359 + ] + }, + "id": "node/11108054959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11108054960", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2758908, + -25.4466389 + ] + }, + "id": "node/11108054960" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11108337281", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.686173, + -23.565227 + ] + }, + "id": "node/11108337281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11113860855", + "amenity": "bicycle_parking", + "bicycle_parking": "shed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9442709, + -22.9680817 + ] + }, + "id": "node/11113860855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11123581236", + "access": "permit", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "bike_ride": "yes", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3597999, + -18.010033 + ] + }, + "id": "node/11123581236" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11140051092", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2337536, + -25.4516707 + ] + }, + "id": "node/11140051092" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11140153494", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2333289, + -25.4487044 + ] + }, + "id": "node/11140153494" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11141079162", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2328932, + -25.4482504 + ] + }, + "id": "node/11141079162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11141079175", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2327446, + -25.4461933 + ] + }, + "id": "node/11141079175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11141149668", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2320675, + -25.4475032 + ] + }, + "id": "node/11141149668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11141800352", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2316632, + -25.4502946 + ] + }, + "id": "node/11141800352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11146183081", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "CEFET-MG Campus Divinópolis", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.9099349, + -20.1730198 + ] + }, + "id": "node/11146183081" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156056611", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7315458, + -23.5553581 + ] + }, + "id": "node/11156056611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156056612", + "access": "permit", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.731745, + -23.554571 + ] + }, + "id": "node/11156056612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156056622", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7370121, + -23.5622525 + ] + }, + "id": "node/11156056622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156164699", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7295497, + -23.5538895 + ] + }, + "id": "node/11156164699" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156164702", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7324593, + -23.5564626 + ] + }, + "id": "node/11156164702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156164703", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7213626, + -23.5597731 + ] + }, + "id": "node/11156164703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156164704", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7160067, + -23.5628027 + ] + }, + "id": "node/11156164704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156176308", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7248949, + -23.5622397 + ] + }, + "id": "node/11156176308" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11156176310", + "access": "permit", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7266209, + -23.5671515 + ] + }, + "id": "node/11156176310" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157629047", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.720248, + -23.5575053 + ] + }, + "id": "node/11157629047" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157629048", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7255748, + -23.5587061 + ] + }, + "id": "node/11157629048" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157629056", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7280741, + -23.5574454 + ] + }, + "id": "node/11157629056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11158962478", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.694957, + -23.5610975 + ] + }, + "id": "node/11158962478" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11158962479", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "1", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6945478, + -23.5613669 + ] + }, + "id": "node/11158962479" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11159372240", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7218944, + -23.562498 + ] + }, + "id": "node/11159372240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11166898336", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7079351, + -23.5536961 + ] + }, + "id": "node/11166898336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11166898337", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7082377, + -23.5530761 + ] + }, + "id": "node/11166898337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11166898338", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.709353, + -23.5528728 + ] + }, + "id": "node/11166898338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11167417741", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7256189, + -23.5579658 + ] + }, + "id": "node/11167417741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11168360007", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "lit": "yes", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6323507, + -27.0017129 + ] + }, + "id": "node/11168360007" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11170235761", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6851593, + -23.5649922 + ] + }, + "id": "node/11170235761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11201401092", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1669779, + -26.7148129 + ] + }, + "id": "node/11201401092" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11201401093", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1669612, + -26.7147595 + ] + }, + "id": "node/11201401093" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11222521484", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6850575, + -23.5666435 + ] + }, + "id": "node/11222521484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11223231839", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5702455, + -3.7409573 + ] + }, + "id": "node/11223231839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11227599914", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.57575, + -3.7471808 + ] + }, + "id": "node/11227599914" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11230310853", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0635661, + -26.9275344 + ] + }, + "id": "node/11230310853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11234747902", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4558709, + -22.757057 + ] + }, + "id": "node/11234747902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11246916943", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1760707, + -26.7292197 + ] + }, + "id": "node/11246916943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11251948682", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.0877788, + -32.0403356 + ] + }, + "id": "node/11251948682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11254245823", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.176878, + -26.7362937 + ] + }, + "id": "node/11254245823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11254245833", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no", + "operator": "Ballet Cultura" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1749489, + -26.7484691 + ] + }, + "id": "node/11254245833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11254960858", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "6", + "covered": "no", + "operator": "Sicredi" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1769945, + -26.7359236 + ] + }, + "id": "node/11254960858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11261733463", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1640738, + -26.7110632 + ] + }, + "id": "node/11261733463" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11267309027", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7296837, + -23.5748421 + ] + }, + "id": "node/11267309027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11290009743", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1766541, + -26.7307783 + ] + }, + "id": "node/11290009743" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11290009744", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.176408, + -26.7307205 + ] + }, + "id": "node/11290009744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11301231097", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1334623, + -15.834282 + ] + }, + "id": "node/11301231097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11304960469", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5741898, + -3.7466136 + ] + }, + "id": "node/11304960469" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11304961869", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5735128, + -3.7462979 + ] + }, + "id": "node/11304961869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11305184919", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7270978, + -23.5597713 + ] + }, + "id": "node/11305184919" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11307630518", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2374165, + -25.4547323 + ] + }, + "id": "node/11307630518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11310891704", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1626254, + -26.70658 + ] + }, + "id": "node/11310891704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11310891720", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1636581, + -26.7066372 + ] + }, + "id": "node/11310891720" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11324771651", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4331879, + -12.9832934 + ] + }, + "id": "node/11324771651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11335811067", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2358007, + -25.4569206 + ] + }, + "id": "node/11335811067" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11335811068", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2361017, + -25.4565243 + ] + }, + "id": "node/11335811068" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11335877782", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2367811, + -25.4573089 + ] + }, + "id": "node/11335877782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11339190488", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4952004, + -3.8051037 + ] + }, + "id": "node/11339190488" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11342439527", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4904784, + -3.801405 + ] + }, + "id": "node/11342439527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11342439536", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4892613, + -3.8014565 + ] + }, + "id": "node/11342439536" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11364635943", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5056959, + -3.7314527 + ] + }, + "id": "node/11364635943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11375848424", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1721944, + -23.2818858 + ] + }, + "id": "node/11375848424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11377859358", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5306418, + -13.0034562 + ] + }, + "id": "node/11377859358" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11377894512", + "amenity": "parking", + "bicycle_parking": "yes", + "name": "JP Bicicletário e Estacionamento" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5570272, + -22.7153154 + ] + }, + "id": "node/11377894512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11384838943", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.4029012, + -23.8048129 + ] + }, + "id": "node/11384838943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11386142290", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.721556, + -23.5595649 + ] + }, + "id": "node/11386142290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11398839691", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7359599, + -23.558735 + ] + }, + "id": "node/11398839691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11398839692", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7360516, + -23.5585394 + ] + }, + "id": "node/11398839692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11403578532", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "description": "Inclui ponto de apoio para o ciclista: Bomba de ar (antes de usar é bom operar ela para expulsar o excesso de água que ela junta por ficar descoberta), totem com ferramentas para colocar e fazer manutenção na bicicleta.", + "fee": "no", + "name": "Paraciclo Vanguard Home - Central de decorados", + "operator": "Vanguard Decorações", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.5811421, + -20.4484067 + ] + }, + "id": "node/11403578532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11408804156", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1773588, + -26.7330831 + ] + }, + "id": "node/11408804156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11408804159", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1765092, + -26.7349334 + ] + }, + "id": "node/11408804159" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11409432265", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1736589, + -22.9048946 + ] + }, + "id": "node/11409432265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11409437476", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1729896, + -22.9044399 + ] + }, + "id": "node/11409437476" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11409624758", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6559154, + -23.5339487 + ] + }, + "id": "node/11409624758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11415335873", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1671121, + -26.7166757 + ] + }, + "id": "node/11415335873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11415335879", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1648497, + -26.7128327 + ] + }, + "id": "node/11415335879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11417699980", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7321194, + -23.5586158 + ] + }, + "id": "node/11417699980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11428873163", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6876801, + -23.5590092 + ] + }, + "id": "node/11428873163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11445320247", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3736805, + -12.9517854 + ] + }, + "id": "node/11445320247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11451923089", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6757464, + -14.1947714 + ] + }, + "id": "node/11451923089" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11464519622", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "operator": "Farmácia Preço Popular" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.177506, + -26.7327268 + ] + }, + "id": "node/11464519622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11479629857", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "Espaço Múltiplo Uso FIREBIKERS", + "operator:type": "government" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.56372, + -20.4576578 + ] + }, + "id": "node/11479629857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11508954663", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "yes", + "fee": "no", + "image": "https://encurtador.com.br/pJSU9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4973031, + -3.7369561 + ] + }, + "id": "node/11508954663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11516968569", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5318682, + -3.7277074 + ] + }, + "id": "node/11516968569" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11523839570", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1725583, + -26.7558164 + ] + }, + "id": "node/11523839570" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11524757877", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -32.4269177, + -3.8708649 + ] + }, + "id": "node/11524757877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11524834796", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -32.4333633, + -3.8696364 + ] + }, + "id": "node/11524834796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11527905971", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5072981, + -3.7300451 + ] + }, + "id": "node/11527905971" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11533727574", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5242895, + -3.7232301 + ] + }, + "id": "node/11533727574" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11540184949", + "amenity": "bicycle_parking", + "capacity": "5" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8319057, + -25.476916 + ] + }, + "id": "node/11540184949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543495612", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0840054, + -22.8812542 + ] + }, + "id": "node/11543495612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543495613", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1087182, + -22.8804995 + ] + }, + "id": "node/11543495613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543495614", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "30 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1323952, + -22.9011344 + ] + }, + "id": "node/11543495614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543495615", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1121562, + -22.9016661 + ] + }, + "id": "node/11543495615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543495616", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1123734, + -22.9014704 + ] + }, + "id": "node/11543495616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543495617", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1125508, + -22.9012897 + ] + }, + "id": "node/11543495617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585788", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0996665, + -22.8649201 + ] + }, + "id": "node/11543585788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585789", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0986015, + -22.8640699 + ] + }, + "id": "node/11543585789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585790", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0984805, + -22.8639922 + ] + }, + "id": "node/11543585790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585791", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0573795, + -22.9611828 + ] + }, + "id": "node/11543585791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585792", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0682822, + -22.8893536 + ] + }, + "id": "node/11543585792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585793", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1197437, + -22.8909818 + ] + }, + "id": "node/11543585793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585794", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1195818, + -22.8937763 + ] + }, + "id": "node/11543585794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585795", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1213458, + -22.8933953 + ] + }, + "id": "node/11543585795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585796", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1185894, + -22.8894608 + ] + }, + "id": "node/11543585796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585797", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1170532, + -22.8893309 + ] + }, + "id": "node/11543585797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585798", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1223699, + -22.8912973 + ] + }, + "id": "node/11543585798" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585799", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1222375, + -22.8938419 + ] + }, + "id": "node/11543585799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585800", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1197751, + -22.8922051 + ] + }, + "id": "node/11543585800" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585801", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1223003, + -22.8933419 + ] + }, + "id": "node/11543585801" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585802", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1219735, + -22.8971624 + ] + }, + "id": "node/11543585802" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585803", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0960893, + -22.9272087 + ] + }, + "id": "node/11543585803" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585804", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0962537, + -22.9281354 + ] + }, + "id": "node/11543585804" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585805", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.097535, + -22.8708528 + ] + }, + "id": "node/11543585805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585806", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0947347, + -22.8727247 + ] + }, + "id": "node/11543585806" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585807", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0785504, + -22.8811694 + ] + }, + "id": "node/11543585807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543585808", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.084254, + -22.8812646 + ] + }, + "id": "node/11543585808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621611", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0995447, + -22.9032872 + ] + }, + "id": "node/11543621611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621612", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1005178, + -22.9051422 + ] + }, + "id": "node/11543621612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621613", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1027781, + -22.9075353 + ] + }, + "id": "node/11543621613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621614", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1044059, + -22.9068117 + ] + }, + "id": "node/11543621614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621615", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1066038, + -22.9052872 + ] + }, + "id": "node/11543621615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621616", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.106822, + -22.9050518 + ] + }, + "id": "node/11543621616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621617", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1081636, + -22.9053201 + ] + }, + "id": "node/11543621617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11543621618", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1138805, + -22.9019953 + ] + }, + "id": "node/11543621618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955033", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1094296, + -22.9081711 + ] + }, + "id": "node/11546955033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955034", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1116471, + -22.8982492 + ] + }, + "id": "node/11546955034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955035", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1062198, + -22.9048772 + ] + }, + "id": "node/11546955035" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955176", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.110408, + -22.9089891 + ] + }, + "id": "node/11546955176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955177", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1118299, + -22.9021809 + ] + }, + "id": "node/11546955177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955178", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1101493, + -22.9055189 + ] + }, + "id": "node/11546955178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955179", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1034434, + -22.9020472 + ] + }, + "id": "node/11546955179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955180", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1020565, + -22.901688 + ] + }, + "id": "node/11546955180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955181", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1045802, + -22.9037146 + ] + }, + "id": "node/11546955181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955182", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1041122, + -22.9004688 + ] + }, + "id": "node/11546955182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955183", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1044206, + -22.9005651 + ] + }, + "id": "node/11546955183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955184", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.103589, + -22.8999318 + ] + }, + "id": "node/11546955184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546955185", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1045615, + -22.9006161 + ] + }, + "id": "node/11546955185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546961744", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1110035, + -22.90651 + ] + }, + "id": "node/11546961744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546961745", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1110498, + -22.906571 + ] + }, + "id": "node/11546961745" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546961746", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1105283, + -22.9070863 + ] + }, + "id": "node/11546961746" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546961747", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.10959, + -22.9078541 + ] + }, + "id": "node/11546961747" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546964449", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1092748, + -22.9029668 + ] + }, + "id": "node/11546964449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546964450", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1128399, + -22.9059514 + ] + }, + "id": "node/11546964450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546964451", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1121945, + -22.9035698 + ] + }, + "id": "node/11546964451" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546964452", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1148731, + -22.9027569 + ] + }, + "id": "node/11546964452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546964453", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1139857, + -22.9036492 + ] + }, + "id": "node/11546964453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546973345", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0579514, + -22.9501059 + ] + }, + "id": "node/11546973345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546973346", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0580448, + -22.9500564 + ] + }, + "id": "node/11546973346" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546973347", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0574293, + -22.9495254 + ] + }, + "id": "node/11546973347" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546973348", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0966453, + -22.9510079 + ] + }, + "id": "node/11546973348" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546973349", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0637769, + -22.9359546 + ] + }, + "id": "node/11546973349" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546983926", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0284159, + -22.9724434 + ] + }, + "id": "node/11546983926" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546983927", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0262496, + -22.938361 + ] + }, + "id": "node/11546983927" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546983928", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0262169, + -22.9384148 + ] + }, + "id": "node/11546983928" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546988032", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1008136, + -22.9049255 + ] + }, + "id": "node/11546988032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546988033", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1007373, + -22.9048899 + ] + }, + "id": "node/11546988033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546988034", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1249495, + -22.9036552 + ] + }, + "id": "node/11546988034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546988035", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1242093, + -22.9032427 + ] + }, + "id": "node/11546988035" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11546996395", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1056336, + -22.9071578 + ] + }, + "id": "node/11546996395" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547010116", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1197427, + -22.9261102 + ] + }, + "id": "node/11547010116" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547010117", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1231225, + -22.928452 + ] + }, + "id": "node/11547010117" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547014180", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1223598, + -22.8824009 + ] + }, + "id": "node/11547014180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547014181", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9889405, + -22.8912186 + ] + }, + "id": "node/11547014181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547014182", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9890002, + -22.8910914 + ] + }, + "id": "node/11547014182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547014183", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0486222, + -22.8765184 + ] + }, + "id": "node/11547014183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547015911", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0946518, + -22.9177244 + ] + }, + "id": "node/11547015911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547015912", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0660077, + -22.9064769 + ] + }, + "id": "node/11547015912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547015913", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0967565, + -22.905332 + ] + }, + "id": "node/11547015913" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547015914", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0975692, + -22.9055173 + ] + }, + "id": "node/11547015914" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547024130", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1000658, + -22.9013313 + ] + }, + "id": "node/11547024130" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547024131", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1019002, + -22.897327 + ] + }, + "id": "node/11547024131" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547024132", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1292626, + -22.8996895 + ] + }, + "id": "node/11547024132" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547024133", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0968455, + -22.9139009 + ] + }, + "id": "node/11547024133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547024134", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0863533, + -22.9181594 + ] + }, + "id": "node/11547024134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11547024135", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4 vagas" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0860469, + -22.9176666 + ] + }, + "id": "node/11547024135" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11551894578", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5693469, + -3.7406307 + ] + }, + "id": "node/11551894578" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11557711953", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4982478, + -3.7385262 + ] + }, + "id": "node/11557711953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11569684823", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.208848, + -22.8983141 + ] + }, + "id": "node/11569684823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11592953535", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "lit": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6770834, + -23.6386186 + ] + }, + "id": "node/11592953535" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11610506169", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7050177, + 2.8099869 + ] + }, + "id": "node/11610506169" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11657179124", + "access": "customers", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5646558, + -3.7148327 + ] + }, + "id": "node/11657179124" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11664901544", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "44", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2099792, + -22.900335 + ] + }, + "id": "node/11664901544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11684833337", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2754354, + -25.432607 + ] + }, + "id": "node/11684833337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11684833338", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2759285, + -25.4335293 + ] + }, + "id": "node/11684833338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11685978186", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5112049, + -3.7303876 + ] + }, + "id": "node/11685978186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11691892076", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0692832, + -22.8153083 + ] + }, + "id": "node/11691892076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11691892077", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0693012, + -22.8151803 + ] + }, + "id": "node/11691892077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11710138608", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.168134, + -26.8295951 + ] + }, + "id": "node/11710138608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11716632725", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5461254, + -3.7198544 + ] + }, + "id": "node/11716632725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11727915987", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6484273, + -23.550071 + ] + }, + "id": "node/11727915987" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11766486549", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "operator": "STTP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.885409, + -7.2172153 + ] + }, + "id": "node/11766486549" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11773742825", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0215964, + -10.9081997 + ] + }, + "id": "node/11773742825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11793294702", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5075149, + -3.8161077 + ] + }, + "id": "node/11793294702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11807591039", + "amenity": "bicycle_parking", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7317726, + -23.5592785 + ] + }, + "id": "node/11807591039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11808305163", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2193833, + -25.4371478 + ] + }, + "id": "node/11808305163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11812379851", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7204289, + -23.5577947 + ] + }, + "id": "node/11812379851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11812469403", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.721165, + -23.5576683 + ] + }, + "id": "node/11812469403" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11812469404", + "amenity": "bicycle_parking", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7196626, + -23.5578352 + ] + }, + "id": "node/11812469404" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11813987080", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6676418, + -23.562417 + ] + }, + "id": "node/11813987080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11819794628", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7211043, + -23.5590575 + ] + }, + "id": "node/11819794628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11828429823", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "30", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7236736, + -23.5630433 + ] + }, + "id": "node/11828429823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11828994026", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2822766, + -25.4298212 + ] + }, + "id": "node/11828994026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11828994027", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2810172, + -25.4303976 + ] + }, + "id": "node/11828994027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11829247316", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7327493, + -23.5568316 + ] + }, + "id": "node/11829247316" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11832984270", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1740719, + -22.9016265 + ] + }, + "id": "node/11832984270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11837439736", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6604371, + -23.5442621 + ] + }, + "id": "node/11837439736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11839210733", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6490921, + -23.5447237 + ] + }, + "id": "node/11839210733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11839441372", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6979414, + -23.5613491 + ] + }, + "id": "node/11839441372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11844457548", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1745266, + -22.912622 + ] + }, + "id": "node/11844457548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11863120176", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2574067, + -25.4478552 + ] + }, + "id": "node/11863120176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873990349", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3715712, + -22.9696821 + ] + }, + "id": "node/11873990349" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873990358", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3728303, + -22.9696768 + ] + }, + "id": "node/11873990358" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873992379", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3731297, + -22.9696696 + ] + }, + "id": "node/11873992379" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873992380", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3723042, + -22.9696735 + ] + }, + "id": "node/11873992380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873992411", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3710513, + -22.9703056 + ] + }, + "id": "node/11873992411" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873992449", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3710587, + -22.9707727 + ] + }, + "id": "node/11873992449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873992450", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.371066, + -22.9714071 + ] + }, + "id": "node/11873992450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873992451", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3710696, + -22.9719825 + ] + }, + "id": "node/11873992451" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11873992507", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3715226, + -22.9725005 + ] + }, + "id": "node/11873992507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11874035568", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3736888, + -22.9709478 + ] + }, + "id": "node/11874035568" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11874035569", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3736924, + -22.9711747 + ] + }, + "id": "node/11874035569" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11874130406", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3750706, + -22.9724701 + ] + }, + "id": "node/11874130406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11874969128", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5525041, + -3.7862566 + ] + }, + "id": "node/11874969128" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11884934501", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7337503, + -23.5557819 + ] + }, + "id": "node/11884934501" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11888792944", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7148732, + -23.563441 + ] + }, + "id": "node/11888792944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11891952140", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5540385, + -3.7864806 + ] + }, + "id": "node/11891952140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11901657771", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5536987, + -3.7882039 + ] + }, + "id": "node/11901657771" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11910467788", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5519077, + -3.7883341 + ] + }, + "id": "node/11910467788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11914344150", + "amenity": "bicycle_parking", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0873963, + -26.898678 + ] + }, + "id": "node/11914344150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11922820106", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5532687, + -3.7902071 + ] + }, + "id": "node/11922820106" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11948545339", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8972729, + -7.9088939 + ] + }, + "id": "node/11948545339" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11954356601", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6469481, + -22.9655662 + ] + }, + "id": "node/11954356601" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11956196810", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.7770145, + -27.6862564 + ] + }, + "id": "node/11956196810" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11957141109", + "amenity": "bicycle_parking", + "capacity": "14" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.3826607, + -23.6274679 + ] + }, + "id": "node/11957141109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11957141110", + "amenity": "bicycle_parking", + "capacity": "20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.382239, + -23.6269912 + ] + }, + "id": "node/11957141110" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11957198572", + "amenity": "bicycle_parking", + "capacity": "22" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.4067646, + -23.6203232 + ] + }, + "id": "node/11957198572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11958672431", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "fee": "no", + "level": "0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5787824, + -3.7457806 + ] + }, + "id": "node/11958672431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11979182892", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2307883, + -30.0507591 + ] + }, + "id": "node/11979182892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11979182894", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "7", + "covered": "no", + "fee": "no", + "lit": "yes", + "supervised": "no", + "surface": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2309757, + -30.0504338 + ] + }, + "id": "node/11979182894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11985660996", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "100", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.3763089, + -23.8198788 + ] + }, + "id": "node/11985660996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11989020043", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3080563, + -25.4361052 + ] + }, + "id": "node/11989020043" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11993063364", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1792927, + -26.7327597 + ] + }, + "id": "node/11993063364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12001086004", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "yes", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6735709, + -14.2116563 + ] + }, + "id": "node/12001086004" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12011169527", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9861748, + -21.1330414 + ] + }, + "id": "node/12011169527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12026593149", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2193385, + -25.437207 + ] + }, + "id": "node/12026593149" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12031313260", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator": "VLóce Bike, Run & Foods", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4185251, + -25.4077867 + ] + }, + "id": "node/12031313260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12040865405", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "4", + "covered": "yes", + "fee": "no", + "operator": "Farmácia São João" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1765613, + -26.7353104 + ] + }, + "id": "node/12040865405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12041865928", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.9601542, + -22.9127711 + ] + }, + "id": "node/12041865928" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12059511244", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no", + "fee": "no", + "operator": "Faculdade de Direito", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.243443, + -16.6759767 + ] + }, + "id": "node/12059511244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12060373981", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2424677, + -16.6783623 + ] + }, + "id": "node/12060373981" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12060384456", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "100", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2760271, + -16.7411146 + ] + }, + "id": "node/12060384456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12060387594", + "access": "permissive", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "68", + "covered": "yes", + "fee": "no", + "operator": "Goiânia Shopping" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2735769, + -16.7072723 + ] + }, + "id": "node/12060387594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12060392695", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.235625, + -16.7054478 + ] + }, + "id": "node/12060392695" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12063037120", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7259629, + -23.5576007 + ] + }, + "id": "node/12063037120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12063093348", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7274284, + -23.5577044 + ] + }, + "id": "node/12063093348" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12063107643", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7267581, + -23.5579763 + ] + }, + "id": "node/12063107643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12064072200", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no", + "fee": "no", + "operator": "Autoescola Kath" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1707539, + -26.7254418 + ] + }, + "id": "node/12064072200" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12064085162", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1761046, + -26.7407069 + ] + }, + "id": "node/12064085162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12066424910", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "check_date": "2024-07-21", + "colour": "#0000ff", + "covered": "no", + "fee": "no", + "level": "0", + "lit": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.9881589, + -15.8109767 + ] + }, + "id": "node/12066424910" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12077322331", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6342684, + -23.5526308 + ] + }, + "id": "node/12077322331" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12079486052", + "access": "customers", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1417071, + -29.6648456 + ] + }, + "id": "node/12079486052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12086388373", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1762051, + -26.7408449 + ] + }, + "id": "node/12086388373" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12091037826", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3043736, + -25.647983 + ] + }, + "id": "node/12091037826" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12100669183", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7263848, + -23.5576649 + ] + }, + "id": "node/12100669183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12104480790", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4049618, + -12.9390744 + ] + }, + "id": "node/12104480790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12109400684", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "fee": "no", + "operator": "CEIM Professora Dorotéa Hoeft Borchardt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1782533, + -26.7321109 + ] + }, + "id": "node/12109400684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12117259016", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "yes", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1765934, + -26.7397392 + ] + }, + "id": "node/12117259016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12120261587", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.636194, + -23.5442659 + ] + }, + "id": "node/12120261587" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12120261588", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6366292, + -23.5445521 + ] + }, + "id": "node/12120261588" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12128291763", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2916108, + -25.4425109 + ] + }, + "id": "node/12128291763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12132503802", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6903793, + -23.5893804 + ] + }, + "id": "node/12132503802" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12132511855", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6863513, + -23.5833594 + ] + }, + "id": "node/12132511855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12136668460", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1603985, + -26.6992127 + ] + }, + "id": "node/12136668460" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12141126434", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1755396, + -26.7369925 + ] + }, + "id": "node/12141126434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12172239444", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2108279, + -22.7997667 + ] + }, + "id": "node/12172239444" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12172239455", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2106777, + -22.7992012 + ] + }, + "id": "node/12172239455" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12177536727", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.4533346, + -21.186185 + ] + }, + "id": "node/12177536727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12182061129", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0491566, + -10.9138574 + ] + }, + "id": "node/12182061129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12184898291", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4485588, + -12.9846196 + ] + }, + "id": "node/12184898291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12188423509", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "11", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3780851, + -22.1707676 + ] + }, + "id": "node/12188423509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12193706486", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "1", + "fee": "no", + "operator": "Testo Notícias" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1778343, + -26.7399547 + ] + }, + "id": "node/12193706486" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12195586659", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5176686, + -3.7510452 + ] + }, + "id": "node/12195586659" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12195586667", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.518607, + -3.7529978 + ] + }, + "id": "node/12195586667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12195586687", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5206385, + -3.751328 + ] + }, + "id": "node/12195586687" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12196810606", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "fee": "no", + "operator": "Hospital e Maternidade Rio do Testo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1677988, + -26.7164083 + ] + }, + "id": "node/12196810606" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12197236455", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.5633599, + -22.4088046 + ] + }, + "id": "node/12197236455" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12197675849", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "operator": "Smart Fit" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6654168, + -23.6010887 + ] + }, + "id": "node/12197675849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12197768759", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7145825, + -23.5647071 + ] + }, + "id": "node/12197768759" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12214321622", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0929857, + -22.9535616 + ] + }, + "id": "node/12214321622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12214321710", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "mac", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0860291, + -22.9542777 + ] + }, + "id": "node/12214321710" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12215665153", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0730497, + -22.9559338 + ] + }, + "id": "node/12215665153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12216947291", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6706787, + -23.5543443 + ] + }, + "id": "node/12216947291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12228190914", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6607293, + -23.557844 + ] + }, + "id": "node/12228190914" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12258147073", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3156177, + -22.2197774 + ] + }, + "id": "node/12258147073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12282353275", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7110839, + -23.6289735 + ] + }, + "id": "node/12282353275" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12294504125", + "access": "customers", + "amenity": "bicycle_parking", + "capacity": "2", + "fee": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6024355, + -23.4576267 + ] + }, + "id": "node/12294504125" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12307812285", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1837851, + -22.9330996 + ] + }, + "id": "node/12307812285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12307821060", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1902263, + -22.9380572 + ] + }, + "id": "node/12307821060" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12309420825", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "fee": "no", + "operator": "Dárien Bike Shop" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1739243, + -26.7479805 + ] + }, + "id": "node/12309420825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12309420836", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1736165, + -26.7497906 + ] + }, + "id": "node/12309420836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12310362573", + "amenity": "bicycle_parking", + "capacity": "12", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2880324, + -25.4046073 + ] + }, + "id": "node/12310362573" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12324242559", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8200485, + -22.9158581 + ] + }, + "id": "node/12324242559" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12324284419", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8192267, + -22.916112 + ] + }, + "id": "node/12324284419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12324336985", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8205018, + -22.9143386 + ] + }, + "id": "node/12324336985" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12329190731", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2084716, + -22.8981638 + ] + }, + "id": "node/12329190731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12336933410", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "yes", + "level": "0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8571922, + -23.5175033 + ] + }, + "id": "node/12336933410" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12351363251", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.0943395, + -32.0404588 + ] + }, + "id": "node/12351363251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12358383724", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "26", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6647877, + -22.9407087 + ] + }, + "id": "node/12358383724" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12358395940", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6772667, + -22.9279396 + ] + }, + "id": "node/12358395940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12358395941", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6776576, + -22.9276424 + ] + }, + "id": "node/12358395941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12372350618", + "access": "private", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no", + "indoor": "no", + "lit": "yes", + "operator:type": "private", + "source": "survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -39.1169917, + -12.6829987 + ] + }, + "id": "node/12372350618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12372701253", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1736426, + -26.7476523 + ] + }, + "id": "node/12372701253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12372701254", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "3", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1736627, + -26.7480852 + ] + }, + "id": "node/12372701254" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12372701255", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1736711, + -26.7482915 + ] + }, + "id": "node/12372701255" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12373713812", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6155564, + -22.9159454 + ] + }, + "id": "node/12373713812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12373811474", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6017192, + -22.9143338 + ] + }, + "id": "node/12373811474" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12373837093", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "anchors", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5952587, + -22.9131356 + ] + }, + "id": "node/12373837093" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12383506079", + "access": "unknown", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.862462, + -7.1271897 + ] + }, + "id": "node/12383506079" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12384542308", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "30", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5710003, + -3.759287 + ] + }, + "id": "node/12384542308" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12386742637", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "shed", + "capacity": "10", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1755039, + -22.929613 + ] + }, + "id": "node/12386742637" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12388864523", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0142358, + -26.7711457 + ] + }, + "id": "node/12388864523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12391680008", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "safe_loops", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.6478948, + -27.2311393 + ] + }, + "id": "node/12391680008" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12393909276", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1741501, + -22.9118742 + ] + }, + "id": "node/12393909276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12397737693", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6095076, + -3.7908084 + ] + }, + "id": "node/12397737693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12398693232", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.494058, + -1.4530208 + ] + }, + "id": "node/12398693232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12399992078", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4649655, + -1.4327509 + ] + }, + "id": "node/12399992078" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12399992080", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4647041, + -1.4329317 + ] + }, + "id": "node/12399992080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12400415446", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4559395, + -1.4265334 + ] + }, + "id": "node/12400415446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12400613151", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4813366, + -1.4582443 + ] + }, + "id": "node/12400613151" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135862", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2007661, + -22.9869042 + ] + }, + "id": "node/12401135862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135863", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1998636, + -22.9869647 + ] + }, + "id": "node/12401135863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135864", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2000768, + -22.9869662 + ] + }, + "id": "node/12401135864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135865", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.201062, + -22.9868989 + ] + }, + "id": "node/12401135865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135866", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2012746, + -22.9868947 + ] + }, + "id": "node/12401135866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135867", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2017118, + -22.9868536 + ] + }, + "id": "node/12401135867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135869", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2031664, + -22.9867766 + ] + }, + "id": "node/12401135869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135870", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2035983, + -22.9867556 + ] + }, + "id": "node/12401135870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135871", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2039346, + -22.9867352 + ] + }, + "id": "node/12401135871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135875", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2082065, + -22.9865282 + ] + }, + "id": "node/12401135875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135881", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2135066, + -22.9862472 + ] + }, + "id": "node/12401135881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135885", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2173133, + -22.9866046 + ] + }, + "id": "node/12401135885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401135886", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2165183, + -22.9865148 + ] + }, + "id": "node/12401135886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401921363", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4573755, + -1.428791 + ] + }, + "id": "node/12401921363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12401921364", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "24", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4566395, + -1.4276626 + ] + }, + "id": "node/12401921364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12402750978", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7319894, + -23.5621426 + ] + }, + "id": "node/12402750978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12402750988", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.73257, + -23.5609228 + ] + }, + "id": "node/12402750988" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12402758134", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1766246, + -26.7377657 + ] + }, + "id": "node/12402758134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12405603271", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4146756, + -12.9735698 + ] + }, + "id": "node/12405603271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12405603272", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4147043, + -12.9732881 + ] + }, + "id": "node/12405603272" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12405603273", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4113577, + -12.9713723 + ] + }, + "id": "node/12405603273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12405603274", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4085768, + -12.9695883 + ] + }, + "id": "node/12405603274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12405603277", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4073337, + -12.9687872 + ] + }, + "id": "node/12405603277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12405603278", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4061725, + -12.9679144 + ] + }, + "id": "node/12405603278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12410542208", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2146003, + -22.9863078 + ] + }, + "id": "node/12410542208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12412856301", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5652761, + -1.2620915 + ] + }, + "id": "node/12412856301" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12416076748", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4611177, + -23.4839769 + ] + }, + "id": "node/12416076748" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12421745417", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2061289, + -22.9866365 + ] + }, + "id": "node/12421745417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12421745647", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1975018, + -22.9872165 + ] + }, + "id": "node/12421745647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12422868969", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4751489, + -3.716368 + ] + }, + "id": "node/12422868969" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12425955346", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0199454, + -22.8566996 + ] + }, + "id": "node/12425955346" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12425955369", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8908715, + -22.9328175 + ] + }, + "id": "node/12425955369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12425955370", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9003217, + -22.9350677 + ] + }, + "id": "node/12425955370" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12425955371", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9331895, + -22.9123289 + ] + }, + "id": "node/12425955371" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12425966896", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8347797, + -22.9086175 + ] + }, + "id": "node/12425966896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12425994280", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8634051, + -22.9245588 + ] + }, + "id": "node/12425994280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426008250", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8197469, + -22.9142786 + ] + }, + "id": "node/12426008250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426008251", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8744231, + -22.9302996 + ] + }, + "id": "node/12426008251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426030164", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8270045, + -22.9079968 + ] + }, + "id": "node/12426030164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426030165", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8196459, + -22.9180914 + ] + }, + "id": "node/12426030165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426036207", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9361627, + -22.9051282 + ] + }, + "id": "node/12426036207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426041245", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8189163, + -22.9166161 + ] + }, + "id": "node/12426041245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426041246", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9281035, + -22.9203787 + ] + }, + "id": "node/12426041246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426045141", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8788695, + -22.9314096 + ] + }, + "id": "node/12426045141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426045219", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9242256, + -22.927341 + ] + }, + "id": "node/12426045219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12426139549", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9309631, + -22.916098 + ] + }, + "id": "node/12426139549" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12427880595", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2775358, + -25.4390838 + ] + }, + "id": "node/12427880595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12427880596", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2738994, + -25.4262065 + ] + }, + "id": "node/12427880596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12427880597", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.272938, + -25.4324944 + ] + }, + "id": "node/12427880597" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12433995998", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.2349167, + -5.8200617 + ] + }, + "id": "node/12433995998" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12434723782", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1782543, + -26.7530441 + ] + }, + "id": "node/12434723782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12434723793", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1793349, + -26.7528079 + ] + }, + "id": "node/12434723793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12441580158", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3442708, + -23.9639192 + ] + }, + "id": "node/12441580158" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12441821153", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "building", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3437236, + -23.9640737 + ] + }, + "id": "node/12441821153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12442545568", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6906583, + -23.5647512 + ] + }, + "id": "node/12442545568" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12451581950", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1741147, + -26.7328235 + ] + }, + "id": "node/12451581950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12452927705", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6134207, + -20.5029798 + ] + }, + "id": "node/12452927705" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12452927706", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6121681, + -20.502868 + ] + }, + "id": "node/12452927706" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12457192447", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2152594, + -22.9618784 + ] + }, + "id": "node/12457192447" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12463991483", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3143009, + -25.4319383 + ] + }, + "id": "node/12463991483" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12463991484", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "8", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3149403, + -25.4339579 + ] + }, + "id": "node/12463991484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12463991485", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "4", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3150373, + -25.4354349 + ] + }, + "id": "node/12463991485" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12463991487", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3139989, + -25.4338434 + ] + }, + "id": "node/12463991487" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12466088989", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.4709648, + -20.390863 + ] + }, + "id": "node/12466088989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12466088990", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.4709913, + -20.3908616 + ] + }, + "id": "node/12466088990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12466088991", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.4710147, + -20.3908538 + ] + }, + "id": "node/12466088991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12466125037", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0612245, + -26.9221931 + ] + }, + "id": "node/12466125037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12467524813", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8572566, + -15.7656756 + ] + }, + "id": "node/12467524813" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12467685177", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8606964, + -15.7633836 + ] + }, + "id": "node/12467685177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12467685182", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8689439, + -15.7647313 + ] + }, + "id": "node/12467685182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12467685183", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8578115, + -15.765196 + ] + }, + "id": "node/12467685183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12475088534", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "2", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.177388, + -26.736102 + ] + }, + "id": "node/12475088534" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12476993570", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9609731, + -1.0126476 + ] + }, + "id": "node/12476993570" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12479197177", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5574582, + -23.6328773 + ] + }, + "id": "node/12479197177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12479197178", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5577599, + -23.6335592 + ] + }, + "id": "node/12479197178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12479451348", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444372, + -23.5065768 + ] + }, + "id": "node/12479451348" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12487024229", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6585466, + -23.5626812 + ] + }, + "id": "node/12487024229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12492871430", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2177013, + -22.9737127 + ] + }, + "id": "node/12492871430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12500512047", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5862777, + -3.7063644 + ] + }, + "id": "node/12500512047" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12500909936", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2928542, + -25.4300697 + ] + }, + "id": "node/12500909936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12502233752", + "amenity": "bicycle_parking", + "name": "CASA mix", + "shop": "bicycle_repair" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0644576, + -15.8798654 + ] + }, + "id": "node/12502233752" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12516648560", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.726954, + -23.579465 + ] + }, + "id": "node/12516648560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12516704934", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3017026, + -25.4158258 + ] + }, + "id": "node/12516704934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12519503140", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4714052, + -12.994577 + ] + }, + "id": "node/12519503140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12542338193", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator": "Ameciclo", + "operator:type": "association" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8801458, + -8.0593432 + ] + }, + "id": "node/12542338193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12543341201", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0482969, + -22.9438063 + ] + }, + "id": "node/12543341201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12543341216", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0478809, + -22.9442263 + ] + }, + "id": "node/12543341216" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12564207401", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5372067, + -25.8554486 + ] + }, + "id": "node/12564207401" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12566497046", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5116079, + -3.720165 + ] + }, + "id": "node/12566497046" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12575253157", + "access": "yes", + "amenity": "bicycle_parking", + "capacity": "6", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.273502, + -25.4308352 + ] + }, + "id": "node/12575253157" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12578510527", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1092454, + -22.9027891 + ] + }, + "id": "node/12578510527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12578510528", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1092978, + -22.9026177 + ] + }, + "id": "node/12578510528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12578871601", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.791063, + -22.3978438 + ] + }, + "id": "node/12578871601" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12578924367", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.8060001, + -22.3905115 + ] + }, + "id": "node/12578924367" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579082690", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7836263, + -22.3907808 + ] + }, + "id": "node/12579082690" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579126985", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7836781, + -22.3908273 + ] + }, + "id": "node/12579126985" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579130069", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7843935, + -22.3915238 + ] + }, + "id": "node/12579130069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579307876", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7839906, + -22.3942785 + ] + }, + "id": "node/12579307876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579386642", + "amenity": "bicycle_parking", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7958423, + -22.3706764 + ] + }, + "id": "node/12579386642" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579478363", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7826809, + -22.3706881 + ] + }, + "id": "node/12579478363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579485829", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7808965, + -22.3799949 + ] + }, + "id": "node/12579485829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579486063", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7852369, + -22.3698828 + ] + }, + "id": "node/12579486063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579493522", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7813007, + -22.3772614 + ] + }, + "id": "node/12579493522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579496828", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7819475, + -22.3743452 + ] + }, + "id": "node/12579496828" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579502291", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7826503, + -22.3705584 + ] + }, + "id": "node/12579502291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579505749", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "12", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7816022, + -22.3762401 + ] + }, + "id": "node/12579505749" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579505772", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7787377, + -22.392302 + ] + }, + "id": "node/12579505772" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579512157", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7805549, + -22.3802746 + ] + }, + "id": "node/12579512157" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12579516701", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7787377, + -22.392302 + ] + }, + "id": "node/12579516701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12584876810", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0989746, + -22.9324925 + ] + }, + "id": "node/12584876810" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12584876811", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.099362, + -22.9328965 + ] + }, + "id": "node/12584876811" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12584876892", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0717887, + -22.936303 + ] + }, + "id": "node/12584876892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12586242091", + "amenity": "bicycle_parking", + "name": "CICLISOUSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.1306738, + -7.011357 + ] + }, + "id": "node/12586242091" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12598463167", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3230256, + -23.9445123 + ] + }, + "id": "node/12598463167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12598463168", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3230412, + -23.9447455 + ] + }, + "id": "node/12598463168" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12600675105", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4054914, + -23.0004734 + ] + }, + "id": "node/12600675105" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12607917470", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "yes", + "lit": "yes", + "name": "Biblioteca CCSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8504258, + -7.1414211 + ] + }, + "id": "node/12607917470" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12609744984", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5310821, + -25.8613139 + ] + }, + "id": "node/12609744984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12617931388", + "amenity": "bicycle_parking", + "level": "0" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5409766, + -3.77902 + ] + }, + "id": "node/12617931388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12622268153", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.9752497, + -12.2356843 + ] + }, + "id": "node/12622268153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12629757860", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.368385, + -20.3822635 + ] + }, + "id": "node/12629757860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12639442009", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2818563, + -25.4224791 + ] + }, + "id": "node/12639442009" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12645503984", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "15" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.4260918, + -20.3532395 + ] + }, + "id": "node/12645503984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12646860792", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "3", + "covered": "no", + "wheelchair": "limited" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1776417, + -22.9297173 + ] + }, + "id": "node/12646860792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12646863994", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.177823, + -22.9297584 + ] + }, + "id": "node/12646863994" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12647318166", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5413101, + -25.8551919 + ] + }, + "id": "node/12647318166" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12648216981", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5747048, + -3.742532 + ] + }, + "id": "node/12648216981" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12648216983", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5775994, + -3.7448823 + ] + }, + "id": "node/12648216983" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12648216984", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5778344, + -3.7449166 + ] + }, + "id": "node/12648216984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12648216989", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5729634, + -3.7451086 + ] + }, + "id": "node/12648216989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12648229577", + "amenity": "bicycle_parking", + "bicycle_parking": "shed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5754411, + -3.7433452 + ] + }, + "id": "node/12648229577" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12676756566", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5355236, + -3.7438748 + ] + }, + "id": "node/12676756566" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12680151524", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9337814, + -19.9319763 + ] + }, + "id": "node/12680151524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12681036269", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.0059912, + -19.8967973 + ] + }, + "id": "node/12681036269" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12681122280", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9891938, + -19.9143111 + ] + }, + "id": "node/12681122280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12681654553", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.897884, + -19.899266 + ] + }, + "id": "node/12681654553" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12682125987", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.934417, + -19.9255887 + ] + }, + "id": "node/12682125987" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12682144023", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9358998, + -19.9238059 + ] + }, + "id": "node/12682144023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12684884551", + "amenity": "bicycle_parking", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9690475, + -19.8094424 + ] + }, + "id": "node/12684884551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12704888951", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4240795, + -12.9779196 + ] + }, + "id": "node/12704888951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12732183037", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4017084, + -12.9644742 + ] + }, + "id": "node/12732183037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12734033444", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.0584187, + -23.457614 + ] + }, + "id": "node/12734033444" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12739819188", + "amenity": "bicycle_parking", + "capacity": "10" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.0502252, + -25.2414026 + ] + }, + "id": "node/12739819188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12745598802", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "16", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0295499, + -22.9752561 + ] + }, + "id": "node/12745598802" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12747922768", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6957239, + -22.6712817 + ] + }, + "id": "node/12747922768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12748063069", + "amenity": "bicycle_parking", + "bicycle_parking": "floor", + "capacity": "10", + "operator": "Itau", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1763437, + -22.9391045 + ] + }, + "id": "node/12748063069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12750401779", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1709924, + -22.9199439 + ] + }, + "id": "node/12750401779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12751089976", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.6621389, + -9.7507554 + ] + }, + "id": "node/12751089976" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12770522663", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.514993, + -13.0094388 + ] + }, + "id": "node/12770522663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12770522664", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5143493, + -13.0096158 + ] + }, + "id": "node/12770522664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12791919414", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.0307608, + -23.4190902 + ] + }, + "id": "node/12791919414" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12804403278", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.3366827, + -22.8728465 + ] + }, + "id": "node/12804403278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12809467761", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2567918, + -25.4339351 + ] + }, + "id": "node/12809467761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12809499628", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.245174, + -25.4047433 + ] + }, + "id": "node/12809499628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849348279", + "amenity": "bicycle_parking", + "capacity": "18" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1929323, + -25.4797828 + ] + }, + "id": "node/12849348279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887959", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0707477, + -22.8170114 + ] + }, + "id": "node/12849887959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12881384513", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7326197, + -23.5580634 + ] + }, + "id": "node/12881384513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12889464825", + "amenity": "bicycle_parking", + "description": "Bicicletário para trabalhadores do local" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3667749, + -22.969843 + ] + }, + "id": "node/12889464825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12889477599", + "amenity": "bicycle_parking", + "description": "Bicicletário na lateral direita do estacionamento do mercado Assaí", + "name": "Bicicletário Assaí", + "opening_hours": "Mo-Su 07:00-22:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.355862, + -22.9597064 + ] + }, + "id": "node/12889477599" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12913795907", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "saddle_holder", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1735635, + -26.7378992 + ] + }, + "id": "node/12913795907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12920182370", + "amenity": "bicycle_parking", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9002559, + -8.0351261 + ] + }, + "id": "node/12920182370" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12941427228", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7185006, + -29.7221987 + ] + }, + "id": "node/12941427228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12941440637", + "amenity": "bicycle_parking", + "capacity": "4" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7142313, + -29.7029415 + ] + }, + "id": "node/12941440637" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12943413192", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8702512, + -8.0607004 + ] + }, + "id": "node/12943413192" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12944942693", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "28", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9030285, + -8.0316851 + ] + }, + "id": "node/12944942693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12947172150", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8170253, + -22.9226442 + ] + }, + "id": "node/12947172150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12956183867", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "yes", + "fee": "no", + "operator:type": "private" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.6698726, + -14.195778 + ] + }, + "id": "node/12956183867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12957881163", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "yes", + "operator": "Farmalan" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.177499, + -26.7375243 + ] + }, + "id": "node/12957881163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12959312326", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.3384159, + -22.8745751 + ] + }, + "id": "node/12959312326" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12965110675", + "amenity": "bicycle_parking", + "capacity": "6" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3282516, + -25.4042222 + ] + }, + "id": "node/12965110675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12965157572", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.0972488, + -29.1662845 + ] + }, + "id": "node/12965157572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12967141616", + "amenity": "bicycle_parking", + "covered": "no", + "name": "Bicicletário da Rodoviária Roberto Silveira" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3269217, + -21.7608487 + ] + }, + "id": "node/12967141616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12985796296", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6572778, + -23.5414956 + ] + }, + "id": "node/12985796296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12986651942", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "9" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5899403, + -27.902854 + ] + }, + "id": "node/12986651942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12986706369", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2475846, + -22.8124697 + ] + }, + "id": "node/12986706369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12988216585", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6394022, + -23.5809718 + ] + }, + "id": "node/12988216585" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12992858405", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7214898, + -23.5598552 + ] + }, + "id": "node/12992858405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12992875274", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7229384, + -23.5604664 + ] + }, + "id": "node/12992875274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12992889767", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7214712, + -23.5598199 + ] + }, + "id": "node/12992889767" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12994889384", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9542939, + -22.9442636 + ] + }, + "id": "node/12994889384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12999636530", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7220394, + -23.5625127 + ] + }, + "id": "node/12999636530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13004610484", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.702795, + -22.9548604 + ] + }, + "id": "node/13004610484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13004799426", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9245979, + -8.1131239 + ] + }, + "id": "node/13004799426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13007570077", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6412824, + -23.5873531 + ] + }, + "id": "node/13007570077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13014548571", + "amenity": "bicycle_parking", + "capacity": "8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2651788, + -25.4293964 + ] + }, + "id": "node/13014548571" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13017211484", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8784061, + -22.931367 + ] + }, + "id": "node/13017211484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13018732450", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.50594, + -3.723247 + ] + }, + "id": "node/13018732450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13018732457", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5066014, + -3.722931 + ] + }, + "id": "node/13018732457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13021399556", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5152878, + -27.5998333 + ] + }, + "id": "node/13021399556" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13025723446", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2476203, + -22.8640335 + ] + }, + "id": "node/13025723446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13025742351", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2415604, + -22.8766678 + ] + }, + "id": "node/13025742351" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13026935388", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5119306, + -3.7200883 + ] + }, + "id": "node/13026935388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13029799949", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.682156, + -23.5584826 + ] + }, + "id": "node/13029799949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13034235888", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.463295, + -27.6045676 + ] + }, + "id": "node/13034235888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13043540591", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3975331, + -28.2646305 + ] + }, + "id": "node/13043540591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13049129385", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1437407, + -15.8290417 + ] + }, + "id": "node/13049129385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13049129386", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1428469, + -15.8294855 + ] + }, + "id": "node/13049129386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13084780589", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.799241, + -22.4053514 + ] + }, + "id": "node/13084780589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13104127221", + "access": "private", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.0763907, + -19.862325 + ] + }, + "id": "node/13104127221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13106649978", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4854438, + -16.6771466 + ] + }, + "id": "node/13106649978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13111278291", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1707841, + -26.7280375 + ] + }, + "id": "node/13111278291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920829", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação Werneck", + "operator": "Prefeitura do Recife", + "ref": "P540" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9368575, + -8.0858345 + ] + }, + "id": "node/13112920829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920830", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Creche Dorgiane dos Santos Xavier Souza", + "operator": "Prefeitura do Recife", + "ref": "P539" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8771718, + -8.0198156 + ] + }, + "id": "node/13112920830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920831", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Maestro Milton Rodrigues", + "operator": "Prefeitura do Recife", + "ref": "P538" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8827512, + -8.0476192 + ] + }, + "id": "node/13112920831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920832", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Cabipa", + "operator": "Prefeitura do Recife", + "ref": "P537" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8981081, + -8.0437621 + ] + }, + "id": "node/13112920832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920833", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Juliete Moura", + "operator": "Prefeitura do Recife", + "ref": "P536" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9325309, + -8.0860762 + ] + }, + "id": "node/13112920833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920834", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Banco Bradesco", + "operator": "Prefeitura do Recife", + "ref": "P535" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8721835, + -8.0644766 + ] + }, + "id": "node/13112920834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920835", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Maria Lucia", + "operator": "Prefeitura do Recife", + "ref": "P534" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9268831, + -8.1037652 + ] + }, + "id": "node/13112920835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920836", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra Neópolis", + "operator": "Prefeitura do Recife", + "ref": "P533" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9464761, + -8.1163471 + ] + }, + "id": "node/13112920836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920837", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça da Truaca", + "operator": "Prefeitura do Recife", + "ref": "P532" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9515212, + -8.1111243 + ] + }, + "id": "node/13112920837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920838", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Tempo de Crescer", + "operator": "Prefeitura do Recife", + "ref": "P531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9507915, + -8.1111115 + ] + }, + "id": "node/13112920838" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920839", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Raízes", + "operator": "Prefeitura do Recife", + "ref": "P530" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9506921, + -8.1121923 + ] + }, + "id": "node/13112920839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920840", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Tamarindo", + "operator": "Prefeitura do Recife", + "ref": "P529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950104, + -8.1143814 + ] + }, + "id": "node/13112920840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920841", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Três Marias", + "operator": "Prefeitura do Recife", + "ref": "P528" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9510884, + -8.1133074 + ] + }, + "id": "node/13112920841" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920842", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça dos Iburenses", + "operator": "Prefeitura do Recife", + "ref": "P527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9470032, + -8.117584 + ] + }, + "id": "node/13112920842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920843", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "IPHAN", + "operator": "Prefeitura do Recife", + "ref": "P526" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8836217, + -8.0677544 + ] + }, + "id": "node/13112920843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920844", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Padre Romano Zufferey", + "operator": "Prefeitura do Recife", + "ref": "P525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9396992, + -8.0782211 + ] + }, + "id": "node/13112920844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920845", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de Joana Bezerra", + "operator": "Prefeitura do Recife", + "ref": "P524" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8969895, + -8.0719379 + ] + }, + "id": "node/13112920845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920846", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça José da Costa Porto", + "operator": "Prefeitura do Recife", + "ref": "P523" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9007637, + -8.0719222 + ] + }, + "id": "node/13112920846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920847", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Praça do Mangue", + "operator": "Prefeitura do Recife", + "ref": "P522" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9165449, + -8.0850655 + ] + }, + "id": "node/13112920847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920848", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Marcantônio Vilaça", + "operator": "Prefeitura do Recife", + "ref": "P521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8891225, + -8.0990709 + ] + }, + "id": "node/13112920848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920849", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "name": "Porto Terra Nova", + "operator": "Prefeitura do Recife", + "ref": "P520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8760222, + -8.0781711 + ] + }, + "id": "node/13112920849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920850", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Don Helder", + "operator": "Prefeitura do Recife", + "ref": "P519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.953711, + -8.0815153 + ] + }, + "id": "node/13112920850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920851", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça João Vinte e Três", + "operator": "Prefeitura do Recife", + "ref": "P518" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9553558, + -8.0832271 + ] + }, + "id": "node/13112920851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920852", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "2a Praça da Vila dos Bancários", + "operator": "Prefeitura do Recife", + "ref": "P517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9556462, + -8.0818098 + ] + }, + "id": "node/13112920852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920853", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Saberé", + "operator": "Prefeitura do Recife", + "ref": "P516" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.95243, + -8.037334 + ] + }, + "id": "node/13112920853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920854", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Mano Marlon Lins", + "operator": "Prefeitura do Recife", + "ref": "P515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.962555, + -8.023725 + ] + }, + "id": "node/13112920854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920855", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Nova Morada", + "operator": "Prefeitura do Recife", + "ref": "P513" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.952404, + -8.025928 + ] + }, + "id": "node/13112920855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920856", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "name": "Praça dos Ipês", + "operator": "Prefeitura do Recife", + "ref": "P512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.954411, + -8.026612 + ] + }, + "id": "node/13112920856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920857", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra Sobral", + "operator": "Prefeitura do Recife", + "ref": "P511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932417, + -8.030682 + ] + }, + "id": "node/13112920857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920858", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "COMPAZ Miguel Arraes", + "operator": "Prefeitura do Recife", + "ref": "P510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.914461, + -8.054413 + ] + }, + "id": "node/13112920858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920859", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Professor Calazans", + "operator": "Prefeitura do Recife", + "ref": "P509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.910183, + -8.050529 + ] + }, + "id": "node/13112920859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920860", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Creche Escola Municipal João Amazonas", + "operator": "Prefeitura do Recife", + "ref": "P508" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906106, + -8.002406 + ] + }, + "id": "node/13112920860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920861", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Olindina Monteiro de Oliveira França", + "operator": "Prefeitura do Recife", + "ref": "P507" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906219, + -8.002599 + ] + }, + "id": "node/13112920861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920862", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Restaurante Pahu Poke", + "operator": "Prefeitura do Recife", + "ref": "P506" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89785, + -8.045637 + ] + }, + "id": "node/13112920862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920863", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado Público de Nova Descoberta", + "operator": "Prefeitura do Recife", + "ref": "P505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.922569, + -8.000434 + ] + }, + "id": "node/13112920863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920864", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Campo de Singapura", + "operator": "Prefeitura do Recife", + "ref": "P504" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.900691, + -8.004986 + ] + }, + "id": "node/13112920864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920865", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Poeta Solano Trindade", + "operator": "Prefeitura do Recife", + "ref": "P503" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.889038, + -8.018404 + ] + }, + "id": "node/13112920865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920866", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Antônio Heráclio do Rego", + "operator": "Prefeitura do Recife", + "ref": "P502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.888921, + -8.018392 + ] + }, + "id": "node/13112920866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920867", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da FEB", + "operator": "Prefeitura do Recife", + "ref": "P501" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894823, + -8.040292 + ] + }, + "id": "node/13112920867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920868", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Largo da Encruzilhada", + "operator": "Prefeitura do Recife", + "ref": "P500" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.891603, + -8.037655 + ] + }, + "id": "node/13112920868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920869", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Rosarinho", + "operator": "Prefeitura do Recife", + "ref": "P499" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.896367, + -8.033181 + ] + }, + "id": "node/13112920869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920870", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "CRAS Dois Irmãos", + "operator": "Prefeitura do Recife", + "ref": "P498" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.941218, + -8.016487 + ] + }, + "id": "node/13112920870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920871", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "CRAS Alto do Mandu", + "operator": "Prefeitura do Recife", + "ref": "P497" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927204, + -8.024885 + ] + }, + "id": "node/13112920871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920872", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Baobá", + "operator": "Prefeitura do Recife", + "ref": "P496" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904224, + -8.041909 + ] + }, + "id": "node/13112920872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920873", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação La Greca", + "operator": "Prefeitura do Recife", + "ref": "P495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.909673, + -8.037485 + ] + }, + "id": "node/13112920873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920874", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Miguel de Cervantes", + "operator": "Prefeitura do Recife", + "ref": "P494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894031, + -8.067784 + ] + }, + "id": "node/13112920874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920875", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "COMPAZ atriz Leda Alves", + "operator": "Prefeitura do Recife", + "ref": "P493" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.891015, + -8.094028 + ] + }, + "id": "node/13112920875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920876", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Secretaria de Meio Ambiente", + "operator": "Prefeitura do Recife", + "ref": "P492" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89927, + -8.039986 + ] + }, + "id": "node/13112920876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920877", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Sá e Souza", + "operator": "Prefeitura do Recife", + "ref": "P491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907579, + -8.139783 + ] + }, + "id": "node/13112920877" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920878", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jardim América", + "operator": "Prefeitura do Recife", + "ref": "P490" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.919941, + -8.105742 + ] + }, + "id": "node/13112920878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920879", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra Imbiribeira", + "operator": "Prefeitura do Recife", + "ref": "P489" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.910224, + -8.085383 + ] + }, + "id": "node/13112920879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920880", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Largura", + "operator": "Prefeitura do Recife", + "ref": "P488" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.917809, + -8.03228 + ] + }, + "id": "node/13112920880" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920881", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Prefeitura do Recife", + "ref": "P487.2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904604, + -8.044202 + ] + }, + "id": "node/13112920881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920882", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Prefeitura do Recife", + "ref": "P487.1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904873, + -8.044362 + ] + }, + "id": "node/13112920882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920883", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça José Sales Filho", + "operator": "Prefeitura do Recife", + "ref": "P486" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904601, + -8.045068 + ] + }, + "id": "node/13112920883" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920884", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Orora", + "operator": "Prefeitura do Recife", + "ref": "P485" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876978, + -8.054677 + ] + }, + "id": "node/13112920884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920885", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Dona Elizabeth", + "operator": "Prefeitura do Recife", + "ref": "P484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881892, + -8.04546 + ] + }, + "id": "node/13112920885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920886", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Adulccio Junior", + "operator": "Prefeitura do Recife", + "ref": "P483" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.88124, + -8.04595 + ] + }, + "id": "node/13112920886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920887", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Eduardo Campos (Ilha de Deus)", + "operator": "Prefeitura do Recife", + "ref": "P482" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9023837, + -8.0861692 + ] + }, + "id": "node/13112920887" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920888", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Polo Academia da Cidade - Jordão Baixo", + "operator": "Prefeitura do Recife", + "ref": "P480" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.936864, + -8.136767 + ] + }, + "id": "node/13112920888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920889", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Prefeitura do Recife", + "ref": "P479.2" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.905241, + -8.087266 + ] + }, + "id": "node/13112920889" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920890", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Prefeitura do Recife", + "ref": "P479.1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.905338, + -8.086933 + ] + }, + "id": "node/13112920890" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920891", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "RM", + "operator": "Prefeitura do Recife", + "ref": "P478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907628, + -8.053024 + ] + }, + "id": "node/13112920891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920892", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Feira agroecológia de Setubal", + "operator": "Prefeitura do Recife", + "ref": "P477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.908172, + -8.137121 + ] + }, + "id": "node/13112920892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920893", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Marco Zero da Ilha de Deus", + "operator": "Prefeitura do Recife", + "ref": "P476" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9006234, + -8.0876702 + ] + }, + "id": "node/13112920893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920894", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Tourão", + "operator": "Prefeitura do Recife", + "ref": "P475" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.925466, + -8.092827 + ] + }, + "id": "node/13112920894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920895", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Prof. Barreto Campelo", + "operator": "Prefeitura do Recife", + "ref": "P474" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913412, + -8.046696 + ] + }, + "id": "node/13112920895" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920896", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Douro", + "operator": "Prefeitura do Recife", + "ref": "P473" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.87934, + -8.062035 + ] + }, + "id": "node/13112920896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920897", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "EREM Clotilde de Oliveira", + "operator": "Prefeitura do Recife", + "ref": "P472" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.926109, + -8.020037 + ] + }, + "id": "node/13112920897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920898", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Est. Professor Motta e Albuquerque", + "operator": "Prefeitura do Recife", + "ref": "P471" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.905053, + -8.029923 + ] + }, + "id": "node/13112920898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920899", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bacurau - Galo", + "operator": "Prefeitura do Recife", + "ref": "P252" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950044, + -8.115168 + ] + }, + "id": "node/13112920899" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112920900", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Conjunto Europa", + "operator": "Prefeitura do Recife", + "ref": "P470" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906404, + -8.134607 + ] + }, + "id": "node/13112920900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921001", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Procuradoria Geral do Estado", + "operator": "Prefeitura do Recife", + "ref": "P469" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879806, + -8.061773 + ] + }, + "id": "node/13112921001" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921002", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Vapor", + "operator": "Prefeitura do Recife", + "ref": "P468" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.87857, + -8.053736 + ] + }, + "id": "node/13112921002" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921003", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Central CadÚnico", + "operator": "Prefeitura do Recife", + "ref": "P467" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.87932, + -8.051184 + ] + }, + "id": "node/13112921003" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921004", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Travessa Carapuceiro", + "operator": "Prefeitura do Recife", + "ref": "P466" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.901911, + -8.118732 + ] + }, + "id": "node/13112921004" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921005", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Lagoa do Araçá", + "operator": "Prefeitura do Recife", + "ref": "P465" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913271, + -8.092967 + ] + }, + "id": "node/13112921005" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921006", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Lagoa do Araçá", + "operator": "Prefeitura do Recife", + "ref": "P464" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.915443, + -8.096513 + ] + }, + "id": "node/13112921006" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921007", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Borsoi", + "operator": "Prefeitura do Recife", + "ref": "P463" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887765, + -8.104557 + ] + }, + "id": "node/13112921007" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921008", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Sindicato dos Contabilistas", + "operator": "Prefeitura do Recife", + "ref": "P462" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892679, + -8.058173 + ] + }, + "id": "node/13112921008" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921009", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Infãncia Córrego do Morcego", + "operator": "Prefeitura do Recife", + "ref": "P461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907454, + -8.003033 + ] + }, + "id": "node/13112921009" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921010", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Parque Jardim do Poço", + "operator": "Prefeitura do Recife", + "ref": "P460" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.924598, + -8.031438 + ] + }, + "id": "node/13112921010" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921011", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Parque Jardim do Poço", + "operator": "Prefeitura do Recife", + "ref": "P459" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.925246, + -8.032042 + ] + }, + "id": "node/13112921011" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921012", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parcão Sítio da Trindade", + "operator": "Prefeitura do Recife", + "ref": "P458" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.914133, + -8.031846 + ] + }, + "id": "node/13112921012" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921013", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua dos Arcos", + "operator": "Prefeitura do Recife", + "ref": "P457" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.922842, + -8.033828 + ] + }, + "id": "node/13112921013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921014", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Dantas Barreto", + "operator": "Prefeitura do Recife", + "ref": "P456" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881683, + -8.069768 + ] + }, + "id": "node/13112921014" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921015", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça João Pereira Borges", + "operator": "Prefeitura do Recife", + "ref": "P455" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.901764, + -8.05432 + ] + }, + "id": "node/13112921015" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921016", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "UFRPE 2", + "operator": "Prefeitura do Recife", + "ref": "P454" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950863, + -8.016237 + ] + }, + "id": "node/13112921016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921017", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "UFRPE", + "operator": "Prefeitura do Recife", + "ref": "P453" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.945253, + -8.016447 + ] + }, + "id": "node/13112921017" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921018", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque Santos Dumont 2", + "operator": "Prefeitura do Recife", + "ref": "P452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.908225, + -8.129184 + ] + }, + "id": "node/13112921018" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921019", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque Santos Dumont 1", + "operator": "Prefeitura do Recife", + "ref": "P451" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907551, + -8.13028 + ] + }, + "id": "node/13112921019" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921020", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bruno Veloso", + "operator": "Prefeitura do Recife", + "ref": "P450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.901952, + -8.121301 + ] + }, + "id": "node/13112921020" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921021", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque Ecológico Rio Azul", + "operator": "Prefeitura do Recife", + "ref": "P449" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.909269, + -8.134723 + ] + }, + "id": "node/13112921021" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921022", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Walt Disney", + "operator": "Prefeitura do Recife", + "ref": "P448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.889162, + -8.107903 + ] + }, + "id": "node/13112921022" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921023", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Cidade do Porto", + "operator": "Prefeitura do Recife", + "ref": "P447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.889522, + -8.106064 + ] + }, + "id": "node/13112921023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921024", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Comandante Alex", + "operator": "Prefeitura do Recife", + "ref": "P446" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.890877, + -8.106038 + ] + }, + "id": "node/13112921024" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921025", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação e metrô Antônio Falcão", + "operator": "Prefeitura do Recife", + "ref": "P445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.909087, + -8.109634 + ] + }, + "id": "node/13112921025" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921026", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "22", + "covered": "no", + "fee": "no", + "name": "AACD", + "operator": "Prefeitura do Recife", + "ref": "P444" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894148, + -8.071839 + ] + }, + "id": "node/13112921026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921027", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Quadra de Jardim Planalto", + "operator": "Prefeitura do Recife", + "ref": "P443" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.958396, + -8.084302 + ] + }, + "id": "node/13112921027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921028", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Escola Municipal de Tejipió", + "operator": "Prefeitura do Recife", + "ref": "P442" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.964395, + -8.091995 + ] + }, + "id": "node/13112921028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921029", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação Coqueiral", + "operator": "Prefeitura do Recife", + "ref": "P441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.964639, + -8.091186 + ] + }, + "id": "node/13112921029" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921030", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do ABC", + "operator": "Prefeitura do Recife", + "ref": "P440" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.918527, + -8.073582 + ] + }, + "id": "node/13112921030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921031", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Irmã Douraci Joaguim", + "operator": "Prefeitura do Recife", + "ref": "P439" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.918298, + -8.071787 + ] + }, + "id": "node/13112921031" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921032", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Zeppelin (Jiquiá)", + "operator": "Prefeitura do Recife", + "ref": "P438" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.92525, + -8.083425 + ] + }, + "id": "node/13112921032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921033", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Sudene", + "operator": "Prefeitura do Recife", + "ref": "P437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.921882, + -8.114094 + ] + }, + "id": "node/13112921033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921034", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Aleixo de Oliveira", + "operator": "Prefeitura do Recife", + "ref": "P436" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.924747, + -8.112414 + ] + }, + "id": "node/13112921034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921035", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Vicente Antunes", + "operator": "Prefeitura do Recife", + "ref": "P435" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.918499, + -8.11461 + ] + }, + "id": "node/13112921035" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921036", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Lua", + "operator": "Prefeitura do Recife", + "ref": "P434" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887377, + -8.086239 + ] + }, + "id": "node/13112921036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921037", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Barraca de Pingo", + "operator": "Prefeitura do Recife", + "ref": "P433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883828, + -8.099856 + ] + }, + "id": "node/13112921037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921038", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Sargento", + "operator": "Prefeitura do Recife", + "ref": "P432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.918605, + -8.115912 + ] + }, + "id": "node/13112921038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921039", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Franco Gomes Coutinho", + "operator": "Prefeitura do Recife", + "ref": "P431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.919767, + -8.07872 + ] + }, + "id": "node/13112921039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921040", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Nossa Senhora de Fátima", + "operator": "Prefeitura do Recife", + "ref": "P430" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.930639, + -8.072198 + ] + }, + "id": "node/13112921040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921041", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Zeppelin (San Martin)", + "operator": "Prefeitura do Recife", + "ref": "P429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927955, + -8.072877 + ] + }, + "id": "node/13112921041" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921042", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Professor Paulo Silveira do Nascimento", + "operator": "Prefeitura do Recife", + "ref": "P428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.921773, + -8.083229 + ] + }, + "id": "node/13112921042" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921043", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Sargento Max Wolf Filho", + "operator": "Prefeitura do Recife", + "ref": "P427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.911402, + -8.071678 + ] + }, + "id": "node/13112921043" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921044", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "TI Caxangá", + "operator": "Prefeitura do Recife", + "ref": "P426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.954845, + -8.031226 + ] + }, + "id": "node/13112921044" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921045", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Orla de Brasilia Teimosa (Buraco da Véia)", + "operator": "Prefeitura do Recife", + "ref": "P425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876596, + -8.079951 + ] + }, + "id": "node/13112921045" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921046", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Acad. da cidade – Polo Cafezópolis", + "operator": "Prefeitura do Recife", + "ref": "P424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.908857, + -8.099821 + ] + }, + "id": "node/13112921046" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921047", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Chão de estrelas", + "operator": "Prefeitura do Recife", + "ref": "P423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.87587, + -8.020313 + ] + }, + "id": "node/13112921047" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921048", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Buriti", + "operator": "Prefeitura do Recife", + "ref": "P422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.929403, + -8.010254 + ] + }, + "id": "node/13112921048" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921049", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "CMEI Prof. FRANCISCO do Amaral Lopes", + "operator": "Prefeitura do Recife", + "ref": "P421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.888587, + -8.044902 + ] + }, + "id": "node/13112921049" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921050", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Parque das Graças 03", + "operator": "Prefeitura do Recife", + "ref": "P420" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.902784, + -8.048016 + ] + }, + "id": "node/13112921050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921051", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque das Graças 02", + "operator": "Prefeitura do Recife", + "ref": "P419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.903651, + -8.049569 + ] + }, + "id": "node/13112921051" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921052", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Parque das Graças 01", + "operator": "Prefeitura do Recife", + "ref": "P418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.902913, + -8.045406 + ] + }, + "id": "node/13112921052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921053", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "TI Getulio Vargas 02", + "operator": "Prefeitura do Recife", + "ref": "P417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.921716, + -8.05029 + ] + }, + "id": "node/13112921053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921054", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "16", + "covered": "no", + "fee": "no", + "name": "TI CDU", + "operator": "Prefeitura do Recife", + "ref": "P415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.943299, + -8.038463 + ] + }, + "id": "node/13112921054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921055", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado de Casa Amarela 04", + "operator": "Prefeitura do Recife", + "ref": "P414" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.917754, + -8.025911 + ] + }, + "id": "node/13112921055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921056", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Maciel Pinheiro", + "operator": "Prefeitura do Recife", + "ref": "P413" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.885148, + -8.062604 + ] + }, + "id": "node/13112921056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921057", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Eça de Queiroz", + "operator": "Prefeitura do Recife", + "ref": "P412" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907299, + -8.050652 + ] + }, + "id": "node/13112921057" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921058", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Dpt. Remo Do Sport Club Do Recife", + "operator": "Prefeitura do Recife", + "ref": "P411" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.90451, + -8.053573 + ] + }, + "id": "node/13112921058" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921059", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Simonesia", + "operator": "Prefeitura do Recife", + "ref": "P410" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932698, + -8.028989 + ] + }, + "id": "node/13112921059" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921060", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Prefeitura do Recife", + "ref": "P409" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.899404, + -8.068887 + ] + }, + "id": "node/13112921060" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921061", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "CRAS Campina do Barreto", + "operator": "Prefeitura do Recife", + "ref": "P408" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881264, + -8.015904 + ] + }, + "id": "node/13112921061" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921062", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Burity", + "operator": "Prefeitura do Recife", + "ref": "P407" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.929304, + -8.016857 + ] + }, + "id": "node/13112921062" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921063", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Simão Borba", + "operator": "Prefeitura do Recife", + "ref": "P406" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.925422, + -8.096667 + ] + }, + "id": "node/13112921063" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921064", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Chora Menino", + "operator": "Prefeitura do Recife", + "ref": "P405" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89503, + -8.060339 + ] + }, + "id": "node/13112921064" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921065", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça dos Taxistas", + "operator": "Prefeitura do Recife", + "ref": "P404" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.946227, + -8.118421 + ] + }, + "id": "node/13112921065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921066", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Dom Miguel Valverde 03", + "operator": "Prefeitura do Recife", + "ref": "P403" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892775, + -8.035682 + ] + }, + "id": "node/13112921066" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921067", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Dom Miguel Valverde 02", + "operator": "Prefeitura do Recife", + "ref": "P402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892489, + -8.035839 + ] + }, + "id": "node/13112921067" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921068", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Dom Miguel Valverde 01", + "operator": "Prefeitura do Recife", + "ref": "P401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892587, + -8.035414 + ] + }, + "id": "node/13112921068" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921069", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça João Pessoa de Queiroz", + "operator": "Prefeitura do Recife", + "ref": "P400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932783, + -8.067368 + ] + }, + "id": "node/13112921069" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921070", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Prof. Calazans", + "operator": "Prefeitura do Recife", + "ref": "P399" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.910226, + -8.050543 + ] + }, + "id": "node/13112921070" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921071", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça dos Iburenses - Academia Recife", + "operator": "Prefeitura do Recife", + "ref": "P398" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.94702, + -8.117503 + ] + }, + "id": "node/13112921071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921072", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Engenheiro Edinaldo Miranda de Oliveira", + "operator": "Prefeitura do Recife", + "ref": "P397" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89256, + -8.034676 + ] + }, + "id": "node/13112921072" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921073", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Ilha do Leite", + "operator": "Prefeitura do Recife", + "ref": "P396" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.893419, + -8.0666 + ] + }, + "id": "node/13112921073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921074", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jardim América", + "operator": "Prefeitura do Recife", + "ref": "P395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.919859, + -8.105865 + ] + }, + "id": "node/13112921074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921075", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça do Bongi 02", + "operator": "Prefeitura do Recife", + "ref": "P394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.921888, + -8.063776 + ] + }, + "id": "node/13112921075" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921076", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Estação Afogados 02", + "operator": "Prefeitura do Recife", + "ref": "P393" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906456, + -8.077713 + ] + }, + "id": "node/13112921076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921077", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Estação Afogados 01", + "operator": "Prefeitura do Recife", + "ref": "P392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.90643, + -8.077317 + ] + }, + "id": "node/13112921077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921078", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Vitória", + "operator": "Prefeitura do Recife", + "ref": "P391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.93423, + -8.094366 + ] + }, + "id": "node/13112921078" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921079", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jornalista Anibal Fernandes", + "operator": "Prefeitura do Recife", + "ref": "P390" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.93012, + -8.093229 + ] + }, + "id": "node/13112921079" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921080", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Manfredo Nigro", + "operator": "Prefeitura do Recife", + "ref": "P389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932518, + -8.093423 + ] + }, + "id": "node/13112921080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921081", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça José Cecílio de Lira", + "operator": "Prefeitura do Recife", + "ref": "P388" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.933347, + -8.094168 + ] + }, + "id": "node/13112921081" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921082", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça São Braz", + "operator": "Prefeitura do Recife", + "ref": "P387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931675, + -8.094303 + ] + }, + "id": "node/13112921082" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921083", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Eduardo Cardoso", + "operator": "Prefeitura do Recife", + "ref": "P386" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.93143, + -8.09648 + ] + }, + "id": "node/13112921083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921084", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça 4 de Outubro", + "operator": "Prefeitura do Recife", + "ref": "P385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.938989, + -8.095365 + ] + }, + "id": "node/13112921084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921085", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Nossa Senhora de Lourdes", + "operator": "Prefeitura do Recife", + "ref": "P384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.943836, + -8.095502 + ] + }, + "id": "node/13112921085" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921086", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado de Areias", + "operator": "Prefeitura do Recife", + "ref": "P383" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.933831, + -8.089414 + ] + }, + "id": "node/13112921086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921087", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Lavadeira", + "operator": "Prefeitura do Recife", + "ref": "P382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.936713, + -8.094601 + ] + }, + "id": "node/13112921087" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921088", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Campo de Areias", + "operator": "Prefeitura do Recife", + "ref": "P381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.936488, + -8.101343 + ] + }, + "id": "node/13112921088" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921089", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça João Stanislau", + "operator": "Prefeitura do Recife", + "ref": "P380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.938385, + -8.097552 + ] + }, + "id": "node/13112921089" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921090", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Hospital Eduardo Campos da Pessoa Idosa", + "operator": "Prefeitura do Recife", + "ref": "P379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.928055, + -8.10024 + ] + }, + "id": "node/13112921090" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921091", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Hospital Otávio de Freitas", + "operator": "Prefeitura do Recife", + "ref": "P378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.961801, + -8.086909 + ] + }, + "id": "node/13112921091" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921092", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Professora Maria da Paz Brandão Alves", + "operator": "Prefeitura do Recife", + "ref": "P377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.96149, + -8.08243 + ] + }, + "id": "node/13112921092" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921093", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação Tejipió", + "operator": "Prefeitura do Recife", + "ref": "P376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.956638, + -8.090533 + ] + }, + "id": "node/13112921093" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921094", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Cavalaria 02", + "operator": "Prefeitura do Recife", + "ref": "P375" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927558, + -8.065398 + ] + }, + "id": "node/13112921094" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921095", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Cavalaria 01", + "operator": "Prefeitura do Recife", + "ref": "P374" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927059, + -8.065575 + ] + }, + "id": "node/13112921095" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921096", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "EREM Professora Helena Pugó", + "operator": "Prefeitura do Recife", + "ref": "P373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932112, + -8.067679 + ] + }, + "id": "node/13112921096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921097", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de San Martin (Praça da Infância)", + "operator": "Prefeitura do Recife", + "ref": "P372" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.928825, + -8.071083 + ] + }, + "id": "node/13112921097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921098", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do El Salvador", + "operator": "Prefeitura do Recife", + "ref": "P371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.940126, + -8.08056 + ] + }, + "id": "node/13112921098" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921099", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Hospital da Mulher (Emergência)", + "operator": "Prefeitura do Recife", + "ref": "P370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.940573, + -8.071672 + ] + }, + "id": "node/13112921099" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921100", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Hospital da Mulher (Acesso Funcionários)", + "operator": "Prefeitura do Recife", + "ref": "P369" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.94103, + -8.070992 + ] + }, + "id": "node/13112921100" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921101", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Hospital da Mulher (Administração)", + "operator": "Prefeitura do Recife", + "ref": "P368" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.940774, + -8.072143 + ] + }, + "id": "node/13112921101" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921102", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "T.I Largo da Paz", + "operator": "Prefeitura do Recife", + "ref": "P367" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904849, + -8.081301 + ] + }, + "id": "node/13112921102" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921103", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Professor Antônio de Brito Alves", + "operator": "Prefeitura do Recife", + "ref": "P366" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.917902, + -8.073999 + ] + }, + "id": "node/13112921103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921104", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Maternidade Professor Bandeira Filho", + "operator": "Prefeitura do Recife", + "ref": "P365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.911157, + -8.079081 + ] + }, + "id": "node/13112921104" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921105", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado de Afogados", + "operator": "Prefeitura do Recife", + "ref": "P364" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.905679, + -8.07812 + ] + }, + "id": "node/13112921105" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921106", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Calçada do metrô de Afogados", + "operator": "Prefeitura do Recife", + "ref": "P363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906812, + -8.077758 + ] + }, + "id": "node/13112921106" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921107", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Calçada do Sport Clube do Recife", + "operator": "Prefeitura do Recife", + "ref": "P362" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.902053, + -8.061897 + ] + }, + "id": "node/13112921107" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921108", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Restaurante Universitário (UFPE)", + "operator": "Prefeitura do Recife", + "ref": "P361" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.953117, + -8.050748 + ] + }, + "id": "node/13112921108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921109", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Reitoria UFPE", + "operator": "Prefeitura do Recife", + "ref": "P360" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9457, + -8.052232 + ] + }, + "id": "node/13112921109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921110", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Cemitério da Várzea", + "operator": "Prefeitura do Recife", + "ref": "P359" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.952951, + -8.046323 + ] + }, + "id": "node/13112921110" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921111", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Várzea", + "operator": "Prefeitura do Recife", + "ref": "P358" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.959424, + -8.048868 + ] + }, + "id": "node/13112921111" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921112", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Pinto Damásio", + "operator": "Prefeitura do Recife", + "ref": "P357" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.959424, + -8.048726 + ] + }, + "id": "node/13112921112" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921113", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Melhor Cantinho da Cidade", + "operator": "Prefeitura do Recife", + "ref": "P356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.95816, + -8.050249 + ] + }, + "id": "node/13112921113" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921114", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Rosário", + "operator": "Prefeitura do Recife", + "ref": "P355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.958382, + -8.050628 + ] + }, + "id": "node/13112921114" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921115", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Ascendino Neves", + "operator": "Prefeitura do Recife", + "ref": "P354" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907993, + -8.04109 + ] + }, + "id": "node/13112921115" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921116", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Bom Pastor", + "operator": "Prefeitura do Recife", + "ref": "P353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.940214, + -8.048151 + ] + }, + "id": "node/13112921116" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921117", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Estevão Sá", + "operator": "Prefeitura do Recife", + "ref": "P352" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.947151, + -8.036372 + ] + }, + "id": "node/13112921117" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921118", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Cosme Viana", + "operator": "Prefeitura do Recife", + "ref": "P351" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.908901, + -8.065535 + ] + }, + "id": "node/13112921118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921119", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Professor Leal de Barros", + "operator": "Prefeitura do Recife", + "ref": "P350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.943977, + -8.056172 + ] + }, + "id": "node/13112921119" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921120", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Luiz de Lacerda", + "operator": "Prefeitura do Recife", + "ref": "P349" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.943348, + -8.03624 + ] + }, + "id": "node/13112921120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921121", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Nova Esperança", + "operator": "Prefeitura do Recife", + "ref": "P348" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932589, + -8.030911 + ] + }, + "id": "node/13112921121" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921122", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Cordislândia", + "operator": "Prefeitura do Recife", + "ref": "P347" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.934944, + -8.039667 + ] + }, + "id": "node/13112921122" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921123", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Professor Coelho de Almeida", + "operator": "Prefeitura do Recife", + "ref": "P346" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931443, + -8.045391 + ] + }, + "id": "node/13112921123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921124", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Berardo", + "operator": "Prefeitura do Recife", + "ref": "P345" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.912518, + -8.056582 + ] + }, + "id": "node/13112921124" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921125", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Chesf", + "operator": "Prefeitura do Recife", + "ref": "P344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931021, + -8.062798 + ] + }, + "id": "node/13112921125" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921126", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Praça Luiz Gonzaga", + "operator": "Prefeitura do Recife", + "ref": "P343" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932018, + -8.06513 + ] + }, + "id": "node/13112921126" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921127", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Paz Arcebispo Dom Helder Câmara", + "operator": "Prefeitura do Recife", + "ref": "P342" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.933376, + -8.066907 + ] + }, + "id": "node/13112921127" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921128", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Fé", + "operator": "Prefeitura do Recife", + "ref": "P341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927325, + -8.056242 + ] + }, + "id": "node/13112921128" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921129", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "COMPAZ Escritor Ariano Suassuna", + "operator": "Prefeitura do Recife", + "ref": "P340" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.92624, + -8.059943 + ] + }, + "id": "node/13112921129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921130", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "COMPAZ Escritor Ariano Suassuna", + "operator": "Prefeitura do Recife", + "ref": "P339" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.926057, + -8.06 + ] + }, + "id": "node/13112921130" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921131", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "COMPAZ Escritor Ariano Suassuna", + "operator": "Prefeitura do Recife", + "ref": "P338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.926036, + -8.059568 + ] + }, + "id": "node/13112921131" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921132", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Áureo Xavier", + "operator": "Prefeitura do Recife", + "ref": "P337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.926897, + -8.050059 + ] + }, + "id": "node/13112921132" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921133", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Dom José Pereira Alves", + "operator": "Prefeitura do Recife", + "ref": "P336" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.925347, + -8.049242 + ] + }, + "id": "node/13112921133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921134", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Batista da Silva", + "operator": "Prefeitura do Recife", + "ref": "P335" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.908331, + -8.04248 + ] + }, + "id": "node/13112921134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921135", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Gregório Bezerra", + "operator": "Prefeitura do Recife", + "ref": "P334" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.915332, + -8.044783 + ] + }, + "id": "node/13112921135" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921136", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça José da Mota Silveira", + "operator": "Prefeitura do Recife", + "ref": "P333" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.903803, + -8.056312 + ] + }, + "id": "node/13112921136" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921137", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Domingos Giovanetti", + "operator": "Prefeitura do Recife", + "ref": "P332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904332, + -8.047389 + ] + }, + "id": "node/13112921137" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921138", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Paulo Freire", + "operator": "Prefeitura do Recife", + "ref": "P331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904993, + -8.049865 + ] + }, + "id": "node/13112921138" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921139", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estádio do Arruda", + "operator": "Prefeitura do Recife", + "ref": "P330" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892724, + -8.026138 + ] + }, + "id": "node/13112921139" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921140", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de Campo Grande", + "operator": "Prefeitura do Recife", + "ref": "P329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877331, + -8.032432 + ] + }, + "id": "node/13112921140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921141", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Campo de Concentração de Treinamento de Futebol Internacional do Brasil", + "operator": "Prefeitura do Recife", + "ref": "P328" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.922249, + -8.010314 + ] + }, + "id": "node/13112921141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921142", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Augusto Rodrigues", + "operator": "Prefeitura do Recife", + "ref": "P327" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.885128, + -8.039258 + ] + }, + "id": "node/13112921142" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921143", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra do Viaduto João Tude Melo", + "operator": "Prefeitura do Recife", + "ref": "P326" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.910298, + -8.037617 + ] + }, + "id": "node/13112921143" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921144", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Dr. José Vilela 02", + "operator": "Prefeitura do Recife", + "ref": "P325" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.911385, + -8.034301 + ] + }, + "id": "node/13112921144" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921145", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Dr. José Vilela 01", + "operator": "Prefeitura do Recife", + "ref": "P324" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.911542, + -8.034201 + ] + }, + "id": "node/13112921145" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921146", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Maria José dos Santos", + "operator": "Prefeitura do Recife", + "ref": "P323" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.88756, + -8.01786 + ] + }, + "id": "node/13112921146" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921147", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Newton Vaz", + "operator": "Prefeitura do Recife", + "ref": "P322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.893929, + -8.025131 + ] + }, + "id": "node/13112921147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921148", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Maria da Conceição de Barros", + "operator": "Prefeitura do Recife", + "ref": "P321" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89415, + -8.008204 + ] + }, + "id": "node/13112921148" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921149", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Embaixador Gilberto Amado", + "operator": "Prefeitura do Recife", + "ref": "P320" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887709, + -8.032715 + ] + }, + "id": "node/13112921149" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921150", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de Apipucos", + "operator": "Prefeitura do Recife", + "ref": "P319" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.93407, + -8.021096 + ] + }, + "id": "node/13112921150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921151", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Maternidade Professor Bandeira Filho", + "operator": "Prefeitura do Recife", + "ref": "P317" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.886474, + -8.031968 + ] + }, + "id": "node/13112921151" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921152", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Secretaria Executiva de Vigilência em Saúde SEVS", + "operator": "Prefeitura do Recife", + "ref": "P316" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887033, + -8.051501 + ] + }, + "id": "node/13112921152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921153", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Josenildo Lins", + "operator": "Prefeitura do Recife", + "ref": "P315" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.909362, + -8.026665 + ] + }, + "id": "node/13112921153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921154", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Castro Alves", + "operator": "Prefeitura do Recife", + "ref": "P314" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887137, + -8.039819 + ] + }, + "id": "node/13112921154" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921155", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Torreão", + "operator": "Prefeitura do Recife", + "ref": "P313" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883142, + -8.041221 + ] + }, + "id": "node/13112921155" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921156", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de Vinte de Julho", + "operator": "Prefeitura do Recife", + "ref": "P312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879121, + -8.025585 + ] + }, + "id": "node/13112921156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921157", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Campo Campina de Barreto", + "operator": "Prefeitura do Recife", + "ref": "P311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881429, + -8.016671 + ] + }, + "id": "node/13112921157" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921158", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "USF Prof. Antônio Francisco Areias", + "operator": "Prefeitura do Recife", + "ref": "P310" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877107, + -8.02185 + ] + }, + "id": "node/13112921158" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921159", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Josélia", + "operator": "Prefeitura do Recife", + "ref": "P309" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.926694, + -8.00283 + ] + }, + "id": "node/13112921159" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921160", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Desenhista Eulino Santos", + "operator": "Prefeitura do Recife", + "ref": "P308" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883099, + -8.022786 + ] + }, + "id": "node/13112921160" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921161", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Calçada da Av. João de Barros", + "operator": "Prefeitura do Recife", + "ref": "P307" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.891949, + -8.038326 + ] + }, + "id": "node/13112921161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921162", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Deputado Fabio Correa", + "operator": "Prefeitura do Recife", + "ref": "P306" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906336, + -8.022375 + ] + }, + "id": "node/13112921162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921163", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra do Vasco", + "operator": "Prefeitura do Recife", + "ref": "P305" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.921227, + -8.012574 + ] + }, + "id": "node/13112921163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921164", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Monteiro", + "operator": "Prefeitura do Recife", + "ref": "P304" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.928384, + -8.027899 + ] + }, + "id": "node/13112921164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921165", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jorn. Francisco Pessoa de Queiroz", + "operator": "Prefeitura do Recife", + "ref": "P303" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913993, + -8.037022 + ] + }, + "id": "node/13112921165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921166", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Otávio de Freitas", + "operator": "Prefeitura do Recife", + "ref": "P302" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.900583, + -8.057962 + ] + }, + "id": "node/13112921166" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921167", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "name": "Mercado da Encruzilhada (Belém)", + "operator": "Prefeitura do Recife", + "ref": "P301" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892145, + -8.036484 + ] + }, + "id": "node/13112921167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921168", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Marcelino Champagnat", + "operator": "Prefeitura do Recife", + "ref": "P300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.900547, + -8.041828 + ] + }, + "id": "node/13112921168" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921169", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Elvira de Souza", + "operator": "Prefeitura do Recife", + "ref": "P299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.901488, + -8.043824 + ] + }, + "id": "node/13112921169" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921170", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Flor de Santana", + "operator": "Prefeitura do Recife", + "ref": "P298" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.917937, + -8.038042 + ] + }, + "id": "node/13112921170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921171", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Everaldo Bidou Lambbe", + "operator": "Prefeitura do Recife", + "ref": "P297" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.911113, + -8.038094 + ] + }, + "id": "node/13112921171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921172", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Compositor Antônio Maria", + "operator": "Prefeitura do Recife", + "ref": "P296" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.91385, + -8.040173 + ] + }, + "id": "node/13112921172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921173", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Vagner Love", + "operator": "Prefeitura do Recife", + "ref": "P295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.922475, + -8.037233 + ] + }, + "id": "node/13112921173" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921174", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Municipal da Mangabeira", + "operator": "Prefeitura do Recife", + "ref": "P294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.900727, + -8.02397 + ] + }, + "id": "node/13112921174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921175", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Canteiro Central da Avenida José Américo", + "operator": "Prefeitura do Recife", + "ref": "P293" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931229, + -8.010048 + ] + }, + "id": "node/13112921175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921176", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Sr. Bartolomeu", + "operator": "Prefeitura do Recife", + "ref": "P292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932825, + -8.0178 + ] + }, + "id": "node/13112921176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921177", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Centro de Saúde Dr. Luiz Wilson", + "operator": "Prefeitura do Recife", + "ref": "P291" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.904211, + -8.021005 + ] + }, + "id": "node/13112921177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921178", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Largo Bomba do Hemetério", + "operator": "Prefeitura do Recife", + "ref": "P290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.903306, + -8.020276 + ] + }, + "id": "node/13112921178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921179", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado da Encruzilhada", + "operator": "Prefeitura do Recife", + "ref": "P289" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892381, + -8.036496 + ] + }, + "id": "node/13112921179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921180", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Marcos Bocoiô", + "operator": "Prefeitura do Recife", + "ref": "P288" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.90648, + -8.029259 + ] + }, + "id": "node/13112921180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921181", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Amaro Albino Pimentel", + "operator": "Prefeitura do Recife", + "ref": "P287" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897958, + -8.030074 + ] + }, + "id": "node/13112921181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921182", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça na Rua Alice Tibiriçá", + "operator": "Prefeitura do Recife", + "ref": "P286" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882671, + -8.009851 + ] + }, + "id": "node/13112921182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921183", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça André Antunes", + "operator": "Prefeitura do Recife", + "ref": "P285" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883045, + -8.012874 + ] + }, + "id": "node/13112921183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921184", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça USF Irmã Terezinha", + "operator": "Prefeitura do Recife", + "ref": "P284" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877927, + -8.020391 + ] + }, + "id": "node/13112921184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921185", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Fundão", + "operator": "Prefeitura do Recife", + "ref": "P283" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.889461, + -8.014039 + ] + }, + "id": "node/13112921185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921186", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Estadual Prof. José dos Anjos", + "operator": "Prefeitura do Recife", + "ref": "P282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.916663, + -7.989077 + ] + }, + "id": "node/13112921186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921187", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "USF/ Praça Alto do Capitão", + "operator": "Prefeitura do Recife", + "ref": "P281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913872, + -7.999824 + ] + }, + "id": "node/13112921187" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921188", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Canavial", + "operator": "Prefeitura do Recife", + "ref": "P280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.901627, + -8.000872 + ] + }, + "id": "node/13112921188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921189", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Paulo Bernardo", + "operator": "Prefeitura do Recife", + "ref": "P279" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.898421, + -8.032335 + ] + }, + "id": "node/13112921189" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921190", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Ulisses Leon de Oliveira", + "operator": "Prefeitura do Recife", + "ref": "P278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8894026, + -8.0292462 + ] + }, + "id": "node/13112921190" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921191", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da rotatória", + "operator": "Prefeitura do Recife", + "ref": "P277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887623, + -8.028423 + ] + }, + "id": "node/13112921191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921192", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Sargento Pincel", + "operator": "Prefeitura do Recife", + "ref": "P276" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876334, + -8.025006 + ] + }, + "id": "node/13112921192" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921193", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Lindomar", + "operator": "Prefeitura do Recife", + "ref": "P275" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876512, + -8.025546 + ] + }, + "id": "node/13112921193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921194", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Dalceu", + "operator": "Prefeitura do Recife", + "ref": "P274" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881685, + -8.024248 + ] + }, + "id": "node/13112921194" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921195", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Márcio Condonga", + "operator": "Prefeitura do Recife", + "ref": "P273" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887708, + -8.049551 + ] + }, + "id": "node/13112921195" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921196", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Canteiro Central da Rua Othon Paraíso", + "operator": "Prefeitura do Recife", + "ref": "P272" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.88346, + -8.039759 + ] + }, + "id": "node/13112921196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921197", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Montreal", + "operator": "Prefeitura do Recife", + "ref": "P271" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877434, + -8.055833 + ] + }, + "id": "node/13112921197" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921198", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Restaurante Ôge", + "operator": "Prefeitura do Recife", + "ref": "P270" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880989, + -8.060789 + ] + }, + "id": "node/13112921198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921199", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque de Esculturas", + "operator": "Prefeitura do Recife", + "ref": "P269" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.870118, + -8.066052 + ] + }, + "id": "node/13112921199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921200", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Canteiro Central da Rua Othon Paraíso", + "operator": "Prefeitura do Recife", + "ref": "P268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883362, + -8.0405 + ] + }, + "id": "node/13112921200" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921201", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Le Parc 2", + "operator": "Prefeitura do Recife", + "ref": "P267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9044502, + -8.109552 + ] + }, + "id": "node/13112921201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921202", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça em frente a COMPESA", + "operator": "Prefeitura do Recife", + "ref": "P266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892814, + -8.07969 + ] + }, + "id": "node/13112921202" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921203", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de Joana Bezerra", + "operator": "Prefeitura do Recife", + "ref": "P265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.896521, + -8.070371 + ] + }, + "id": "node/13112921203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921204", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Pontilhão da Paissandu", + "operator": "Prefeitura do Recife", + "ref": "P264" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897482, + -8.062248 + ] + }, + "id": "node/13112921204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921205", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Derby", + "operator": "Prefeitura do Recife", + "ref": "P263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.898268, + -8.056429 + ] + }, + "id": "node/13112921205" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921206", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Catamaran", + "operator": "Prefeitura do Recife", + "ref": "P262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880251, + -8.072869 + ] + }, + "id": "node/13112921206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921207", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Le Parc", + "operator": "Prefeitura do Recife", + "ref": "P261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9037635, + -8.1111506 + ] + }, + "id": "node/13112921207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921208", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua da Carioca", + "operator": "Prefeitura do Recife", + "ref": "P260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876891, + -8.067243 + ] + }, + "id": "node/13112921208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921209", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Forte das Cinco Pontas", + "operator": "Prefeitura do Recife", + "ref": "P259" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880826, + -8.071375 + ] + }, + "id": "node/13112921209" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921210", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça dos Guerreiros", + "operator": "Prefeitura do Recife", + "ref": "P258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950094, + -8.115151 + ] + }, + "id": "node/13112921210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921211", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da UR5", + "operator": "Prefeitura do Recife", + "ref": "P257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.947362, + -8.130905 + ] + }, + "id": "node/13112921211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921212", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Campo Armador Antônio Moreno", + "operator": "Prefeitura do Recife", + "ref": "P255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.886124, + -8.042649 + ] + }, + "id": "node/13112921212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921213", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Capitão", + "operator": "Prefeitura do Recife", + "ref": "P254" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877948, + -8.054155 + ] + }, + "id": "node/13112921213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921214", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Museu Forte do Brum", + "operator": "Prefeitura do Recife", + "ref": "P253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.870974, + -8.053399 + ] + }, + "id": "node/13112921214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921215", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Bacurau - Galo", + "operator": "Prefeitura do Recife", + "ref": "P252" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877703, + -8.054352 + ] + }, + "id": "node/13112921215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921216", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Rua da Palma", + "operator": "Prefeitura do Recife", + "ref": "P251" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880844, + -8.065571 + ] + }, + "id": "node/13112921216" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921217", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Igreja de Nossa Senhora das Fronteiras", + "operator": "Prefeitura do Recife", + "ref": "P250" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89641, + -8.058486 + ] + }, + "id": "node/13112921217" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921218", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua Imperatriz Tereza Cristina (SECR)", + "operator": "Prefeitura do Recife", + "ref": "P249" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883058, + -8.063276 + ] + }, + "id": "node/13112921218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921219", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra da Praça Joana Bezerra", + "operator": "Prefeitura do Recife", + "ref": "P248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897201, + -8.069119 + ] + }, + "id": "node/13112921219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921220", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça na Rua Velha", + "operator": "Prefeitura do Recife", + "ref": "P247" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.885324, + -8.064536 + ] + }, + "id": "node/13112921220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921221", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça na Rua Ibiporã", + "operator": "Prefeitura do Recife", + "ref": "P246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.899747, + -8.072545 + ] + }, + "id": "node/13112921221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921222", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jenner de Souza", + "operator": "Prefeitura do Recife", + "ref": "P245" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.900287, + -8.054847 + ] + }, + "id": "node/13112921222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921223", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Praça Dom Bosco 02", + "operator": "Prefeitura do Recife", + "ref": "P244" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.893497, + -8.063156 + ] + }, + "id": "node/13112921223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921224", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Cássia Kiss de Lima", + "operator": "Prefeitura do Recife", + "ref": "P243" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.900274, + -8.07002 + ] + }, + "id": "node/13112921224" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921225", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Praça na Rua Epaminondas de Melo 02", + "operator": "Prefeitura do Recife", + "ref": "P242" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.898203, + -8.060148 + ] + }, + "id": "node/13112921225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921226", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Novo Mangue", + "operator": "Prefeitura do Recife", + "ref": "P241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.903516, + -8.075248 + ] + }, + "id": "node/13112921226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921227", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua dos Amores", + "operator": "Prefeitura do Recife", + "ref": "P240" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.872742, + -8.061931 + ] + }, + "id": "node/13112921227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921228", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua do Bom Jesus", + "operator": "Prefeitura do Recife", + "ref": "P239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.871469, + -8.062339 + ] + }, + "id": "node/13112921228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921229", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra de Futsal da Aurora", + "operator": "Prefeitura do Recife", + "ref": "P237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876785, + -8.054688 + ] + }, + "id": "node/13112921229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921230", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Aurora", + "operator": "Prefeitura do Recife", + "ref": "P236" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.874193, + -8.050858 + ] + }, + "id": "node/13112921230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921231", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Quadra Kássio Rinaldo", + "operator": "Prefeitura do Recife", + "ref": "P235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881934, + -8.041654 + ] + }, + "id": "node/13112921231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921232", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Agamenon (Ilha do Joaneiro)", + "operator": "Prefeitura do Recife", + "ref": "P234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881279, + -8.04036 + ] + }, + "id": "node/13112921232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921233", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Ministério do Trabalho e Emprego (MTE)", + "operator": "Prefeitura do Recife", + "ref": "P233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.88729, + -8.043009 + ] + }, + "id": "node/13112921233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921234", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Igreja de Nossa Sra do Rosário dos Pretos", + "operator": "Prefeitura do Recife", + "ref": "P232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877865, + -8.065145 + ] + }, + "id": "node/13112921234" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921235", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Igreja de São Gonçalo", + "operator": "Prefeitura do Recife", + "ref": "P231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.889557, + -8.064563 + ] + }, + "id": "node/13112921235" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921236", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "CEHAB", + "operator": "Prefeitura do Recife", + "ref": "P230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879605, + -8.038264 + ] + }, + "id": "node/13112921236" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921237", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Casa da Cultura", + "operator": "Prefeitura do Recife", + "ref": "P229" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882639, + -8.066281 + ] + }, + "id": "node/13112921237" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921238", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Campo do Onze", + "operator": "Prefeitura do Recife", + "ref": "P228" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878633, + -8.040533 + ] + }, + "id": "node/13112921238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921239", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Agência Caixa (Rua Dr. Leopoldo Lins)", + "operator": "Prefeitura do Recife", + "ref": "P227" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89253, + -8.048825 + ] + }, + "id": "node/13112921239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921240", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Otília", + "operator": "Prefeitura do Recife", + "ref": "P226" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.893086, + -8.049572 + ] + }, + "id": "node/13112921240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921241", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Numa Pompilho", + "operator": "Prefeitura do Recife", + "ref": "P225" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883053, + -8.047908 + ] + }, + "id": "node/13112921241" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921242", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Campo Santo (UTEC)", + "operator": "Prefeitura do Recife", + "ref": "P223" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882972, + -8.050882 + ] + }, + "id": "node/13112921242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921243", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "INSS (Rua dos Palmares)", + "operator": "Prefeitura do Recife", + "ref": "P222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.884051, + -8.052544 + ] + }, + "id": "node/13112921243" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921244", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua João Fernandes Vieira", + "operator": "Prefeitura do Recife", + "ref": "P220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.890047, + -8.056195 + ] + }, + "id": "node/13112921244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921245", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Liceu/Nóbrega", + "operator": "Prefeitura do Recife", + "ref": "P219" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887995, + -8.055856 + ] + }, + "id": "node/13112921245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921246", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua Corredor do Bispo", + "operator": "Prefeitura do Recife", + "ref": "P218" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887004, + -8.057618 + ] + }, + "id": "node/13112921246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921247", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua Duque de Caxias", + "operator": "Prefeitura do Recife", + "ref": "P217" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877461, + -8.064372 + ] + }, + "id": "node/13112921247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921248", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Nelson Ferreira", + "operator": "Prefeitura do Recife", + "ref": "P216" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882917, + -8.052985 + ] + }, + "id": "node/13112921248" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921249", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Sérgio Loreto", + "operator": "Prefeitura do Recife", + "ref": "P215" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.884976, + -8.072245 + ] + }, + "id": "node/13112921249" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921250", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "ETE Almirante Soares Dutra", + "operator": "Prefeitura do Recife", + "ref": "P213" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.875797, + -8.047268 + ] + }, + "id": "node/13112921250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921251", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Av. Dantas Barreto (Magno Equipamentos)", + "operator": "Prefeitura do Recife", + "ref": "P212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882247, + -8.070524 + ] + }, + "id": "node/13112921251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921252", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Av. Dantas Barreto (Armarinho Mundial)", + "operator": "Prefeitura do Recife", + "ref": "P211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881156, + -8.069169 + ] + }, + "id": "node/13112921252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921253", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Travessa do Arsenal da Guerra", + "operator": "Prefeitura do Recife", + "ref": "P210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876882, + -8.066582 + ] + }, + "id": "node/13112921253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921254", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Teatro Santa Izabel", + "operator": "Prefeitura do Recife", + "ref": "P209" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878125, + -8.060864 + ] + }, + "id": "node/13112921254" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921255", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua Sete de Setembro", + "operator": "Prefeitura do Recife", + "ref": "P208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883783, + -8.062773 + ] + }, + "id": "node/13112921255" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921256", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua Matias de Albuquerque", + "operator": "Prefeitura do Recife", + "ref": "P207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878953, + -8.063946 + ] + }, + "id": "node/13112921256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921257", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua Imperatriz Tereza Cristina (UTEC)", + "operator": "Prefeitura do Recife", + "ref": "P206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.884272, + -8.062917 + ] + }, + "id": "node/13112921257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921258", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Cais do Sertão 02", + "operator": "Prefeitura do Recife", + "ref": "P204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.869912, + -8.0597 + ] + }, + "id": "node/13112921258" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921259", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Prof. Agamenon Magalhães", + "operator": "Prefeitura do Recife", + "ref": "P203" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882224, + -8.04375 + ] + }, + "id": "node/13112921259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921260", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Onze de Junho", + "operator": "Prefeitura do Recife", + "ref": "P202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.874673, + -8.044687 + ] + }, + "id": "node/13112921260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921261", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Pilar", + "operator": "Prefeitura do Recife", + "ref": "P201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.869899, + -8.056903 + ] + }, + "id": "node/13112921261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921262", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Ascenso Ferreira", + "operator": "Prefeitura do Recife", + "ref": "P200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.873707, + -8.06248 + ] + }, + "id": "node/13112921262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921263", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Dezessete", + "operator": "Prefeitura do Recife", + "ref": "P199" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876884, + -8.065236 + ] + }, + "id": "node/13112921263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921264", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça 13 de Maio", + "operator": "Prefeitura do Recife", + "ref": "P198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883036, + -8.057172 + ] + }, + "id": "node/13112921264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921265", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado Público Santo Amaro", + "operator": "Prefeitura do Recife", + "ref": "P195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876554, + -8.046823 + ] + }, + "id": "node/13112921265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921266", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Sizenando Silveira", + "operator": "Prefeitura do Recife", + "ref": "P194" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881862, + -8.054547 + ] + }, + "id": "node/13112921266" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921267", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "DER", + "operator": "Prefeitura do Recife", + "ref": "P193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.875872, + -8.045735 + ] + }, + "id": "node/13112921267" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921268", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Centro POP", + "operator": "Prefeitura do Recife", + "ref": "P192" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876503, + -8.064019 + ] + }, + "id": "node/13112921268" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921269", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça VDC", + "operator": "Prefeitura do Recife", + "ref": "P191" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932366, + -8.094894 + ] + }, + "id": "node/13112921269" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921270", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Sena", + "operator": "Prefeitura do Recife", + "ref": "P190" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.933449, + -8.095948 + ] + }, + "id": "node/13112921270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921271", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Ministro João Gonçalves de Souza", + "operator": "Prefeitura do Recife", + "ref": "P189" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.943445, + -8.047958 + ] + }, + "id": "node/13112921271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921272", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Bom Partor", + "operator": "Prefeitura do Recife", + "ref": "P188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.939783, + -8.049256 + ] + }, + "id": "node/13112921272" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921273", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Brasilit (Praça do Caxito - Várzea)", + "operator": "Prefeitura do Recife", + "ref": "P187" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950275, + -8.04175 + ] + }, + "id": "node/13112921273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921274", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação Santa Luzia", + "operator": "Prefeitura do Recife", + "ref": "P186" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.929929, + -8.084265 + ] + }, + "id": "node/13112921274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921275", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação Ipiranga", + "operator": "Prefeitura do Recife", + "ref": "P185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913458, + -8.077304 + ] + }, + "id": "node/13112921275" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921276", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Estação Imbiribeira", + "operator": "Prefeitura do Recife", + "ref": "P183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907617, + -8.090517 + ] + }, + "id": "node/13112921276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921277", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Oswaldo Cruz", + "operator": "Prefeitura do Recife", + "ref": "P182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.891262, + -8.05476 + ] + }, + "id": "node/13112921277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921278", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça General Carlos Pinto (Tacaruna)", + "operator": "Prefeitura do Recife", + "ref": "P181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.871947, + -8.039867 + ] + }, + "id": "node/13112921278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921279", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Souto Filho", + "operator": "Prefeitura do Recife", + "ref": "P180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.902955, + -8.036143 + ] + }, + "id": "node/13112921279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921280", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Parque Amorim", + "operator": "Prefeitura do Recife", + "ref": "P179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894945, + -8.051925 + ] + }, + "id": "node/13112921280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921281", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Vila do Vintém", + "operator": "Prefeitura do Recife", + "ref": "P178" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.910353, + -8.038023 + ] + }, + "id": "node/13112921281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921282", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Creche Escola Dep. Alcides Teixeira", + "operator": "Prefeitura do Recife", + "ref": "P177" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882806, + -8.043896 + ] + }, + "id": "node/13112921282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921283", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Terminal Engenho do Meio", + "operator": "Prefeitura do Recife", + "ref": "P176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.945896, + -8.058707 + ] + }, + "id": "node/13112921283" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921284", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Heróis da Restauração", + "operator": "Prefeitura do Recife", + "ref": "P175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.935715, + -8.097174 + ] + }, + "id": "node/13112921284" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921285", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "SESC de Santo Amaro", + "operator": "Prefeitura do Recife", + "ref": "P174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882671, + -8.049417 + ] + }, + "id": "node/13112921285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921286", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "COMPAZ Dom Helder Câmara", + "operator": "Prefeitura do Recife", + "ref": "P173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.89552, + -8.073515 + ] + }, + "id": "node/13112921286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921287", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "COMPAZ Dom Helder Câmara", + "operator": "Prefeitura do Recife", + "ref": "P172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.895386, + -8.073605 + ] + }, + "id": "node/13112921287" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921288", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Jordão", + "operator": "Prefeitura do Recife", + "ref": "P171" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.936864, + -8.136465 + ] + }, + "id": "node/13112921288" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921289", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jordão Alto", + "operator": "Prefeitura do Recife", + "ref": "P170" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.941472, + -8.134298 + ] + }, + "id": "node/13112921289" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921290", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo praça da Várzea", + "operator": "Prefeitura do Recife", + "ref": "P169" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.959592, + -8.049448 + ] + }, + "id": "node/13112921290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921291", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jacarezinho", + "operator": "Prefeitura do Recife", + "ref": "P168" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882935, + -8.018425 + ] + }, + "id": "node/13112921291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921292", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Prefeitura do Recife", + "operator": "Prefeitura do Recife", + "ref": "P167" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.872014, + -8.054396 + ] + }, + "id": "node/13112921292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921293", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Caxito (san martin)", + "operator": "Prefeitura do Recife", + "ref": "P166" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931499, + -8.075173 + ] + }, + "id": "node/13112921293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921294", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Orla de Brasília Teimosa 03", + "operator": "Prefeitura do Recife", + "ref": "P165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878013, + -8.0849 + ] + }, + "id": "node/13112921294" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921295", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Orla de Brasília Teimosa 02", + "operator": "Prefeitura do Recife", + "ref": "P164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879131, + -8.087805 + ] + }, + "id": "node/13112921295" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921296", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Orla de Brasília Teimosa 01", + "operator": "Prefeitura do Recife", + "ref": "P163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877466, + -8.082998 + ] + }, + "id": "node/13112921296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921297", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Largo da Paz", + "operator": "Prefeitura do Recife", + "ref": "P162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906305, + -8.08061 + ] + }, + "id": "node/13112921297" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921298", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Onildo Almeida", + "operator": "Prefeitura do Recife", + "ref": "P161" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879427, + -8.018555 + ] + }, + "id": "node/13112921298" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921299", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Capiba - Cajueiro", + "operator": "Prefeitura do Recife", + "ref": "P160" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.885232, + -8.008985 + ] + }, + "id": "node/13112921299" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921300", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Mago Jefferson", + "operator": "Prefeitura do Recife", + "ref": "P159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879546, + -8.021061 + ] + }, + "id": "node/13112921300" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921301", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Sebo", + "operator": "Prefeitura do Recife", + "ref": "P158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878815, + -8.063005 + ] + }, + "id": "node/13112921301" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921302", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua do Livramento", + "operator": "Prefeitura do Recife", + "ref": "P157" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877726, + -8.066597 + ] + }, + "id": "node/13112921302" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921303", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Praça do Salgueiro", + "operator": "Prefeitura do Recife", + "ref": "P156" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.938078, + -8.042365 + ] + }, + "id": "node/13112921303" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921304", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "PROCAPE", + "operator": "Prefeitura do Recife", + "ref": "P155" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887586, + -8.049569 + ] + }, + "id": "node/13112921304" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921305", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Lagoa do Araçá", + "operator": "Prefeitura do Recife", + "ref": "P154" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.916198, + -8.092784 + ] + }, + "id": "node/13112921305" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921306", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Jarbas Pernambucano", + "operator": "Prefeitura do Recife", + "ref": "P153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883655, + -8.011007 + ] + }, + "id": "node/13112921306" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921307", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Santos Dumont", + "operator": "Prefeitura do Recife", + "ref": "P152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894812, + -8.030564 + ] + }, + "id": "node/13112921307" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921308", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Instituto Capibaribe", + "operator": "Prefeitura do Recife", + "ref": "P151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.901771, + -8.050326 + ] + }, + "id": "node/13112921308" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921309", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Sítio da Trindade", + "operator": "Prefeitura do Recife", + "ref": "P150" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.912128, + -8.029036 + ] + }, + "id": "node/13112921309" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921310", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Largo Dom Luiz", + "operator": "Prefeitura do Recife", + "ref": "P149" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.917293, + -8.02077 + ] + }, + "id": "node/13112921310" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921311", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Lavadeiras 02", + "operator": "Prefeitura do Recife", + "ref": "P148" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.937115, + -8.094025 + ] + }, + "id": "node/13112921311" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921312", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo IPSEP", + "operator": "Prefeitura do Recife", + "ref": "P147" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.918908, + -8.116744 + ] + }, + "id": "node/13112921312" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921313", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Aurora 01", + "operator": "Prefeitura do Recife", + "ref": "P146" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879225, + -8.05854 + ] + }, + "id": "node/13112921313" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921314", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Vila Um Por Todos", + "operator": "Prefeitura do Recife", + "ref": "P145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.922394, + -8.010338 + ] + }, + "id": "node/13112921314" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921315", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Campo do Quinze", + "operator": "Prefeitura do Recife", + "ref": "P144" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931329, + -8.058297 + ] + }, + "id": "node/13112921315" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921316", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque Arraial Novo do Bom Jesus", + "operator": "Prefeitura do Recife", + "ref": "P143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.930798, + -8.057218 + ] + }, + "id": "node/13112921316" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921317", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Creche Municipal Menino Jesus da Bomba Grande", + "operator": "Prefeitura do Recife", + "ref": "P141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927898, + -8.041813 + ] + }, + "id": "node/13112921317" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921318", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Lagoa do Araçá", + "operator": "Prefeitura do Recife", + "ref": "P140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913907, + -8.096051 + ] + }, + "id": "node/13112921318" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921319", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Engenheiro Umberto Gondim", + "operator": "Prefeitura do Recife", + "ref": "P139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.884016, + -8.084774 + ] + }, + "id": "node/13112921319" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921320", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Colégio Apoio Recife", + "operator": "Prefeitura do Recife", + "ref": "P138" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913769, + -8.029909 + ] + }, + "id": "node/13112921320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921321", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Sudene / Lindolfo Color", + "operator": "Prefeitura do Recife", + "ref": "P137" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.944924, + -8.051418 + ] + }, + "id": "node/13112921321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921322", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade - Polo San Martin", + "operator": "Prefeitura do Recife", + "ref": "P135" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927623, + -8.067027 + ] + }, + "id": "node/13112921322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921323", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Joana Bezerra", + "operator": "Prefeitura do Recife", + "ref": "P134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.896131, + -8.072979 + ] + }, + "id": "node/13112921323" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921324", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Morro da Conceição", + "operator": "Prefeitura do Recife", + "ref": "P133" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.915053, + -8.019519 + ] + }, + "id": "node/13112921324" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921325", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Encruzilhada / Av. Norte", + "operator": "Prefeitura do Recife", + "ref": "P132" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.891961, + -8.038346 + ] + }, + "id": "node/13112921325" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921326", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Frei Cassimiro 01", + "operator": "Prefeitura do Recife", + "ref": "P131" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881036, + -8.04607 + ] + }, + "id": "node/13112921326" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921327", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Melvin Jones", + "operator": "Prefeitura do Recife", + "ref": "P130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.907253, + -8.032921 + ] + }, + "id": "node/13112921327" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921328", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Trabalho", + "operator": "Prefeitura do Recife", + "ref": "P129" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.914533, + -8.023179 + ] + }, + "id": "node/13112921328" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921329", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de San Martin", + "operator": "Prefeitura do Recife", + "ref": "P128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.928756, + -8.070869 + ] + }, + "id": "node/13112921329" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921330", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça Doutor Fernando Figueira", + "operator": "Prefeitura do Recife", + "ref": "P127" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.893379, + -8.065171 + ] + }, + "id": "node/13112921330" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921331", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Antônio Falcão", + "operator": "Prefeitura do Recife", + "ref": "P126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892993, + -8.116877 + ] + }, + "id": "node/13112921331" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921332", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Praça do Poeta", + "operator": "Prefeitura do Recife", + "ref": "P125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950311, + -8.034472 + ] + }, + "id": "node/13112921332" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921333", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "IFPE", + "operator": "Prefeitura do Recife", + "ref": "P124" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.949389, + -8.058693 + ] + }, + "id": "node/13112921333" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921334", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo Engenho do Meio", + "operator": "Prefeitura do Recife", + "ref": "P123" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.943379, + -8.057911 + ] + }, + "id": "node/13112921334" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921335", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Geraldão", + "operator": "Prefeitura do Recife", + "ref": "P122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.912957, + -8.116765 + ] + }, + "id": "node/13112921335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921336", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Largo da Encruzilhada", + "operator": "Prefeitura do Recife", + "ref": "P121" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.891521, + -8.037412 + ] + }, + "id": "node/13112921336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921337", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo Lagoa do Araçá", + "operator": "Prefeitura do Recife", + "ref": "P120" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.915446, + -8.096438 + ] + }, + "id": "node/13112921337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921338", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade Polo Roda de Fogo", + "operator": "Prefeitura do Recife", + "ref": "P119" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.937166, + -8.057904 + ] + }, + "id": "node/13112921338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921339", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo Barro", + "operator": "Prefeitura do Recife", + "ref": "P118" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.940371, + -8.089444 + ] + }, + "id": "node/13112921339" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921340", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça do ABC 02", + "operator": "Prefeitura do Recife", + "ref": "P117" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.918629, + -8.073318 + ] + }, + "id": "node/13112921340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921341", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade - Polo Cajueiro", + "operator": "Prefeitura do Recife", + "ref": "P116" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.883104, + -8.013948 + ] + }, + "id": "node/13112921341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921342", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo Casa Amarela 02", + "operator": "Prefeitura do Recife", + "ref": "P115" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.915835, + -8.022155 + ] + }, + "id": "node/13112921342" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921343", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo Água Fria", + "operator": "Prefeitura do Recife", + "ref": "P114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.888924, + -8.009416 + ] + }, + "id": "node/13112921343" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921344", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Rua da Palma 02", + "operator": "Prefeitura do Recife", + "ref": "P113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880346, + -8.064066 + ] + }, + "id": "node/13112921344" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921345", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia Recife e da Cidade - Polo Coque", + "operator": "Prefeitura do Recife", + "ref": "P112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897055, + -8.069898 + ] + }, + "id": "node/13112921345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921346", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade - Polo Santo Amaro", + "operator": "Prefeitura do Recife", + "ref": "P111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877564, + -8.039529 + ] + }, + "id": "node/13112921346" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921347", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Polo Santo Amaro", + "operator": "Prefeitura do Recife", + "ref": "P110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.888056, + -8.044548 + ] + }, + "id": "node/13112921347" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921348", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "USF Alto do Capitão/ Academia da Cidade 02", + "operator": "Prefeitura do Recife", + "ref": "P109" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.914073, + -7.999891 + ] + }, + "id": "node/13112921348" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921349", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Hipódromo/Academia Recife", + "operator": "Prefeitura do Recife", + "ref": "P108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.886958, + -8.031969 + ] + }, + "id": "node/13112921349" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921350", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Pátio Santa Cruz", + "operator": "Prefeitura do Recife", + "ref": "P107" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887995, + -8.062182 + ] + }, + "id": "node/13112921350" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921351", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque da Macaxeira", + "operator": "Prefeitura do Recife", + "ref": "P106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.932187, + -8.016489 + ] + }, + "id": "node/13112921351" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921352", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Torre", + "operator": "Prefeitura do Recife", + "ref": "P105" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.913747, + -8.046486 + ] + }, + "id": "node/13112921352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921353", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Canal do Cavouco 01", + "operator": "Prefeitura do Recife", + "ref": "P104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931581, + -8.04531 + ] + }, + "id": "node/13112921353" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921354", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de Parnamirim", + "operator": "Prefeitura do Recife", + "ref": "P103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.910138, + -8.033238 + ] + }, + "id": "node/13112921354" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921355", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "UPE/Reitoria", + "operator": "Prefeitura do Recife", + "ref": "P102" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.886373, + -8.043641 + ] + }, + "id": "node/13112921355" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921356", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Teatro do Parque 02", + "operator": "Prefeitura do Recife", + "ref": "P101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.884729, + -8.062083 + ] + }, + "id": "node/13112921356" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921357", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Avenida Guararapes 03 (Canteiro)", + "operator": "Prefeitura do Recife", + "ref": "P100" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880218, + -8.06284 + ] + }, + "id": "node/13112921357" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921358", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Avenida Guararapes 02 (Correios)", + "operator": "Prefeitura do Recife", + "ref": "P099" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880231, + -8.062696 + ] + }, + "id": "node/13112921358" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921359", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Upinha CHIÉ", + "operator": "Prefeitura do Recife", + "ref": "P098" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.87419, + -8.037299 + ] + }, + "id": "node/13112921359" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921360", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Soledade", + "operator": "Prefeitura do Recife", + "ref": "P097" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.889887, + -8.057979 + ] + }, + "id": "node/13112921360" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921361", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Derby", + "operator": "Prefeitura do Recife", + "ref": "P096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.899204, + -8.055936 + ] + }, + "id": "node/13112921361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921362", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Rosarinho", + "operator": "Prefeitura do Recife", + "ref": "P095" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.896634, + -8.03307 + ] + }, + "id": "node/13112921362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921363", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Academia da Cidade de Campo Grande", + "operator": "Prefeitura do Recife", + "ref": "P094" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.875846, + -8.03779 + ] + }, + "id": "node/13112921363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921364", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça do Engenho do Meio", + "operator": "Prefeitura do Recife", + "ref": "P093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.942139, + -8.057373 + ] + }, + "id": "node/13112921364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921365", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça de Jardim São Paulo 01", + "operator": "Prefeitura do Recife", + "ref": "P092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.938746, + -8.081651 + ] + }, + "id": "node/13112921365" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921366", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "EREM João Bezerra", + "operator": "Prefeitura do Recife", + "ref": "P091" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882871, + -8.085991 + ] + }, + "id": "node/13112921366" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921367", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Redesenho - Rua das Oficinas", + "operator": "Prefeitura do Recife", + "ref": "P090" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.884067, + -8.084801 + ] + }, + "id": "node/13112921367" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921368", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Sede CTTU", + "operator": "Prefeitura do Recife", + "ref": "P089" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879766, + -8.05152 + ] + }, + "id": "node/13112921368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921369", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Parque 13 de Maio", + "operator": "Prefeitura do Recife", + "ref": "P088" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881962, + -8.056721 + ] + }, + "id": "node/13112921369" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921370", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "14", + "covered": "no", + "fee": "no", + "name": "Cais do Imperador", + "operator": "Prefeitura do Recife", + "ref": "P086" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876178, + -8.065162 + ] + }, + "id": "node/13112921370" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921371", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Fórum Desembargador Rodolfo Aureliano", + "operator": "Prefeitura do Recife", + "ref": "P085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894387, + -8.071099 + ] + }, + "id": "node/13112921371" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921372", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Centro Esportivo Santos Dumont", + "operator": "Prefeitura do Recife", + "ref": "P084" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.908555, + -8.131018 + ] + }, + "id": "node/13112921372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921373", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "COMPAZ Escritor Ariano Suassuna", + "operator": "Prefeitura do Recife", + "ref": "P080" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.92586, + -8.059966 + ] + }, + "id": "node/13112921373" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921374", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no", + "fee": "no", + "name": "Rua da Aurora", + "operator": "Prefeitura do Recife", + "ref": "P078" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877185, + -8.055309 + ] + }, + "id": "node/13112921374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921375", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "TI Getúlio Vargas 01", + "operator": "Prefeitura do Recife", + "ref": "P077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.921197, + -8.050516 + ] + }, + "id": "node/13112921375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921376", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Academia Recife - Praça do ABC", + "operator": "Prefeitura do Recife", + "ref": "P076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.91878, + -8.07308 + ] + }, + "id": "node/13112921376" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921377", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "18", + "covered": "no", + "fee": "no", + "name": "Jardim Botânico do Recife", + "operator": "Prefeitura do Recife", + "ref": "P075" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.966685, + -8.076034 + ] + }, + "id": "node/13112921377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921378", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Mercado da Encruzilhada", + "operator": "Prefeitura do Recife", + "ref": "P074" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892143, + -8.037227 + ] + }, + "id": "node/13112921378" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921379", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Parque da Jaqueira", + "operator": "Prefeitura do Recife", + "ref": "P072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.90451, + -8.036719 + ] + }, + "id": "node/13112921379" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921380", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Compaz Governador Eduardo Campos", + "operator": "Prefeitura do Recife", + "ref": "P071" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.90274, + -8.010439 + ] + }, + "id": "node/13112921380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921381", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "11", + "covered": "no", + "fee": "no", + "name": "Praça Barão de Caiara", + "operator": "Prefeitura do Recife", + "ref": "P070" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.911451, + -8.03877 + ] + }, + "id": "node/13112921381" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921382", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "34", + "covered": "no", + "fee": "no", + "name": "Parque da Macaxeira", + "operator": "Prefeitura do Recife", + "ref": "P067" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9324, + -8.015638 + ] + }, + "id": "node/13112921382" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921383", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "ABRE", + "operator": "Prefeitura do Recife", + "ref": "P066" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892448, + -8.056592 + ] + }, + "id": "node/13112921383" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921384", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Fafire", + "operator": "Prefeitura do Recife", + "ref": "P065" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.889372, + -8.05801 + ] + }, + "id": "node/13112921384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921385", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Shopping Boa Vista", + "operator": "Prefeitura do Recife", + "ref": "P063" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887418, + -8.059141 + ] + }, + "id": "node/13112921385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921386", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Avenida Conde da Boa Vista", + "operator": "Prefeitura do Recife", + "ref": "P062" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882883, + -8.061331 + ] + }, + "id": "node/13112921386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921387", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Avenida Conde da Boa Vista", + "operator": "Prefeitura do Recife", + "ref": "P061" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881751, + -8.061865 + ] + }, + "id": "node/13112921387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921388", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque 13 de Maio", + "operator": "Prefeitura do Recife", + "ref": "P060" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882549, + -8.056494 + ] + }, + "id": "node/13112921388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921389", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "52", + "covered": "no", + "fee": "no", + "name": "Senai", + "operator": "Prefeitura do Recife", + "ref": "P057" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.877902, + -8.046954 + ] + }, + "id": "node/13112921389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921390", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado Madalena", + "operator": "Prefeitura do Recife", + "ref": "P056" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.908875, + -8.052561 + ] + }, + "id": "node/13112921390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921391", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Rua Gen. José Semeão", + "operator": "Prefeitura do Recife", + "ref": "P055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.886579, + -8.055233 + ] + }, + "id": "node/13112921391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921392", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "12", + "covered": "no", + "fee": "no", + "name": "Paço Alfândega", + "operator": "Prefeitura do Recife", + "ref": "P048" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.873615, + -8.065165 + ] + }, + "id": "node/13112921392" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921393", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "17", + "covered": "no", + "fee": "no", + "name": "Parque Caiara", + "operator": "Prefeitura do Recife", + "ref": "P043" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.928387, + -8.03861 + ] + }, + "id": "node/13112921393" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921394", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "28", + "covered": "no", + "fee": "no", + "name": "Mercado do Cordeiro", + "operator": "Prefeitura do Recife", + "ref": "P042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.921254, + -8.051709 + ] + }, + "id": "node/13112921394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921395", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "26", + "covered": "no", + "fee": "no", + "name": "Mercado de Água Fria / Beberibe", + "operator": "Prefeitura do Recife", + "ref": "P041" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894536, + -8.019887 + ] + }, + "id": "node/13112921395" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921396", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Prefeitura do Recife", + "ref": "P036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.887297, + -8.105262 + ] + }, + "id": "node/13112921396" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921397", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Orla do Pina - JCPM", + "operator": "Prefeitura do Recife", + "ref": "P033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881748, + -8.090842 + ] + }, + "id": "node/13112921397" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921398", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Parque Dona Lindú 01", + "operator": "Prefeitura do Recife", + "ref": "P031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.903987, + -8.140958 + ] + }, + "id": "node/13112921398" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921399", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Rua da Palma", + "operator": "Prefeitura do Recife", + "ref": "P029" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880214, + -8.063604 + ] + }, + "id": "node/13112921399" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921400", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Pátio do Carmo", + "operator": "Prefeitura do Recife", + "ref": "P028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.879381, + -8.066437 + ] + }, + "id": "node/13112921400" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921401", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Noel Rodrigues", + "operator": "Prefeitura do Recife", + "ref": "P027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.927322, + -8.066792 + ] + }, + "id": "node/13112921401" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921402", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Convenção", + "operator": "Prefeitura do Recife", + "ref": "P026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897725, + -8.002664 + ] + }, + "id": "node/13112921402" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921403", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Mercado da Boa Vista", + "operator": "Prefeitura do Recife", + "ref": "P025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.888635, + -8.063164 + ] + }, + "id": "node/13112921403" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921404", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Praça Mauriceia", + "operator": "Prefeitura do Recife", + "ref": "P024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.916501, + -8.108098 + ] + }, + "id": "node/13112921404" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921405", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Mercado de Afogados", + "operator": "Prefeitura do Recife", + "ref": "P023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.906912, + -8.078229 + ] + }, + "id": "node/13112921405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921406", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Praça da Várzea", + "operator": "Prefeitura do Recife", + "ref": "P022" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.959687, + -8.048768 + ] + }, + "id": "node/13112921406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921407", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Escola Municipal Arraial Novo do Bom Jesus", + "operator": "Prefeitura do Recife", + "ref": "P021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.931587, + -8.058957 + ] + }, + "id": "node/13112921407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921408", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Orla de Brasília Teimosa", + "operator": "Prefeitura do Recife", + "ref": "P020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.876762, + -8.081022 + ] + }, + "id": "node/13112921408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921409", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Avenida Beberibe", + "operator": "Prefeitura do Recife", + "ref": "P019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.894086, + -8.019307 + ] + }, + "id": "node/13112921409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921410", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Escola Waldemar de Oliveira", + "operator": "Prefeitura do Recife", + "ref": "P017" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.880217, + -8.054963 + ] + }, + "id": "node/13112921410" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921411", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Praça Eça de Queiroz", + "operator": "Prefeitura do Recife", + "ref": "P016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.90665, + -8.050904 + ] + }, + "id": "node/13112921411" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921412", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Mercado da Madalena", + "operator": "Prefeitura do Recife", + "ref": "P015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.90885, + -8.052375 + ] + }, + "id": "node/13112921412" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921413", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Largo de Casa Amarela", + "operator": "Prefeitura do Recife", + "ref": "P014" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.918677, + -8.026514 + ] + }, + "id": "node/13112921413" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921414", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Mercado de Casa Amarela", + "operator": "Prefeitura do Recife", + "ref": "P013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.917861, + -8.026468 + ] + }, + "id": "node/13112921414" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921415", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Rua Dona Ana Xavier", + "operator": "Prefeitura do Recife", + "ref": "P012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.917574, + -8.027073 + ] + }, + "id": "node/13112921415" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921416", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no", + "fee": "no", + "name": "Mercado da Encruzilhada", + "operator": "Prefeitura do Recife", + "ref": "P011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.892384, + -8.03739 + ] + }, + "id": "node/13112921416" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921417", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Igreja da Santa Cruz", + "operator": "Prefeitura do Recife", + "ref": "P009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.888082, + -8.062322 + ] + }, + "id": "node/13112921417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921418", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Cinema São Luiz", + "operator": "Prefeitura do Recife", + "ref": "P008" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882042, + -8.06229 + ] + }, + "id": "node/13112921418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921419", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Parque Treze de Maio", + "operator": "Prefeitura do Recife", + "ref": "P007" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881081, + -8.058568 + ] + }, + "id": "node/13112921419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921420", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "no", + "fee": "no", + "name": "Praça Visconde de Mauá", + "operator": "Prefeitura do Recife", + "ref": "P006" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878239, + -8.056185 + ] + }, + "id": "node/13112921420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921421", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Praça Visconde de Mauá", + "operator": "Prefeitura do Recife", + "ref": "P005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882865, + -8.066729 + ] + }, + "id": "node/13112921421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921422", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "6", + "covered": "no", + "fee": "no", + "name": "Praça Joaquim Nabuco", + "operator": "Prefeitura do Recife", + "ref": "P004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.881357, + -8.064471 + ] + }, + "id": "node/13112921422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921423", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Praça da Independência", + "operator": "Prefeitura do Recife", + "ref": "P003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.878392, + -8.064233 + ] + }, + "id": "node/13112921423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13112921424", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no", + "name": "Avenida Rio Branco", + "operator": "Prefeitura do Recife", + "ref": "P002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.872747, + -8.062669 + ] + }, + "id": "node/13112921424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13113030822", + "amenity": "bicycle_parking", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.7836199, + -22.3860037 + ] + }, + "id": "node/13113030822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13116918101", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.2300394, + -22.8921961 + ] + }, + "id": "node/13116918101" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13120160197", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.130768, + -22.8979361 + ] + }, + "id": "node/13120160197" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13128083424", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.1587304, + -6.4940958 + ] + }, + "id": "node/13128083424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13134600918", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6313175, + -23.6477702 + ] + }, + "id": "node/13134600918" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13144203526", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4667402, + -12.9860539 + ] + }, + "id": "node/13144203526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13156836050", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5105781, + -12.9993792 + ] + }, + "id": "node/13156836050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13156944737", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "2", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5111335, + -12.9995433 + ] + }, + "id": "node/13156944737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13157301909", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "8", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.16266, + -22.94771 + ] + }, + "id": "node/13157301909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13158139609", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5096405, + -13.0060361 + ] + }, + "id": "node/13158139609" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13158139610", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "10", + "fee": "no", + "operator:type": "public" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.509991, + -13.0036349 + ] + }, + "id": "node/13158139610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13160585261", + "amenity": "bicycle_parking" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3260611, + -16.6200218 + ] + }, + "id": "node/13160585261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13160585345", + "amenity": "bicycle_parking", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3168581, + -16.6065683 + ] + }, + "id": "node/13160585345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13160937759", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4516292, + -12.9781031 + ] + }, + "id": "node/13160937759" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13168766817", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7153772, + -23.2203282 + ] + }, + "id": "node/13168766817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13171625624", + "access": "private", + "amenity": "bicycle_parking", + "capacity": "10", + "fee": "no", + "opening_hours": "24/7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4658942, + -23.5821258 + ] + }, + "id": "node/13171625624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13173770428", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "5", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7117683, + -23.2164185 + ] + }, + "id": "node/13173770428" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13173778387", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "10", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7115112, + -23.2161635 + ] + }, + "id": "node/13173778387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13173781140", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7138812, + -23.2169304 + ] + }, + "id": "node/13173781140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13173999685", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7140289, + -23.2175481 + ] + }, + "id": "node/13173999685" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13174018744", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7141336, + -23.217011 + ] + }, + "id": "node/13174018744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13174572225", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "6", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7144217, + -23.2188757 + ] + }, + "id": "node/13174572225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13175631343", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9102097, + -26.7116006 + ] + }, + "id": "node/13175631343" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13175631358", + "amenity": "bicycle_parking", + "bicycle_parking": "stands" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9132728, + -26.7111631 + ] + }, + "id": "node/13175631358" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13176664832", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "20", + "covered": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.7195678, + -23.2214388 + ] + }, + "id": "node/13176664832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13197831084", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "3", + "covered": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1876761, + -22.9525202 + ] + }, + "id": "node/13197831084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13202514860", + "access": "customers", + "amenity": "bicycle_parking", + "bicycle_parking": "ground_slots", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Rádio Pomerode", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1786738, + -26.7364108 + ] + }, + "id": "node/13202514860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13241557084", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "4", + "covered": "no", + "fee": "no", + "supervised": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1784545, + -26.735802 + ] + }, + "id": "node/13241557084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13245847140", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "capacity": "5", + "covered": "no", + "fee": "no", + "name": "Terminal Santa Luzia", + "operator": "Nova Mobi", + "ref": "P186" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9302253, + -8.0840623 + ] + }, + "id": "node/13245847140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13248710804", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_hoops", + "covered": "yes", + "fee": "no" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9002924, + -22.7431067 + ] + }, + "id": "node/13248710804" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13249877909", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "stands", + "covered": "no", + "fee": "no", + "operator": "Banco do Brasil", + "operator:type": "business" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4918625, + -12.9985121 + ] + }, + "id": "node/13249877909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13256916040", + "access": "yes", + "amenity": "bicycle_parking", + "bicycle_parking": "wall_loops", + "capacity": "7" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7111253, + -2.4162229 + ] + }, + "id": "node/13256916040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10815124637" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.7681086, + -29.789305 + ] + }, + "id": "node/10815124637" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10815124638" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.7680673, + -29.7893607 + ] + }, + "id": "node/10815124638" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10815124639" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.7680894, + -29.7893731 + ] + }, + "id": "node/10815124639" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10815124640" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.7681308, + -29.7893173 + ] + }, + "id": "node/10815124640" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5076210725" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8314168, + -29.7069777 + ] + }, + "id": "node/5076210725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5138118840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.831589, + -29.7068007 + ] + }, + "id": "node/5138118840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5138118843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8315375, + -29.7068244 + ] + }, + "id": "node/5138118843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5138118844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8315109, + -29.706816 + ] + }, + "id": "node/5138118844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5138118848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8315515, + -29.7067926 + ] + }, + "id": "node/5138118848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5138118849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8315019, + -29.7068351 + ] + }, + "id": "node/5138118849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5138118850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8314503, + -29.7068262 + ] + }, + "id": "node/5138118850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5138118852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8314373, + -29.7069844 + ] + }, + "id": "node/5138118852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8939948726" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8315241, + -29.7069015 + ] + }, + "id": "node/8939948726" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8939948727" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8313812, + -29.7069662 + ] + }, + "id": "node/8939948727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4879604709" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.716431, + -29.7188861 + ] + }, + "id": "node/4879604709" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4879604710" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7165409, + -29.7188977 + ] + }, + "id": "node/4879604710" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4981031133" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7177962, + -29.7224413 + ] + }, + "id": "node/4981031133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4981031134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7177841, + -29.7225129 + ] + }, + "id": "node/4981031134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7180664, + -29.7208457 + ] + }, + "id": "node/5001117207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7181496, + -29.7208579 + ] + }, + "id": "node/5001117208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5030583674" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7144776, + -29.7174424 + ] + }, + "id": "node/5030583674" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5030583675" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7145863, + -29.7174576 + ] + }, + "id": "node/5030583675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5030583676" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7146875, + -29.7174733 + ] + }, + "id": "node/5030583676" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5030583677" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7147962, + -29.7174884 + ] + }, + "id": "node/5030583677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4773838456" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7170178, + -29.7138406 + ] + }, + "id": "node/4773838456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4773838457" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7170305, + -29.7137746 + ] + }, + "id": "node/4773838457" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4846742807" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7170091, + -29.7138393 + ] + }, + "id": "node/4846742807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4846742817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7168744, + -29.7137858 + ] + }, + "id": "node/4846742817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7164591, + -29.7147082 + ] + }, + "id": "node/5001117204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5001117205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7164517, + -29.7147472 + ] + }, + "id": "node/5001117205" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10198437084" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7395383, + -29.7052989 + ] + }, + "id": "node/10198437084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10198437085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7395447, + -29.7052271 + ] + }, + "id": "node/10198437085" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10198437083" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7394737, + -29.7052946 + ] + }, + "id": "node/10198437083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7386902, + -28.1450767 + ] + }, + "id": "node/10083635663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635664" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7386895, + -28.1450618 + ] + }, + "id": "node/10083635664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635665" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.738646, + -28.1450601 + ] + }, + "id": "node/10083635665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635666" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7386453, + -28.1450785 + ] + }, + "id": "node/10083635666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635689" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7298751, + -28.1463733 + ] + }, + "id": "node/10083635689" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635690" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7298872, + -28.1463473 + ] + }, + "id": "node/10083635690" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635691" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7298295, + -28.146326 + ] + }, + "id": "node/10083635691" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10083635692" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7298188, + -28.1463437 + ] + }, + "id": "node/10083635692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9436899506" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7274395, + -28.1275372 + ] + }, + "id": "node/9436899506" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9436899507" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7274055, + -28.127539 + ] + }, + "id": "node/9436899507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9436917118" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7274423, + -28.127607 + ] + }, + "id": "node/9436917118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10103410454" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7273584, + -28.1275534 + ] + }, + "id": "node/10103410454" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10106359210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7273653, + -28.1275685 + ] + }, + "id": "node/10106359210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10106359211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7274055, + -28.1275561 + ] + }, + "id": "node/10106359211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10106359212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.7274203, + -28.1275549 + ] + }, + "id": "node/10106359212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10106359213" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.727423, + -28.1276105 + ] + }, + "id": "node/10106359213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5642888417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.1067455, + -24.5588498 + ] + }, + "id": "node/5642888417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5642888418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.1065844, + -24.5588498 + ] + }, + "id": "node/5642888418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5642888419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.1065791, + -24.5594244 + ] + }, + "id": "node/5642888419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5642888420" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.1067384, + -24.5594276 + ] + }, + "id": "node/5642888420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531103" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0450732, + -24.5679725 + ] + }, + "id": "node/5640531103" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531104" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0450654, + -24.5679106 + ] + }, + "id": "node/5640531104" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531105" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0452589, + -24.5678784 + ] + }, + "id": "node/5640531105" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531106" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0452702, + -24.567945 + ] + }, + "id": "node/5640531106" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0493287, + -24.5575289 + ] + }, + "id": "node/5640531035" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0491524, + -24.5575827 + ] + }, + "id": "node/5640531036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.049209, + -24.5577358 + ] + }, + "id": "node/5640531037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640531038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.0493852, + -24.5576819 + ] + }, + "id": "node/5640531038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7854918976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7686811, + -24.7290377 + ] + }, + "id": "node/7854918976" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7854918977" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7688398, + -24.7288468 + ] + }, + "id": "node/7854918977" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7854918978" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7686799, + -24.7288476 + ] + }, + "id": "node/7854918978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7854918979" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.768841, + -24.7290369 + ] + }, + "id": "node/7854918979" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7700095590" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8428195, + -24.2955417 + ] + }, + "id": "node/7700095590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8732955256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.842725, + -24.2958497 + ] + }, + "id": "node/8732955256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8732955257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8426104, + -24.2958205 + ] + }, + "id": "node/8732955257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8732955258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.842705, + -24.2955125 + ] + }, + "id": "node/8732955258" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7695743054" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8409046, + -24.281359 + ] + }, + "id": "node/7695743054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7695743055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8409178, + -24.2813188 + ] + }, + "id": "node/7695743055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7695743071" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8409486, + -24.2813272 + ] + }, + "id": "node/7695743071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7695743072" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8409354, + -24.2813674 + ] + }, + "id": "node/7695743072" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12604134871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8978196, + -23.8716103 + ] + }, + "id": "node/12604134871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12604134872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8978179, + -23.8716052 + ] + }, + "id": "node/12604134872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12604134873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8977958, + -23.8716115 + ] + }, + "id": "node/12604134873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12604134874" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.8977975, + -23.8716166 + ] + }, + "id": "node/12604134874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9190654280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6467311, + -20.4399067 + ] + }, + "id": "node/9190654280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9190654281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6467059, + -20.4399067 + ] + }, + "id": "node/9190654281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9190654282" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6467059, + -20.4399133 + ] + }, + "id": "node/9190654282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9190654283" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.6467306, + -20.4399129 + ] + }, + "id": "node/9190654283" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5646651940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.3454131, + -15.4668871 + ] + }, + "id": "node/5646651940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5646651941" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.3453979, + -15.4667802 + ] + }, + "id": "node/5646651941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5646651942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.3457095, + -15.4667392 + ] + }, + "id": "node/5646651942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5646651943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.3457246, + -15.4668461 + ] + }, + "id": "node/5646651943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4899234, + -11.8621598 + ] + }, + "id": "node/10676105547" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105548" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4899192, + -11.8621432 + ] + }, + "id": "node/10676105548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105549" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4898924, + -11.8621497 + ] + }, + "id": "node/10676105549" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105550" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4898972, + -11.862125 + ] + }, + "id": "node/10676105550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4898839, + -11.8621062 + ] + }, + "id": "node/10676105551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105555" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4902847, + -11.8620716 + ] + }, + "id": "node/10676105555" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105557" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4902745, + -11.8620316 + ] + }, + "id": "node/10676105557" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105559" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.4898915, + -11.862117 + ] + }, + "id": "node/10676105559" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10676105560" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -55.490269, + -11.8620102 + ] + }, + "id": "node/10676105560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6142853918" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7372975, + 2.8041381 + ] + }, + "id": "node/6142853918" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7019878326" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7373314, + 2.803872 + ] + }, + "id": "node/7019878326" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7019878327" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7372282, + 2.804119 + ] + }, + "id": "node/7019878327" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7019878328" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7372739, + 2.8038608 + ] + }, + "id": "node/7019878328" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7019878329" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7373722, + 2.8038825 + ] + }, + "id": "node/7019878329" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7019878333" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.737239, + 2.80401 + ] + }, + "id": "node/7019878333" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7019878336" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.737221, + 2.8040733 + ] + }, + "id": "node/7019878336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7019878337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7372405, + 2.8040786 + ] + }, + "id": "node/7019878337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12881089708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3811626, + -1.4714767 + ] + }, + "id": "node/12881089708" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12881089709" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.381162, + -1.4715404 + ] + }, + "id": "node/12881089709" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12881089710" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3811923, + -1.4715433 + ] + }, + "id": "node/12881089710" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12881089711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3811929, + -1.4714773 + ] + }, + "id": "node/12881089711" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541420" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3784671, + -1.4619652 + ] + }, + "id": "node/12798541420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3784671, + -1.4620006 + ] + }, + "id": "node/12798541421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3783454, + -1.4620068 + ] + }, + "id": "node/12798541422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3783454, + -1.4619714 + ] + }, + "id": "node/12798541423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778863, + -1.462073 + ] + }, + "id": "node/12798541424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778462, + -1.4620715 + ] + }, + "id": "node/12798541425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778479, + -1.4620482 + ] + }, + "id": "node/12798541426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778875, + -1.4620482 + ] + }, + "id": "node/12798541427" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.377887, + -1.4621085 + ] + }, + "id": "node/12798541428" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778401, + -1.4621041 + ] + }, + "id": "node/12798541429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541430" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778313, + -1.4621802 + ] + }, + "id": "node/12798541430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12798541431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -56.3778879, + -1.4621864 + ] + }, + "id": "node/12798541431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842524597" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1662254, + -32.0750731 + ] + }, + "id": "node/5842524597" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842524598" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1662813, + -32.0750586 + ] + }, + "id": "node/5842524598" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842524599" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1663257, + -32.0751823 + ] + }, + "id": "node/5842524599" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842524600" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1662699, + -32.0751967 + ] + }, + "id": "node/5842524600" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12373575650" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.0941618, + -32.0397515 + ] + }, + "id": "node/12373575650" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12373575651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.0941225, + -32.0397597 + ] + }, + "id": "node/12373575651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12373575652" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.0941522, + -32.0398621 + ] + }, + "id": "node/12373575652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12373575653" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.0941915, + -32.039854 + ] + }, + "id": "node/12373575653" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10744502620" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.32417, + -31.781165 + ] + }, + "id": "node/10744502620" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10744502621" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.324166, + -31.7812038 + ] + }, + "id": "node/10744502621" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10744502622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3240238, + -31.7812004 + ] + }, + "id": "node/10744502622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10744502623" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3240265, + -31.7811616 + ] + }, + "id": "node/10744502623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472734128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3228034, + -31.7807581 + ] + }, + "id": "node/4472734128" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472734129" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3229939, + -31.7807672 + ] + }, + "id": "node/4472734129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4472734130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3230127, + -31.7805953 + ] + }, + "id": "node/4472734130" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6713660774" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9730217, + -30.1251391 + ] + }, + "id": "node/6713660774" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6713660775" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9729188, + -30.1251048 + ] + }, + "id": "node/6713660775" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6713660776" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9728713, + -30.1252463 + ] + }, + "id": "node/6713660776" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6713660777" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9729795, + -30.1252759 + ] + }, + "id": "node/6713660777" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6713660778" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9730428, + -30.1251276 + ] + }, + "id": "node/6713660778" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9371362926" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6282488, + -29.9587592 + ] + }, + "id": "node/9371362926" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9376628996" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6282553, + -29.9587651 + ] + }, + "id": "node/9376628996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9376628997" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6282736, + -29.9587507 + ] + }, + "id": "node/9376628997" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9376628998" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6282676, + -29.9587449 + ] + }, + "id": "node/9376628998" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126777334" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2382651, + -30.0630173 + ] + }, + "id": "node/5126777334" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126777336" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2383017, + -30.0630522 + ] + }, + "id": "node/5126777336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126777337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.238219, + -30.0630535 + ] + }, + "id": "node/5126777337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126777338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2382787, + -30.0630703 + ] + }, + "id": "node/5126777338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5126777340" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2382556, + -30.0630884 + ] + }, + "id": "node/5126777340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4783582405" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273461, + -30.0497579 + ] + }, + "id": "node/4783582405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4786780733" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.226743, + -30.0496262 + ] + }, + "id": "node/4786780733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4786780735" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273825, + -30.0497532 + ] + }, + "id": "node/4786780735" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4786780736" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273137, + -30.0497621 + ] + }, + "id": "node/4786780736" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4786780739" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273315, + -30.0498633 + ] + }, + "id": "node/4786780739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2268008, + -30.0495728 + ] + }, + "id": "node/4787362838" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362839" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2267353, + -30.0495814 + ] + }, + "id": "node/4787362839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2268085, + -30.0496176 + ] + }, + "id": "node/4787362840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362841" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2268167, + -30.0496646 + ] + }, + "id": "node/4787362841" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362842" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2267511, + -30.0496731 + ] + }, + "id": "node/4787362842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273892, + -30.0496917 + ] + }, + "id": "node/4787362843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273722, + -30.0496938 + ] + }, + "id": "node/4787362844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362845" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2273996, + -30.049751 + ] + }, + "id": "node/4787362845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362846" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2274085, + -30.0498021 + ] + }, + "id": "node/4787362846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4787362847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2274173, + -30.0498528 + ] + }, + "id": "node/4787362847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4801538943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.234472, + -30.0307212 + ] + }, + "id": "node/4801538943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4801538944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2346282, + -30.0307765 + ] + }, + "id": "node/4801538944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4801538945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2347844, + -30.0308317 + ] + }, + "id": "node/4801538945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4788384120" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2014148, + -30.0237462 + ] + }, + "id": "node/4788384120" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4788384221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2014516, + -30.0237706 + ] + }, + "id": "node/4788384221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4788384222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2013611, + -30.0238635 + ] + }, + "id": "node/4788384222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1828374, + -29.918802 + ] + }, + "id": "node/5167227891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1827982, + -29.918806 + ] + }, + "id": "node/5167227892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227893" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1824578, + -29.9188759 + ] + }, + "id": "node/5167227893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227894" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1828081, + -29.918879 + ] + }, + "id": "node/5167227894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1824183, + -29.9188799 + ] + }, + "id": "node/5167227895" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1828518, + -29.9189077 + ] + }, + "id": "node/5167227896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227897" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.182463, + -29.9189142 + ] + }, + "id": "node/5167227897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5167227898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.182428, + -29.9189509 + ] + }, + "id": "node/5167227898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11200692502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1454192, + -30.0324235 + ] + }, + "id": "node/11200692502" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11200692503" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1454215, + -30.0324589 + ] + }, + "id": "node/11200692503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11200692504" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1454075, + -30.0324558 + ] + }, + "id": "node/11200692504" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11200692505" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1454052, + -30.0324194 + ] + }, + "id": "node/11200692505" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157676116" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1446734, + -30.0299289 + ] + }, + "id": "node/11157676116" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157676117" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1446407, + -30.0299289 + ] + }, + "id": "node/11157676117" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157676118" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1446418, + -30.0299411 + ] + }, + "id": "node/11157676118" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157676119" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1446769, + -30.0299411 + ] + }, + "id": "node/11157676119" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157709830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1451645, + -30.0313168 + ] + }, + "id": "node/11157709830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157709831" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1451187, + -30.0313168 + ] + }, + "id": "node/11157709831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157709832" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1451208, + -30.0313283 + ] + }, + "id": "node/11157709832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11157709833" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1451645, + -30.0313318 + ] + }, + "id": "node/11157709833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260608" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1489714, + -29.823209 + ] + }, + "id": "node/5134260608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260609" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1489266, + -29.823253 + ] + }, + "id": "node/5134260609" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1491311, + -29.8234099 + ] + }, + "id": "node/5134260611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1491218, + -29.8234191 + ] + }, + "id": "node/5134260612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260613" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1490954, + -29.8234449 + ] + }, + "id": "node/5134260613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1493087, + -29.8234679 + ] + }, + "id": "node/5134260614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5134260615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.1492282, + -29.8235468 + ] + }, + "id": "node/5134260615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096330" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9452556, + -29.4486631 + ] + }, + "id": "node/6703096330" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096331" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9452591, + -29.4486036 + ] + }, + "id": "node/6703096331" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9454764, + -29.4486134 + ] + }, + "id": "node/6703096332" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096333" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9454728, + -29.4486729 + ] + }, + "id": "node/6703096333" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6745983668" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.943685, + -29.4488826 + ] + }, + "id": "node/6745983668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6745983669" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9436836, + -29.448934 + ] + }, + "id": "node/6745983669" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6745983670" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9437764, + -29.4489359 + ] + }, + "id": "node/6745983670" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6745983671" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9437779, + -29.4488823 + ] + }, + "id": "node/6745983671" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096352" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.949689, + -29.446972 + ] + }, + "id": "node/6703096352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9498315, + -29.4468532 + ] + }, + "id": "node/6703096353" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096354" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9497856, + -29.4468114 + ] + }, + "id": "node/6703096354" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6703096355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.9496431, + -29.4469302 + ] + }, + "id": "node/6703096355" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5667245759" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4934766, + -28.947539 + ] + }, + "id": "node/5667245759" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5667245760" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4935186, + -28.947539 + ] + }, + "id": "node/5667245760" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5667245761" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4935735, + -28.9476003 + ] + }, + "id": "node/5667245761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5667245762" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4935455, + -28.9476187 + ] + }, + "id": "node/5667245762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919548980" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4666374, + -28.9505802 + ] + }, + "id": "node/10919548980" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919548981" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4666152, + -28.9505978 + ] + }, + "id": "node/10919548981" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919548982" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4666267, + -28.9506081 + ] + }, + "id": "node/10919548982" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919548983" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4666487, + -28.9505904 + ] + }, + "id": "node/10919548983" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919548984" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4666259, + -28.9505893 + ] + }, + "id": "node/10919548984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10919548985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.4666385, + -28.9505991 + ] + }, + "id": "node/10919548985" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5265840900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0219452, + -28.4792576 + ] + }, + "id": "node/5265840900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5265840901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0219157, + -28.4792859 + ] + }, + "id": "node/5265840901" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5265840902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0218312, + -28.4792269 + ] + }, + "id": "node/5265840902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5265840903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0218661, + -28.4791928 + ] + }, + "id": "node/5265840903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5266415714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0198877, + -28.4815776 + ] + }, + "id": "node/5266415714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5266415715" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0198216, + -28.4816419 + ] + }, + "id": "node/5266415715" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5266415716" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0198552, + -28.481667 + ] + }, + "id": "node/5266415716" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5266415717" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0199218, + -28.4816017 + ] + }, + "id": "node/5266415717" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9773440677" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6677118, + -27.6455952 + ] + }, + "id": "node/9773440677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9773440678" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6677682, + -27.6458494 + ] + }, + "id": "node/9773440678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9773440679" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6677841, + -27.6458466 + ] + }, + "id": "node/9773440679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9773440680" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6677276, + -27.6455924 + ] + }, + "id": "node/9773440680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103974545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5520208, + -27.5984745 + ] + }, + "id": "node/9103974545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103974546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5520295, + -27.5985256 + ] + }, + "id": "node/9103974546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103974547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5520769, + -27.5985192 + ] + }, + "id": "node/9103974547" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9103974548" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5520682, + -27.5984681 + ] + }, + "id": "node/9103974548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7047005614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5244578, + -27.6053166 + ] + }, + "id": "node/7047005614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7047005615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5244135, + -27.6052643 + ] + }, + "id": "node/7047005615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7047005616" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5243384, + -27.6053237 + ] + }, + "id": "node/7047005616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7047005617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.52438, + -27.6053653 + ] + }, + "id": "node/7047005617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7047005618" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5243744, + -27.6052953 + ] + }, + "id": "node/7047005618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7231801779" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5206519, + -27.5963898 + ] + }, + "id": "node/7231801779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7231801780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5206009, + -27.5963708 + ] + }, + "id": "node/7231801780" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7231801781" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5205674, + -27.5964385 + ] + }, + "id": "node/7231801781" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7231801782" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5206331, + -27.5964528 + ] + }, + "id": "node/7231801782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5261330178" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5078667, + -27.5796994 + ] + }, + "id": "node/5261330178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5261330179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5079036, + -27.5796994 + ] + }, + "id": "node/5261330179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5261330180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5079036, + -27.5796904 + ] + }, + "id": "node/5261330180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5261330181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5079378, + -27.5796904 + ] + }, + "id": "node/5261330181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5261330182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5079371, + -27.5797006 + ] + }, + "id": "node/5261330182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5261330184" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5080209, + -27.5796899 + ] + }, + "id": "node/5261330184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5353323286" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.507866, + -27.5796899 + ] + }, + "id": "node/5353323286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5353323287" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.5080209, + -27.5796994 + ] + }, + "id": "node/5353323287" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13090652526" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4703348, + -27.6029544 + ] + }, + "id": "node/13090652526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13090652527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4703289, + -27.602942 + ] + }, + "id": "node/13090652527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6208097432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4444261, + -27.4305011 + ] + }, + "id": "node/6208097432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6208097433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4445139, + -27.4304804 + ] + }, + "id": "node/6208097433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6208097434" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4444666, + -27.4304506 + ] + }, + "id": "node/6208097434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6208097436" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4444734, + -27.430531 + ] + }, + "id": "node/6208097436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8865006382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.601284, + -27.1388217 + ] + }, + "id": "node/8865006382" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9994897621" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0999378, + -26.2498655 + ] + }, + "id": "node/9994897621" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9994911937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0998982, + -26.2498799 + ] + }, + "id": "node/9994911937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9994911938" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0998251, + -26.2497317 + ] + }, + "id": "node/9994911938" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9994911939" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0998442, + -26.2497712 + ] + }, + "id": "node/9994911939" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9994911940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.0998639, + -26.2497167 + ] + }, + "id": "node/9994911940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7633351543" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1355097, + -26.9138635 + ] + }, + "id": "node/7633351543" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7633351544" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1354727, + -26.9139306 + ] + }, + "id": "node/7633351544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7633351545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1353697, + -26.9139236 + ] + }, + "id": "node/7633351545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7633351546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1354294, + -26.9137964 + ] + }, + "id": "node/7633351546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404584" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1298922, + -26.8956927 + ] + }, + "id": "node/9077404584" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404585" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.129854, + -26.8957573 + ] + }, + "id": "node/9077404585" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404586" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1297796, + -26.8957224 + ] + }, + "id": "node/9077404586" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404587" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1298178, + -26.8956578 + ] + }, + "id": "node/9077404587" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404608" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1300596, + -26.8953783 + ] + }, + "id": "node/9077404608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404609" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1300173, + -26.895359 + ] + }, + "id": "node/9077404609" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404610" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1298984, + -26.8955667 + ] + }, + "id": "node/9077404610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077404611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1299408, + -26.895586 + ] + }, + "id": "node/9077404611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7304762130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0820729, + -26.9153154 + ] + }, + "id": "node/7304762130" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7304762131" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0820591, + -26.9153491 + ] + }, + "id": "node/7304762131" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7304779403" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0821097, + -26.9153281 + ] + }, + "id": "node/7304779403" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7304779404" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0820993, + -26.9153555 + ] + }, + "id": "node/7304779404" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6314338933" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1571252, + -26.8557731 + ] + }, + "id": "node/6314338933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6314338934" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1572245, + -26.8557707 + ] + }, + "id": "node/6314338934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10805853285" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9031035, + -27.1427651 + ] + }, + "id": "node/10805853285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10805853290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9031588, + -27.1427639 + ] + }, + "id": "node/10805853290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10805853291" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9031077, + -27.142967 + ] + }, + "id": "node/10805853291" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10805853292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.9031656, + -27.1429662 + ] + }, + "id": "node/10805853292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.655384, + -27.0273815 + ] + }, + "id": "node/9335435873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435874" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6554233, + -27.0273754 + ] + }, + "id": "node/9335435874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435875" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.655426, + -27.0273897 + ] + }, + "id": "node/9335435875" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435876" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6553868, + -27.0273958 + ] + }, + "id": "node/9335435876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435878" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6548885, + -27.0265052 + ] + }, + "id": "node/9335435878" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435879" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6549507, + -27.0266427 + ] + }, + "id": "node/9335435879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435880" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6549293, + -27.0266504 + ] + }, + "id": "node/9335435880" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435881" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6548671, + -27.026513 + ] + }, + "id": "node/9335435881" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435882" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6554832, + -27.0268683 + ] + }, + "id": "node/9335435882" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435883" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6554875, + -27.0268956 + ] + }, + "id": "node/9335435883" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435884" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.655352, + -27.0269122 + ] + }, + "id": "node/9335435884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6553478, + -27.0268849 + ] + }, + "id": "node/9335435885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841857" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6605705, + -27.0165239 + ] + }, + "id": "node/9297841857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6604812, + -27.0165487 + ] + }, + "id": "node/9297841858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841860" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6605511, + -27.0164682 + ] + }, + "id": "node/9297841860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.658322, + -27.0154083 + ] + }, + "id": "node/9297841849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6582682, + -27.0153435 + ] + }, + "id": "node/9297841850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841851" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6582267, + -27.0153708 + ] + }, + "id": "node/9297841851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6582805, + -27.0154356 + ] + }, + "id": "node/9297841852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.659184, + -27.0166468 + ] + }, + "id": "node/9297841853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6591343, + -27.0166711 + ] + }, + "id": "node/9297841854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6591825, + -27.0167494 + ] + }, + "id": "node/9297841855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841856" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6592322, + -27.0167251 + ] + }, + "id": "node/9297841856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9297841859" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6604618, + -27.016493 + ] + }, + "id": "node/9297841859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6590458, + -27.0161159 + ] + }, + "id": "node/9335435900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6590495, + -27.01621 + ] + }, + "id": "node/9335435902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6590047, + -27.0161356 + ] + }, + "id": "node/9335435903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9966541770" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6590907, + -27.0161903 + ] + }, + "id": "node/9966541770" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067936155" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6743637, + -26.9332194 + ] + }, + "id": "node/10067936155" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10067936156" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6743504, + -26.9332194 + ] + }, + "id": "node/10067936156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10068607364" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6743485, + -26.9331831 + ] + }, + "id": "node/10068607364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10068607365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6743622, + -26.9331839 + ] + }, + "id": "node/10068607365" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6382286346" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.685718, + -26.9304847 + ] + }, + "id": "node/6382286346" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10288697847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6855432, + -26.9305225 + ] + }, + "id": "node/10288697847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10288697848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6855459, + -26.9304782 + ] + }, + "id": "node/10288697848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10307453197" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6855388, + -26.9307384 + ] + }, + "id": "node/10307453197" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10307453198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.685702, + -26.9307439 + ] + }, + "id": "node/10307453198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6548927, + -26.9178783 + ] + }, + "id": "node/10110200363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200364" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6549, + -26.917865 + ] + }, + "id": "node/10110200364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.654945, + -26.9178804 + ] + }, + "id": "node/10110200389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200390" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6549403, + -26.9178948 + ] + }, + "id": "node/10110200390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200399" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6553594, + -26.9180373 + ] + }, + "id": "node/10110200399" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6553645, + -26.918025 + ] + }, + "id": "node/10110200400" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200401" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6553032, + -26.9180039 + ] + }, + "id": "node/10110200401" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110200402" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6552968, + -26.9180172 + ] + }, + "id": "node/10110200402" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5343195122" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6544837, + -26.9071071 + ] + }, + "id": "node/5343195122" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5343195123" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6545827, + -26.9062431 + ] + }, + "id": "node/5343195123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10030585665" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6545772, + -26.9062859 + ] + }, + "id": "node/10030585665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13038210949" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1787407, + -26.7530852 + ] + }, + "id": "node/13038210949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13038210950" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1786456, + -26.7530833 + ] + }, + "id": "node/13038210950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13038210951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1786484, + -26.7529736 + ] + }, + "id": "node/13038210951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13038210952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1787435, + -26.7529755 + ] + }, + "id": "node/13038210952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4306885150" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.179116, + -26.7388943 + ] + }, + "id": "node/4306885150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359091" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1791161, + -26.7389041 + ] + }, + "id": "node/5895359091" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359092" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1789923, + -26.7389047 + ] + }, + "id": "node/5895359092" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359093" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1789923, + -26.7388944 + ] + }, + "id": "node/5895359093" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4543725219" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1745187, + -26.7439664 + ] + }, + "id": "node/4543725219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4543725220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744674, + -26.7439664 + ] + }, + "id": "node/4543725220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4543725221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744674, + -26.7439527 + ] + }, + "id": "node/4543725221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4543725222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1745187, + -26.7439527 + ] + }, + "id": "node/4543725222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4705482971" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1764395, + -26.7380223 + ] + }, + "id": "node/4705482971" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4705482972" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1764172, + -26.7380218 + ] + }, + "id": "node/4705482972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4705482973" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1764185, + -26.7379751 + ] + }, + "id": "node/4705482973" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4705482974" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1764408, + -26.7379756 + ] + }, + "id": "node/4705482974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4710970711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744781, + -26.7334361 + ] + }, + "id": "node/4710970711" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4710970712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744655, + -26.7334361 + ] + }, + "id": "node/4710970712" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4710970713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744656, + -26.7333907 + ] + }, + "id": "node/4710970713" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4710970714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744782, + -26.7333907 + ] + }, + "id": "node/4710970714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749745" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1770014, + -26.7312726 + ] + }, + "id": "node/4716749745" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749746" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1769902, + -26.7312762 + ] + }, + "id": "node/4716749746" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749747" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1769894, + -26.731274 + ] + }, + "id": "node/4716749747" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1770005, + -26.7312704 + ] + }, + "id": "node/4716749748" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749749" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1771152, + -26.7313541 + ] + }, + "id": "node/4716749749" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749750" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1770921, + -26.7313613 + ] + }, + "id": "node/4716749750" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749751" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1770897, + -26.7313553 + ] + }, + "id": "node/4716749751" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4716749752" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1771129, + -26.7313481 + ] + }, + "id": "node/4716749752" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5695649478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1748838, + -26.7331251 + ] + }, + "id": "node/5695649478" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5695649479" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1748456, + -26.7331251 + ] + }, + "id": "node/5695649479" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5695649480" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1748456, + -26.7331119 + ] + }, + "id": "node/5695649480" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5695649481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1748838, + -26.7331119 + ] + }, + "id": "node/5695649481" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359107" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1744507, + -26.7333071 + ] + }, + "id": "node/5895359107" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1743937, + -26.7333101 + ] + }, + "id": "node/5895359108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359109" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.174393, + -26.7332988 + ] + }, + "id": "node/5895359109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5895359110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.17445, + -26.7332958 + ] + }, + "id": "node/5895359110" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11582381336" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1720332, + -26.7191571 + ] + }, + "id": "node/11582381336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11582381337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1719064, + -26.7191539 + ] + }, + "id": "node/11582381337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11582381338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1719112, + -26.7190047 + ] + }, + "id": "node/11582381338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11582381339" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.172038, + -26.7190079 + ] + }, + "id": "node/11582381339" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11517893662" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1633562, + -26.7071949 + ] + }, + "id": "node/11517893662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11517893663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1633561, + -26.7071524 + ] + }, + "id": "node/11517893663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11517893666" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1634032, + -26.707195 + ] + }, + "id": "node/11517893666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11517904969" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1634032, + -26.7071524 + ] + }, + "id": "node/11517904969" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8850993757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1729149, + -26.6855997 + ] + }, + "id": "node/8850993757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8850993758" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1729067, + -26.6855994 + ] + }, + "id": "node/8850993758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8850993759" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1729182, + -26.68528 + ] + }, + "id": "node/8850993759" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8850993760" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1729265, + -26.6852802 + ] + }, + "id": "node/8850993760" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11255072124" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2247065, + -26.5327133 + ] + }, + "id": "node/11255072124" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11255072125" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2246493, + -26.5327805 + ] + }, + "id": "node/11255072125" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11255072126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.224673, + -26.5327967 + ] + }, + "id": "node/11255072126" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11255072127" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2247303, + -26.5327295 + ] + }, + "id": "node/11255072127" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8566350520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0828505, + -26.4764262 + ] + }, + "id": "node/8566350520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8566350521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0829096, + -26.4764737 + ] + }, + "id": "node/8566350521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8566350522" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0829276, + -26.4764557 + ] + }, + "id": "node/8566350522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8566350523" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0829141, + -26.4764448 + ] + }, + "id": "node/8566350523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8566350706" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0828578, + -26.4764188 + ] + }, + "id": "node/8566350706" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8566350707" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0829035, + -26.4764555 + ] + }, + "id": "node/8566350707" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792898924" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8723782, + -26.2618499 + ] + }, + "id": "node/4792898924" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792898928" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8722958, + -26.261542 + ] + }, + "id": "node/4792898928" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792898990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.872295, + -26.2615629 + ] + }, + "id": "node/4792898990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792899049" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8722704, + -26.2618468 + ] + }, + "id": "node/4792899049" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792899108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8722813, + -26.2615416 + ] + }, + "id": "node/4792899108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4792899142" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8723884, + -26.2615655 + ] + }, + "id": "node/4792899142" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8454471989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.854465, + -26.2527002 + ] + }, + "id": "node/8454471989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8454471990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8545735, + -26.2526953 + ] + }, + "id": "node/8454471990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8454471991" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8545762, + -26.2526289 + ] + }, + "id": "node/8454471991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8454471992" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.8544709, + -26.2526335 + ] + }, + "id": "node/8454471992" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10558407084" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6170132, + -27.094648 + ] + }, + "id": "node/10558407084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10558407085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6169914, + -27.0947501 + ] + }, + "id": "node/10558407085" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10558407086" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6170075, + -27.0947519 + ] + }, + "id": "node/10558407086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10558407087" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6170296, + -27.0946522 + ] + }, + "id": "node/10558407087" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6532171, + -27.0243029 + ] + }, + "id": "node/9335435865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6532266, + -27.0243368 + ] + }, + "id": "node/9335435866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435867" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6532007, + -27.0243425 + ] + }, + "id": "node/9335435867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435868" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6531912, + -27.0243086 + ] + }, + "id": "node/9335435868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435886" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6514392, + -27.0216246 + ] + }, + "id": "node/9335435886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435887" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6514532, + -27.0216866 + ] + }, + "id": "node/9335435887" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435888" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.651429, + -27.0216909 + ] + }, + "id": "node/9335435888" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435889" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.651415, + -27.0216289 + ] + }, + "id": "node/9335435889" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435890" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6509833, + -27.0216443 + ] + }, + "id": "node/9335435890" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6509846, + -27.0216939 + ] + }, + "id": "node/9335435891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.6509473, + -27.0216946 + ] + }, + "id": "node/9335435892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9335435893" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.650946, + -27.0216451 + ] + }, + "id": "node/9335435893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6614735612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4228281, + -25.6243053 + ] + }, + "id": "node/6614735612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6614735613" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4228101, + -25.624317 + ] + }, + "id": "node/6614735613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6614735614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4227925, + -25.6242948 + ] + }, + "id": "node/6614735614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6614735615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4228105, + -25.6242831 + ] + }, + "id": "node/6614735615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5664297624" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1441499, + -25.0589929 + ] + }, + "id": "node/5664297624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5664297625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1444731, + -25.0594354 + ] + }, + "id": "node/5664297625" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5664297626" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1443831, + -25.059482 + ] + }, + "id": "node/5664297626" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5664297627" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1441333, + -25.0594005 + ] + }, + "id": "node/5664297627" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5664297629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1439974, + -25.0590944 + ] + }, + "id": "node/5664297629" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5664297630" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1440085, + -25.0589962 + ] + }, + "id": "node/5664297630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8484615896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -50.1440748, + -25.0592907 + ] + }, + "id": "node/8484615896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10065445700" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2513832, + -25.45278 + ] + }, + "id": "node/10065445700" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10065445701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2512947, + -25.4527786 + ] + }, + "id": "node/10065445701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10065445702" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2512951, + -25.4527604 + ] + }, + "id": "node/10065445702" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10065445703" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2513836, + -25.4527619 + ] + }, + "id": "node/10065445703" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9661413681" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2519643, + -25.449048 + ] + }, + "id": "node/9661413681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9661413682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2519649, + -25.4490339 + ] + }, + "id": "node/9661413682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9661413683" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2518783, + -25.4490308 + ] + }, + "id": "node/9661413683" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9661413684" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2518777, + -25.4490448 + ] + }, + "id": "node/9661413684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9563266847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2502132, + -25.4506065 + ] + }, + "id": "node/9563266847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9563266848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2502197, + -25.450515 + ] + }, + "id": "node/9563266848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9563266849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2502408, + -25.4505162 + ] + }, + "id": "node/9563266849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9563266850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2502342, + -25.4506077 + ] + }, + "id": "node/9563266850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6035321697" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1695458, + -25.3502349 + ] + }, + "id": "node/6035321697" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6035321766" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.1695352, + -25.3503745 + ] + }, + "id": "node/6035321766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4589451581" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8403332, + -24.4873333 + ] + }, + "id": "node/4589451581" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5365057748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8402282, + -24.4873808 + ] + }, + "id": "node/5365057748" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6551914812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8403754, + -24.4874097 + ] + }, + "id": "node/6551914812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6551914813" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.8402721, + -24.4874572 + ] + }, + "id": "node/6551914813" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6399257941" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4095468, + -23.9606203 + ] + }, + "id": "node/6399257941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6399257942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4095439, + -23.9606648 + ] + }, + "id": "node/6399257942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6399257943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4093231, + -23.960653 + ] + }, + "id": "node/6399257943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6399257944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4093259, + -23.9606084 + ] + }, + "id": "node/6399257944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12558655650" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6696398, + -23.5214648 + ] + }, + "id": "node/12558655650" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12558655651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6696836, + -23.521544 + ] + }, + "id": "node/12558655651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12558655652" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6695646, + -23.5215962 + ] + }, + "id": "node/12558655652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12558655653" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.6695212, + -23.5215202 + ] + }, + "id": "node/12558655653" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6566024903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.203107, + -23.2703515 + ] + }, + "id": "node/6566024903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6566024904" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2030688, + -23.2703518 + ] + }, + "id": "node/6566024904" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6566024905" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.2030678, + -23.2702379 + ] + }, + "id": "node/6566024905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6566024906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.203106, + -23.2702376 + ] + }, + "id": "node/6566024906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12920278036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8577438, + -21.3592206 + ] + }, + "id": "node/12920278036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12920278037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8576791, + -21.3592476 + ] + }, + "id": "node/12920278037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12920278038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8576703, + -21.3592295 + ] + }, + "id": "node/12920278038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12920278039" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8577351, + -21.3592025 + ] + }, + "id": "node/12920278039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7306651277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8221504, + -21.3174391 + ] + }, + "id": "node/7306651277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7306651278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.822175, + -21.3175223 + ] + }, + "id": "node/7306651278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7306651279" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8221473, + -21.3175281 + ] + }, + "id": "node/7306651279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7306651280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8221211, + -21.3174477 + ] + }, + "id": "node/7306651280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6455258747" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0692847, + -22.3527692 + ] + }, + "id": "node/6455258747" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6455258748" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0690459, + -22.3528333 + ] + }, + "id": "node/6455258748" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6455258749" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0690706, + -22.3528975 + ] + }, + "id": "node/6455258749" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6455258750" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.0693001, + -22.3528333 + ] + }, + "id": "node/6455258750" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13171625622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4658775, + -23.5820799 + ] + }, + "id": "node/13171625622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13171625623" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4658749, + -23.5821246 + ] + }, + "id": "node/13171625623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13171625625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4658942, + -23.5820788 + ] + }, + "id": "node/13171625625" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13165626903" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4313683, + -23.4707821 + ] + }, + "id": "node/13165626903" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13165626905" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4313703, + -23.4706498 + ] + }, + "id": "node/13165626905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13165626906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.43139, + -23.4708117 + ] + }, + "id": "node/13165626906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13165626909" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4313507, + -23.4706521 + ] + }, + "id": "node/13165626909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13165626910" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4313726, + -23.4708142 + ] + }, + "id": "node/13165626910" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13171829503" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.4313567, + -23.4706967 + ] + }, + "id": "node/13171829503" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10795206815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1937354, + -23.084623 + ] + }, + "id": "node/10795206815" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10795206816" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1936226, + -23.0845797 + ] + }, + "id": "node/10795206816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10795206817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1935596, + -23.0846818 + ] + }, + "id": "node/10795206817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10795206818" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1935596, + -23.084738 + ] + }, + "id": "node/10795206818" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10795206819" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1936263, + -23.0847354 + ] + }, + "id": "node/10795206819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10795206820" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1936931, + -23.0847069 + ] + }, + "id": "node/10795206820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10795206821" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1937608, + -23.0846351 + ] + }, + "id": "node/10795206821" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12835159450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.635629, + -22.7660993 + ] + }, + "id": "node/12835159450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12835159451" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6356396, + -22.7660867 + ] + }, + "id": "node/12835159451" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12835159452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6356983, + -22.7661288 + ] + }, + "id": "node/12835159452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12835159453" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6356877, + -22.7661414 + ] + }, + "id": "node/12835159453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13136965478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6470232, + -22.7027389 + ] + }, + "id": "node/13136965478" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13136965479" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6470436, + -22.7028031 + ] + }, + "id": "node/13136965479" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13136965480" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6469365, + -22.7028392 + ] + }, + "id": "node/13136965480" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13136965481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.6469128, + -22.7027718 + ] + }, + "id": "node/13136965481" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6381699814" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.367314, + -22.7500296 + ] + }, + "id": "node/6381699814" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6381699815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3661564, + -22.7497445 + ] + }, + "id": "node/6381699815" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6381699816" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3661059, + -22.7498921 + ] + }, + "id": "node/6381699816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6381699817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3672371, + -22.7502147 + ] + }, + "id": "node/6381699817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5300190334" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.310441, + -22.7337289 + ] + }, + "id": "node/5300190334" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5300190335" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3103593, + -22.7338871 + ] + }, + "id": "node/5300190335" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5300190337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3103651, + -22.733702 + ] + }, + "id": "node/5300190337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6680448079" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.3102861, + -22.7338561 + ] + }, + "id": "node/6680448079" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887950" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0706045, + -22.8169205 + ] + }, + "id": "node/12849887950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0707563, + -22.8170234 + ] + }, + "id": "node/12849887951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0707894, + -22.8171502 + ] + }, + "id": "node/12849887952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887953" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0706974, + -22.8169604 + ] + }, + "id": "node/12849887953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0706563, + -22.8169363 + ] + }, + "id": "node/12849887954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887955" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0707313, + -22.8169886 + ] + }, + "id": "node/12849887955" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887956" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.07078, + -22.817086 + ] + }, + "id": "node/12849887956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887957" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0707708, + -22.8170547 + ] + }, + "id": "node/12849887957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12849887958" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.0707874, + -22.8171172 + ] + }, + "id": "node/12849887958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11042830449" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1682903, + -21.8005403 + ] + }, + "id": "node/11042830449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11042830450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1683047, + -21.8005542 + ] + }, + "id": "node/11042830450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11042830447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1684861, + -21.8003927 + ] + }, + "id": "node/11042830447" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11042830448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1684717, + -21.8003787 + ] + }, + "id": "node/11042830448" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4575647109" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3201185, + -20.5299004 + ] + }, + "id": "node/4575647109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4575647110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3201925, + -20.5298166 + ] + }, + "id": "node/4575647110" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4575647116" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3203397, + -20.5299317 + ] + }, + "id": "node/4575647116" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4575647117" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3202707, + -20.5300107 + ] + }, + "id": "node/4575647117" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388537353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9936595, + -18.96291 + ] + }, + "id": "node/6388537353" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388537356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9936194, + -18.9629187 + ] + }, + "id": "node/6388537356" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388537354" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9936071, + -18.9627409 + ] + }, + "id": "node/6388537354" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388537355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9935464, + -18.9627632 + ] + }, + "id": "node/6388537355" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10125199729" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1925225, + -18.6523091 + ] + }, + "id": "node/10125199729" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10125199730" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1925286, + -18.6523043 + ] + }, + "id": "node/10125199730" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10125199732" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1925448, + -18.6523399 + ] + }, + "id": "node/10125199732" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153146232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.774559, + -23.6909881 + ] + }, + "id": "node/9153146232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153146233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7745714, + -23.6909981 + ] + }, + "id": "node/9153146233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153146234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7745394, + -23.6910287 + ] + }, + "id": "node/9153146234" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153146235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7745387, + -23.6910094 + ] + }, + "id": "node/9153146235" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762117972" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7263996, + -23.8281284 + ] + }, + "id": "node/7762117972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762117973" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7258079, + -23.8282805 + ] + }, + "id": "node/7762117973" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762117974" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7262654, + -23.8282146 + ] + }, + "id": "node/7762117974" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762117975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.726251, + -23.8281666 + ] + }, + "id": "node/7762117975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762117976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7263614, + -23.8281899 + ] + }, + "id": "node/7762117976" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130366406" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7268202, + -23.828283 + ] + }, + "id": "node/9130366406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130366407" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7269159, + -23.8282571 + ] + }, + "id": "node/9130366407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130366408" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7269273, + -23.8282922 + ] + }, + "id": "node/9130366408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130366409" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7268315, + -23.828318 + ] + }, + "id": "node/9130366409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5248090779" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7166448, + -23.7668663 + ] + }, + "id": "node/5248090779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5847372397" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7165981, + -23.7669477 + ] + }, + "id": "node/5847372397" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5847372398" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7165856, + -23.7668748 + ] + }, + "id": "node/5847372398" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5847372400" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7166573, + -23.7669394 + ] + }, + "id": "node/5847372400" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7126333095" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7094892, + -23.7554135 + ] + }, + "id": "node/7126333095" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7126333096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7095748, + -23.7556068 + ] + }, + "id": "node/7126333096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7126333098" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7094052, + -23.7554446 + ] + }, + "id": "node/7126333098" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9793228108" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7094354, + -23.7555129 + ] + }, + "id": "node/9793228108" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9793228109" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7094271, + -23.755516 + ] + }, + "id": "node/9793228109" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9793228110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7094803, + -23.7556361 + ] + }, + "id": "node/9793228110" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9793228111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7094901, + -23.7556325 + ] + }, + "id": "node/9793228111" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9793228112" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7095519, + -23.7556153 + ] + }, + "id": "node/9793228112" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9793228113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7095753, + -23.7556681 + ] + }, + "id": "node/9793228113" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9793228114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7095157, + -23.7556902 + ] + }, + "id": "node/9793228114" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378178" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6963178, + -23.7361764 + ] + }, + "id": "node/6223378178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6962461, + -23.7362259 + ] + }, + "id": "node/6223378179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6961826, + -23.7359295 + ] + }, + "id": "node/6223378448" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378449" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6962309, + -23.7359888 + ] + }, + "id": "node/6223378449" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378450" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6962913, + -23.7361766 + ] + }, + "id": "node/6223378450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378451" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6962616, + -23.7361957 + ] + }, + "id": "node/6223378451" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378452" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.696096, + -23.7359828 + ] + }, + "id": "node/6223378452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378453" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6962224, + -23.7361453 + ] + }, + "id": "node/6223378453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378456" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6961434, + -23.7360438 + ] + }, + "id": "node/6223378456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378596" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6963014, + -23.7362926 + ] + }, + "id": "node/6223378596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6223378597" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6963721, + -23.7362424 + ] + }, + "id": "node/6223378597" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762937814" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6882464, + -23.7050991 + ] + }, + "id": "node/7762937814" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762937815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6883471, + -23.7053671 + ] + }, + "id": "node/7762937815" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762937816" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6882574, + -23.7053953 + ] + }, + "id": "node/7762937816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7762937817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6881567, + -23.7051273 + ] + }, + "id": "node/7762937817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12133164280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.688299, + -23.705239 + ] + }, + "id": "node/12133164280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6654109080" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6839337, + -23.6945954 + ] + }, + "id": "node/6654109080" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6654109081" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6844855, + -23.6950909 + ] + }, + "id": "node/6654109081" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6654109082" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6843883, + -23.6951702 + ] + }, + "id": "node/6654109082" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6654109083" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6840289, + -23.6948898 + ] + }, + "id": "node/6654109083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6654109084" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6837848, + -23.6950273 + ] + }, + "id": "node/6654109084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6654128885" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6837432, + -23.69472 + ] + }, + "id": "node/6654128885" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177627" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9350254, + -23.5450098 + ] + }, + "id": "node/9061177627" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177628" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9351563, + -23.5449145 + ] + }, + "id": "node/9061177628" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177629" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9350476, + -23.5447891 + ] + }, + "id": "node/9061177629" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177630" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9349168, + -23.5448844 + ] + }, + "id": "node/9061177630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177623" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9284965, + -23.5350105 + ] + }, + "id": "node/9061177623" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177624" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9284789, + -23.5349488 + ] + }, + "id": "node/9061177624" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177625" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9282798, + -23.5350625 + ] + }, + "id": "node/9061177625" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177626" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9282622, + -23.5350008 + ] + }, + "id": "node/9061177626" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177619" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9016551, + -23.5274635 + ] + }, + "id": "node/9061177619" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177620" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9017988, + -23.5275514 + ] + }, + "id": "node/9061177620" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177621" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9017628, + -23.5276009 + ] + }, + "id": "node/9061177621" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177622" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.9016191, + -23.527513 + ] + }, + "id": "node/9061177622" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061168016" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8937405, + -23.5243582 + ] + }, + "id": "node/9061168016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8936724, + -23.5243793 + ] + }, + "id": "node/9061177617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061168015" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8936274, + -23.5240515 + ] + }, + "id": "node/9061168015" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061177618" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8935592, + -23.5240726 + ] + }, + "id": "node/9061177618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091036" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8891425, + -23.513669 + ] + }, + "id": "node/9061091036" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091037" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8891578, + -23.5137685 + ] + }, + "id": "node/9061091037" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8891086, + -23.513784 + ] + }, + "id": "node/9061091038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091039" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8890815, + -23.5136783 + ] + }, + "id": "node/9061091039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091028" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7759356, + -23.5282186 + ] + }, + "id": "node/9061091028" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091029" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7759943, + -23.5282872 + ] + }, + "id": "node/9061091029" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091030" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.775829, + -23.5284138 + ] + }, + "id": "node/9061091030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091031" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.775764, + -23.52834 + ] + }, + "id": "node/9061091031" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091032" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8354068, + -23.5188115 + ] + }, + "id": "node/9061091032" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091033" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8355007, + -23.518924 + ] + }, + "id": "node/9061091033" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091034" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8354419, + -23.5189694 + ] + }, + "id": "node/9061091034" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8353449, + -23.5188531 + ] + }, + "id": "node/9061091035" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153158721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7613844, + -23.6551287 + ] + }, + "id": "node/9153158721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153158722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7614199, + -23.6550846 + ] + }, + "id": "node/9153158722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153158723" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7613041, + -23.6550063 + ] + }, + "id": "node/9153158723" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153158724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7612685, + -23.6550505 + ] + }, + "id": "node/9153158724" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153166094" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7331272, + -23.6439198 + ] + }, + "id": "node/9153166094" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153166095" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7330435, + -23.6439335 + ] + }, + "id": "node/9153166095" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153166096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7330309, + -23.6438688 + ] + }, + "id": "node/9153166096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153166097" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7331147, + -23.6438552 + ] + }, + "id": "node/9153166097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523382" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7016736, + -23.677822 + ] + }, + "id": "node/9060523382" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523383" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7017237, + -23.6778597 + ] + }, + "id": "node/9060523383" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7015179, + -23.6780892 + ] + }, + "id": "node/9060523384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7014679, + -23.6780516 + ] + }, + "id": "node/9060523385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153175420" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7111589, + -23.6545741 + ] + }, + "id": "node/9153175420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153175421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7111675, + -23.6545113 + ] + }, + "id": "node/9153175421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153175422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7113256, + -23.6545294 + ] + }, + "id": "node/9153175422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153175423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7113169, + -23.6545923 + ] + }, + "id": "node/9153175423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130297804" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6994119, + -23.6409586 + ] + }, + "id": "node/9130297804" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130297805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6992113, + -23.6410682 + ] + }, + "id": "node/9130297805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130297806" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6991909, + -23.6410368 + ] + }, + "id": "node/9130297806" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130297807" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6993915, + -23.6409272 + ] + }, + "id": "node/9130297807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130332420" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6930202, + -23.6335444 + ] + }, + "id": "node/9130332420" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130332421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6930907, + -23.6336206 + ] + }, + "id": "node/9130332421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130332422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6930107, + -23.6336827 + ] + }, + "id": "node/9130332422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130332423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6929402, + -23.6336065 + ] + }, + "id": "node/9130332423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8728407203" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7368079, + -23.5900817 + ] + }, + "id": "node/8728407203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8728407204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7367857, + -23.5901257 + ] + }, + "id": "node/8728407204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8728407205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7365407, + -23.5900219 + ] + }, + "id": "node/8728407205" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8728407206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.736563, + -23.5899777 + ] + }, + "id": "node/8728407206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8728407207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7365548, + -23.5899939 + ] + }, + "id": "node/8728407207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6788816184" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7234798, + -23.5860873 + ] + }, + "id": "node/6788816184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6788825985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7234191, + -23.5860484 + ] + }, + "id": "node/6788825985" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130239311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7236029, + -23.5858008 + ] + }, + "id": "node/9130239311" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130239312" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7236717, + -23.5858459 + ] + }, + "id": "node/9130239312" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8048863587" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7028532, + -23.6224591 + ] + }, + "id": "node/8048863587" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8048840484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7028752, + -23.6224362 + ] + }, + "id": "node/8048840484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8048863585" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7025191, + -23.622148 + ] + }, + "id": "node/8048863585" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8048863586" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7024971, + -23.6221709 + ] + }, + "id": "node/8048863586" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5127024243" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.688547, + -23.6270525 + ] + }, + "id": "node/5127024243" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5127024246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6886514, + -23.6269903 + ] + }, + "id": "node/5127024246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130307635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6887597, + -23.6271429 + ] + }, + "id": "node/9130307635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130307636" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6886583, + -23.6272095 + ] + }, + "id": "node/9130307636" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561442074" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6947019, + -23.6140167 + ] + }, + "id": "node/6561442074" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561442076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6947003, + -23.6140128 + ] + }, + "id": "node/6561442076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561478895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.694695, + -23.613997 + ] + }, + "id": "node/6561478895" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561478897" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6945249, + -23.6140636 + ] + }, + "id": "node/6561478897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561478898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6945178, + -23.6140423 + ] + }, + "id": "node/6561478898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561582002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6823937, + -23.6185365 + ] + }, + "id": "node/6561582002" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561582003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6824884, + -23.6186464 + ] + }, + "id": "node/6561582003" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561582004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6824619, + -23.6184948 + ] + }, + "id": "node/6561582004" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6561582005" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6825641, + -23.6185968 + ] + }, + "id": "node/6561582005" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130322365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6686313, + -23.6094052 + ] + }, + "id": "node/9130322365" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130322366" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6685916, + -23.609434 + ] + }, + "id": "node/9130322366" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130322367" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6684537, + -23.6092739 + ] + }, + "id": "node/9130322367" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130322368" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6684934, + -23.6092452 + ] + }, + "id": "node/9130322368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130239641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6618023, + -23.6038127 + ] + }, + "id": "node/9130239641" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130239642" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6617487, + -23.6038546 + ] + }, + "id": "node/9130239642" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130239643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6618677, + -23.603982 + ] + }, + "id": "node/9130239643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130239644" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6619218, + -23.6039351 + ] + }, + "id": "node/9130239644" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6401159, + -23.646783 + ] + }, + "id": "node/9061157852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6401585, + -23.6468033 + ] + }, + "id": "node/9061157853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402714, + -23.6466044 + ] + }, + "id": "node/9061157854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402288, + -23.6465841 + ] + }, + "id": "node/9061157855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13120446009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402172, + -23.6466047 + ] + }, + "id": "node/13120446009" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13120446013" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402308, + -23.6465851 + ] + }, + "id": "node/13120446013" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13120446219" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6401427, + -23.6467957 + ] + }, + "id": "node/13120446219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13120446222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402493, + -23.6465939 + ] + }, + "id": "node/13120446222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5730402529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6520444, + -23.5979162 + ] + }, + "id": "node/5730402529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5730402532" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6520536, + -23.5980243 + ] + }, + "id": "node/5730402532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130305042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6519002, + -23.5979265 + ] + }, + "id": "node/9130305042" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130305043" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6519113, + -23.5980344 + ] + }, + "id": "node/9130305043" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130305038" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6456777, + -23.5987547 + ] + }, + "id": "node/9130305038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130305039" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645679, + -23.5987883 + ] + }, + "id": "node/9130305039" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130305040" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6457868, + -23.5987849 + ] + }, + "id": "node/9130305040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130305041" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6457855, + -23.5987513 + ] + }, + "id": "node/9130305041" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5851875089" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371688, + -23.5978389 + ] + }, + "id": "node/5851875089" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266416" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371652, + -23.5978793 + ] + }, + "id": "node/6900266416" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6370192, + -23.5978779 + ] + }, + "id": "node/6900266417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6370198, + -23.5978379 + ] + }, + "id": "node/6900266418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371669, + -23.5978739 + ] + }, + "id": "node/6900266419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371694, + -23.5978479 + ] + }, + "id": "node/6900266421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371705, + -23.5978502 + ] + }, + "id": "node/6900266422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371738, + -23.5978559 + ] + }, + "id": "node/6900266423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266424" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371743, + -23.5978627 + ] + }, + "id": "node/6900266424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371718, + -23.5978691 + ] + }, + "id": "node/6900266425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371654, + -23.5978748 + ] + }, + "id": "node/6900266426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371683, + -23.5978729 + ] + }, + "id": "node/6900266427" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371724, + -23.5978529 + ] + }, + "id": "node/6900266429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266430" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371744, + -23.5978593 + ] + }, + "id": "node/6900266430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266431" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371735, + -23.597866 + ] + }, + "id": "node/6900266431" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371584, + -23.5978389 + ] + }, + "id": "node/6900266432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6900266433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6371578, + -23.5978795 + ] + }, + "id": "node/6900266433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155453517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6031837, + -23.6036644 + ] + }, + "id": "node/9155453517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155453518" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6032359, + -23.6037362 + ] + }, + "id": "node/9155453518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155453519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6034278, + -23.6036191 + ] + }, + "id": "node/9155453519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155453520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6033756, + -23.6035473 + ] + }, + "id": "node/9155453520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822733306" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5797611, + -23.6247702 + ] + }, + "id": "node/10822733306" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822733307" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5797057, + -23.6247995 + ] + }, + "id": "node/10822733307" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822733308" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5797206, + -23.6248231 + ] + }, + "id": "node/10822733308" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10822733309" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.579776, + -23.6247938 + ] + }, + "id": "node/10822733309" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4622974712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5969192, + -23.5983535 + ] + }, + "id": "node/4622974712" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155428358" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5975074, + -23.5981955 + ] + }, + "id": "node/9155428358" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155428359" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.597519, + -23.5982855 + ] + }, + "id": "node/9155428359" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155428360" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5974752, + -23.5982902 + ] + }, + "id": "node/9155428360" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155428361" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5974635, + -23.5982003 + ] + }, + "id": "node/9155428361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155428362" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5969461, + -23.5982207 + ] + }, + "id": "node/9155428362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155428363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5969005, + -23.5982263 + ] + }, + "id": "node/9155428363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155428364" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5969649, + -23.5983478 + ] + }, + "id": "node/9155428364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409867" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5980538, + -23.591391 + ] + }, + "id": "node/9155409867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409868" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5980913, + -23.5913931 + ] + }, + "id": "node/9155409868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409869" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5980952, + -23.5913354 + ] + }, + "id": "node/9155409869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409870" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5980577, + -23.5913333 + ] + }, + "id": "node/9155409870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409871" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5975386, + -23.5912423 + ] + }, + "id": "node/9155409871" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409872" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5975689, + -23.5912456 + ] + }, + "id": "node/9155409872" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409873" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5975573, + -23.5913346 + ] + }, + "id": "node/9155409873" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155409874" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.597527, + -23.5913313 + ] + }, + "id": "node/9155409874" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5889274, + -23.5921588 + ] + }, + "id": "node/9060523378" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5889922, + -23.5922147 + ] + }, + "id": "node/9060523379" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5888398, + -23.5923648 + ] + }, + "id": "node/9060523380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060523381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5887598, + -23.5923159 + ] + }, + "id": "node/9060523381" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155460711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5837267, + -23.5849934 + ] + }, + "id": "node/9155460711" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155460712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.583749, + -23.5850468 + ] + }, + "id": "node/9155460712" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155460713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5835301, + -23.5851204 + ] + }, + "id": "node/9155460713" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155460714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5835094, + -23.5850726 + ] + }, + "id": "node/9155460714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7427856, + -23.5366425 + ] + }, + "id": "node/9061091024" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091025" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7428742, + -23.5367288 + ] + }, + "id": "node/9061091025" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091026" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7428146, + -23.5367849 + ] + }, + "id": "node/9061091026" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061091027" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7427221, + -23.5366868 + ] + }, + "id": "node/9061091027" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806991425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7325901, + -23.5458383 + ] + }, + "id": "node/4806991425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806991426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7325249, + -23.5457702 + ] + }, + "id": "node/4806991426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806991427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7323676, + -23.5458968 + ] + }, + "id": "node/4806991427" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4806991428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7324328, + -23.5459648 + ] + }, + "id": "node/4806991428" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060528607" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7324871, + -23.5457736 + ] + }, + "id": "node/9060528607" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060528608" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7325533, + -23.5458389 + ] + }, + "id": "node/9060528608" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060528609" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7324617, + -23.545912 + ] + }, + "id": "node/9060528609" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060528610" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7324057, + -23.5458467 + ] + }, + "id": "node/9060528610" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4614311384" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7084583, + -23.5714674 + ] + }, + "id": "node/4614311384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4614311385" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7084992, + -23.5715724 + ] + }, + "id": "node/4614311385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4614311386" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7084425, + -23.571591 + ] + }, + "id": "node/4614311386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4614311387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7084015, + -23.571486 + ] + }, + "id": "node/4614311387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4915049493" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7014585, + -23.5646824 + ] + }, + "id": "node/4915049493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4915049494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.701436, + -23.5646747 + ] + }, + "id": "node/4915049494" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4915049495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7014038, + -23.5647533 + ] + }, + "id": "node/4915049495" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4915049499" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7014262, + -23.564761 + ] + }, + "id": "node/4915049499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191508150" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7021739, + -23.5671054 + ] + }, + "id": "node/5191508150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191508151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7020405, + -23.5670495 + ] + }, + "id": "node/5191508151" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191508152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7020259, + -23.5670787 + ] + }, + "id": "node/5191508152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191508153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7021593, + -23.5671346 + ] + }, + "id": "node/5191508153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130187276" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7015773, + -23.5674467 + ] + }, + "id": "node/9130187276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130187277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7015633, + -23.5674873 + ] + }, + "id": "node/9130187277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130187278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7012894, + -23.5674077 + ] + }, + "id": "node/9130187278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9130187279" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7013034, + -23.5673673 + ] + }, + "id": "node/9130187279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216523" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6945915, + -23.5674009 + ] + }, + "id": "node/9061216523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216526" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6945947, + -23.5673652 + ] + }, + "id": "node/9061216526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216524" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6942019, + -23.5673715 + ] + }, + "id": "node/9061216524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6942052, + -23.5673358 + ] + }, + "id": "node/9061216525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4410694193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7116708, + -23.5569566 + ] + }, + "id": "node/4410694193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4410694390" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7117437, + -23.5570691 + ] + }, + "id": "node/4410694390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060528606" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7115993, + -23.5569955 + ] + }, + "id": "node/9060528606" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9300300227" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7116985, + -23.5570938 + ] + }, + "id": "node/9300300227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11059718861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7116667, + -23.5571011 + ] + }, + "id": "node/11059718861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11059718862" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7116491, + -23.5571107 + ] + }, + "id": "node/11059718862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4764369579" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7018099, + -23.5615545 + ] + }, + "id": "node/4764369579" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4764369580" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7017789, + -23.5615829 + ] + }, + "id": "node/4764369580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4764369581" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7018612, + -23.5616518 + ] + }, + "id": "node/4764369581" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4764369582" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7018904, + -23.5616218 + ] + }, + "id": "node/4764369582" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640387293" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6664968, + -23.5626178 + ] + }, + "id": "node/5640387293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640387294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.66655, + -23.5626682 + ] + }, + "id": "node/5640387294" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5640387295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6665583, + -23.5626759 + ] + }, + "id": "node/5640387295" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388013227" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7268015, + -23.4869616 + ] + }, + "id": "node/6388013227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388013228" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7267511, + -23.4870143 + ] + }, + "id": "node/6388013228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388013229" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7268915, + -23.4871273 + ] + }, + "id": "node/6388013229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388013230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7269419, + -23.4870747 + ] + }, + "id": "node/6388013230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153219445" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7003051, + -23.5203553 + ] + }, + "id": "node/9153219445" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153219446" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7002845, + -23.5203146 + ] + }, + "id": "node/9153219446" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153219447" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7003339, + -23.5202937 + ] + }, + "id": "node/9153219447" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153219448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7003544, + -23.5203345 + ] + }, + "id": "node/9153219448" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13045641096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6755854, + -23.4994988 + ] + }, + "id": "node/13045641096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13045641097" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6755856, + -23.499514 + ] + }, + "id": "node/13045641097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13045641098" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6754689, + -23.4995154 + ] + }, + "id": "node/13045641098" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13045641099" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6754687, + -23.4995002 + ] + }, + "id": "node/13045641099" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153217237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6625585, + -23.4960268 + ] + }, + "id": "node/9153217237" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153217238" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6625836, + -23.4960671 + ] + }, + "id": "node/9153217238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153217239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6626232, + -23.4960648 + ] + }, + "id": "node/9153217239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153217240" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.662608, + -23.4960319 + ] + }, + "id": "node/9153217240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153198297" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6689849, + -23.4746023 + ] + }, + "id": "node/9153198297" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153198298" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6689857, + -23.4746691 + ] + }, + "id": "node/9153198298" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153198299" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6689303, + -23.4746697 + ] + }, + "id": "node/9153198299" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153198300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6689295, + -23.4746029 + ] + }, + "id": "node/9153198300" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155226812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6106621, + -23.5641767 + ] + }, + "id": "node/9155226812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155226813" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6106133, + -23.5641313 + ] + }, + "id": "node/9155226813" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155226814" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6106502, + -23.564098 + ] + }, + "id": "node/9155226814" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155226815" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.610699, + -23.5641433 + ] + }, + "id": "node/9155226815" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155226816" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6119933, + -23.5645014 + ] + }, + "id": "node/9155226816" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155227617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.612001, + -23.5644711 + ] + }, + "id": "node/9155227617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155227618" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6120511, + -23.5644817 + ] + }, + "id": "node/9155227618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155227619" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6120434, + -23.564512 + ] + }, + "id": "node/9155227619" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6337172, + -23.5508763 + ] + }, + "id": "node/9061216519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6337403, + -23.5509259 + ] + }, + "id": "node/9061216520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6336604, + -23.5509572 + ] + }, + "id": "node/9061216521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216522" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6336373, + -23.5509076 + ] + }, + "id": "node/9061216522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205634" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6151062, + -23.5590664 + ] + }, + "id": "node/9155205634" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205635" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6151405, + -23.5591173 + ] + }, + "id": "node/9155205635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205636" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6150936, + -23.5591438 + ] + }, + "id": "node/9155205636" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205637" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6150593, + -23.559093 + ] + }, + "id": "node/9155205637" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205638" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6149822, + -23.5583855 + ] + }, + "id": "node/9155205638" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205639" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.615005, + -23.558416 + ] + }, + "id": "node/9155205639" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205640" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6150534, + -23.5583855 + ] + }, + "id": "node/9155205640" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155205641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6150305, + -23.558355 + ] + }, + "id": "node/9155205641" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153259230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6486466, + -23.5387302 + ] + }, + "id": "node/9153259230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153259231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6486216, + -23.5387926 + ] + }, + "id": "node/9153259231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153259233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6485411, + -23.5386947 + ] + }, + "id": "node/9153259233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153272934" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6403629, + -23.549248 + ] + }, + "id": "node/9153272934" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153272935" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6403723, + -23.5492833 + ] + }, + "id": "node/9153272935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153272936" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402619, + -23.5492971 + ] + }, + "id": "node/9153272936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153272937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6402509, + -23.5492553 + ] + }, + "id": "node/9153272937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153259232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6485161, + -23.5387571 + ] + }, + "id": "node/9153259232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153263823" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449797, + -23.5340811 + ] + }, + "id": "node/9153263823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153263824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645026, + -23.5341109 + ] + }, + "id": "node/9153263824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153263825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449844, + -23.5341653 + ] + }, + "id": "node/9153263825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153263826" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644938, + -23.5341355 + ] + }, + "id": "node/9153263826" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264589" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6298478, + -23.5480696 + ] + }, + "id": "node/9153264589" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264590" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6299015, + -23.5481024 + ] + }, + "id": "node/9153264590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264591" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6299883, + -23.5479703 + ] + }, + "id": "node/9153264591" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264592" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6299351, + -23.5479422 + ] + }, + "id": "node/9153264592" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264593" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6300451, + -23.5458917 + ] + }, + "id": "node/9153264593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264594" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6300796, + -23.5459122 + ] + }, + "id": "node/9153264594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264595" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6300427, + -23.5459645 + ] + }, + "id": "node/9153264595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153264596" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6300082, + -23.5459441 + ] + }, + "id": "node/9153264596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189178" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6274615, + -23.5499701 + ] + }, + "id": "node/9155189178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6274831, + -23.5498975 + ] + }, + "id": "node/9155189179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6276234, + -23.5499326 + ] + }, + "id": "node/9155189180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6276018, + -23.5500052 + ] + }, + "id": "node/9155189181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6263649, + -23.549974 + ] + }, + "id": "node/9155189182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6264315, + -23.5499903 + ] + }, + "id": "node/9155189183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189184" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6264531, + -23.5499159 + ] + }, + "id": "node/9155189184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155189185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6263865, + -23.5498996 + ] + }, + "id": "node/9155189185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155237043" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6026806, + -23.5741746 + ] + }, + "id": "node/9155237043" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155237040" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6026252, + -23.574286 + ] + }, + "id": "node/9155237040" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155237041" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6025818, + -23.5742679 + ] + }, + "id": "node/9155237041" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155237042" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6026373, + -23.5741565 + ] + }, + "id": "node/9155237042" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061207916" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5647442, + -23.538845 + ] + }, + "id": "node/9061207916" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.564964, + -23.5388853 + ] + }, + "id": "node/9061216517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061216518" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5649475, + -23.5389609 + ] + }, + "id": "node/9061216518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321397653" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5647277, + -23.5389206 + ] + }, + "id": "node/9321397653" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9321397654" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.564735, + -23.5388873 + ] + }, + "id": "node/9321397654" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446991, + -23.4836942 + ] + }, + "id": "node/5845338509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446955, + -23.4836935 + ] + }, + "id": "node/5845338510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446803, + -23.4837195 + ] + }, + "id": "node/5845338511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446666, + -23.4837156 + ] + }, + "id": "node/5845338512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338513" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446395, + -23.4837062 + ] + }, + "id": "node/5845338513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338514" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446262, + -23.4837009 + ] + }, + "id": "node/5845338514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644613, + -23.4836953 + ] + }, + "id": "node/5845338515" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338516" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446001, + -23.4836892 + ] + }, + "id": "node/5845338516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445874, + -23.4836827 + ] + }, + "id": "node/5845338517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338518" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644575, + -23.4836759 + ] + }, + "id": "node/5845338518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445628, + -23.4836686 + ] + }, + "id": "node/5845338519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338520" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445508, + -23.483661 + ] + }, + "id": "node/5845338520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338521" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445391, + -23.4836531 + ] + }, + "id": "node/5845338521" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338522" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445278, + -23.4836448 + ] + }, + "id": "node/5845338522" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338523" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445167, + -23.4836362 + ] + }, + "id": "node/5845338523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338524" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445059, + -23.4836272 + ] + }, + "id": "node/5845338524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444954, + -23.4836179 + ] + }, + "id": "node/5845338525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338526" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444853, + -23.4836083 + ] + }, + "id": "node/5845338526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444755, + -23.4835985 + ] + }, + "id": "node/5845338527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338528" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444661, + -23.4835883 + ] + }, + "id": "node/5845338528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644457, + -23.4835778 + ] + }, + "id": "node/5845338529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338530" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444484, + -23.4835671 + ] + }, + "id": "node/5845338530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444401, + -23.4835561 + ] + }, + "id": "node/5845338531" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338532" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444247, + -23.4835334 + ] + }, + "id": "node/5845338532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338533" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444176, + -23.4835218 + ] + }, + "id": "node/5845338533" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338534" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444109, + -23.4835099 + ] + }, + "id": "node/5845338534" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338535" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444084, + -23.483504 + ] + }, + "id": "node/5845338535" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338536" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.64443, + -23.4834861 + ] + }, + "id": "node/5845338536" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338537" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444257, + -23.4834819 + ] + }, + "id": "node/5845338537" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338538" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444088, + -23.4834692 + ] + }, + "id": "node/5845338538" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338539" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6444053, + -23.4834648 + ] + }, + "id": "node/5845338539" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338540" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445507, + -23.4833065 + ] + }, + "id": "node/5845338540" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845338541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445494, + -23.4833034 + ] + }, + "id": "node/5845338541" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339136" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445131, + -23.4824357 + ] + }, + "id": "node/5845339136" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339137" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445169, + -23.4824326 + ] + }, + "id": "node/5845339137" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339138" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445232, + -23.4823928 + ] + }, + "id": "node/5845339138" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445281, + -23.4823913 + ] + }, + "id": "node/5845339139" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445423, + -23.4823939 + ] + }, + "id": "node/5845339140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339141" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644548, + -23.4823962 + ] + }, + "id": "node/5845339141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339142" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445427, + -23.4824361 + ] + }, + "id": "node/5845339142" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339143" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445481, + -23.4824383 + ] + }, + "id": "node/5845339143" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339144" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446698, + -23.4824563 + ] + }, + "id": "node/5845339144" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339145" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446764, + -23.4824537 + ] + }, + "id": "node/5845339145" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339146" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446896, + -23.4824482 + ] + }, + "id": "node/5845339146" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339147" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644693, + -23.4824442 + ] + }, + "id": "node/5845339147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339148" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445619, + -23.4821321 + ] + }, + "id": "node/5845339148" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339149" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445622, + -23.4821257 + ] + }, + "id": "node/5845339149" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339150" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445736, + -23.4820732 + ] + }, + "id": "node/5845339150" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445784, + -23.4820693 + ] + }, + "id": "node/5845339151" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446058, + -23.4820606 + ] + }, + "id": "node/5845339152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446073, + -23.4820565 + ] + }, + "id": "node/5845339153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339154" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445917, + -23.4820196 + ] + }, + "id": "node/5845339154" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339155" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6445919, + -23.4820142 + ] + }, + "id": "node/5845339155" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339156" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446006, + -23.4820036 + ] + }, + "id": "node/5845339156" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339157" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446198, + -23.4819835 + ] + }, + "id": "node/5845339157" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446302, + -23.4819742 + ] + }, + "id": "node/5845339158" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339159" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446411, + -23.4819654 + ] + }, + "id": "node/5845339159" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339160" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446526, + -23.4819571 + ] + }, + "id": "node/5845339160" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339161" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446644, + -23.4819494 + ] + }, + "id": "node/5845339161" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446767, + -23.4819423 + ] + }, + "id": "node/5845339162" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6446893, + -23.4819357 + ] + }, + "id": "node/5845339163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447023, + -23.4819298 + ] + }, + "id": "node/5845339164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447157, + -23.4819245 + ] + }, + "id": "node/5845339165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339166" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447293, + -23.4819198 + ] + }, + "id": "node/5845339166" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339167" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447431, + -23.4819158 + ] + }, + "id": "node/5845339167" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339168" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447714, + -23.4819098 + ] + }, + "id": "node/5845339168" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339169" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6447857, + -23.4819078 + ] + }, + "id": "node/5845339169" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339170" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448001, + -23.4819065 + ] + }, + "id": "node/5845339170" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339171" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448146, + -23.4819059 + ] + }, + "id": "node/5845339171" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448291, + -23.4819059 + ] + }, + "id": "node/5845339172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448436, + -23.4819067 + ] + }, + "id": "node/5845339173" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644858, + -23.4819082 + ] + }, + "id": "node/5845339174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448722, + -23.4819103 + ] + }, + "id": "node/5845339175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448895, + -23.4819187 + ] + }, + "id": "node/5845339176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339177" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449048, + -23.4819555 + ] + }, + "id": "node/5845339177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339178" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644911, + -23.4819535 + ] + }, + "id": "node/5845339178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339179" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6450574, + -23.482251 + ] + }, + "id": "node/5845339179" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339180" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6450634, + -23.4822491 + ] + }, + "id": "node/5845339180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339181" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451301, + -23.4822246 + ] + }, + "id": "node/5845339181" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339182" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645134, + -23.4822273 + ] + }, + "id": "node/5845339182" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339183" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451585, + -23.4822903 + ] + }, + "id": "node/5845339183" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339184" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451622, + -23.48229 + ] + }, + "id": "node/5845339184" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339185" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645178, + -23.4822839 + ] + }, + "id": "node/5845339185" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339186" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451813, + -23.4822874 + ] + }, + "id": "node/5845339186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339187" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451841, + -23.4822936 + ] + }, + "id": "node/5845339187" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451892, + -23.4823061 + ] + }, + "id": "node/5845339188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339189" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451935, + -23.4823189 + ] + }, + "id": "node/5845339189" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339190" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451972, + -23.4823318 + ] + }, + "id": "node/5845339190" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339191" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452001, + -23.4823449 + ] + }, + "id": "node/5845339191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339192" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452023, + -23.4823582 + ] + }, + "id": "node/5845339192" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339193" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452037, + -23.4823715 + ] + }, + "id": "node/5845339193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339194" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452044, + -23.4823848 + ] + }, + "id": "node/5845339194" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339195" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452043, + -23.4823982 + ] + }, + "id": "node/5845339195" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339196" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452034, + -23.4824116 + ] + }, + "id": "node/5845339196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339197" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452018, + -23.4824248 + ] + }, + "id": "node/5845339197" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339198" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452007, + -23.4824314 + ] + }, + "id": "node/5845339198" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339199" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451875, + -23.4824366 + ] + }, + "id": "node/5845339199" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339200" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451872, + -23.4824415 + ] + }, + "id": "node/5845339200" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339201" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452528, + -23.4826024 + ] + }, + "id": "node/5845339201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645251, + -23.4826073 + ] + }, + "id": "node/5845339202" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339203" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452502, + -23.4826127 + ] + }, + "id": "node/5845339203" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339204" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452888, + -23.4827062 + ] + }, + "id": "node/5845339204" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339205" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452928, + -23.4827084 + ] + }, + "id": "node/5845339205" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453298, + -23.4826957 + ] + }, + "id": "node/5845339206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453369, + -23.4826971 + ] + }, + "id": "node/5845339207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453427, + -23.4827006 + ] + }, + "id": "node/5845339208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339209" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453454, + -23.4827065 + ] + }, + "id": "node/5845339209" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453454, + -23.482713 + ] + }, + "id": "node/5845339210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453419, + -23.4827185 + ] + }, + "id": "node/5845339211" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339212" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453363, + -23.4827217 + ] + }, + "id": "node/5845339212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339213" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453034, + -23.4827326 + ] + }, + "id": "node/5845339213" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339214" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453026, + -23.482737 + ] + }, + "id": "node/5845339214" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339215" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453194, + -23.4827811 + ] + }, + "id": "node/5845339215" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339216" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453151, + -23.4827861 + ] + }, + "id": "node/5845339216" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339217" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453102, + -23.482791 + ] + }, + "id": "node/5845339217" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339218" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6453007, + -23.4828011 + ] + }, + "id": "node/5845339218" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339219" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452916, + -23.4828115 + ] + }, + "id": "node/5845339219" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339220" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452829, + -23.4828223 + ] + }, + "id": "node/5845339220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339221" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452746, + -23.4828333 + ] + }, + "id": "node/5845339221" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339222" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452668, + -23.4828445 + ] + }, + "id": "node/5845339222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339223" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452594, + -23.4828561 + ] + }, + "id": "node/5845339223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339224" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452525, + -23.4828678 + ] + }, + "id": "node/5845339224" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339225" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645246, + -23.4828798 + ] + }, + "id": "node/5845339225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339226" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452401, + -23.482892 + ] + }, + "id": "node/5845339226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339227" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452346, + -23.4829044 + ] + }, + "id": "node/5845339227" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339228" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452296, + -23.482917 + ] + }, + "id": "node/5845339228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339229" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452251, + -23.4829297 + ] + }, + "id": "node/5845339229" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452211, + -23.4829426 + ] + }, + "id": "node/5845339230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452177, + -23.4829556 + ] + }, + "id": "node/5845339231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452147, + -23.4829687 + ] + }, + "id": "node/5845339232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452123, + -23.4829819 + ] + }, + "id": "node/5845339233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452104, + -23.4829951 + ] + }, + "id": "node/5845339234" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645209, + -23.4830085 + ] + }, + "id": "node/5845339235" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339236" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452081, + -23.4830218 + ] + }, + "id": "node/5845339236" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452078, + -23.4830352 + ] + }, + "id": "node/5845339237" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339238" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645208, + -23.4830486 + ] + }, + "id": "node/5845339238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452087, + -23.483062 + ] + }, + "id": "node/5845339239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339240" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.64521, + -23.4830753 + ] + }, + "id": "node/5845339240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339241" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452118, + -23.4830886 + ] + }, + "id": "node/5845339241" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339242" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452141, + -23.4831018 + ] + }, + "id": "node/5845339242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339243" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452169, + -23.4831149 + ] + }, + "id": "node/5845339243" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339244" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452202, + -23.483128 + ] + }, + "id": "node/5845339244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339245" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452241, + -23.4831409 + ] + }, + "id": "node/5845339245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452285, + -23.4831536 + ] + }, + "id": "node/5845339246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339247" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452333, + -23.4831662 + ] + }, + "id": "node/5845339247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452387, + -23.4831787 + ] + }, + "id": "node/5845339248" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339249" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452425, + -23.4831964 + ] + }, + "id": "node/5845339249" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339250" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452098, + -23.4832322 + ] + }, + "id": "node/5845339250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339251" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452116, + -23.4832362 + ] + }, + "id": "node/5845339251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339252" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452387, + -23.4832568 + ] + }, + "id": "node/5845339252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452431, + -23.4832605 + ] + }, + "id": "node/5845339253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339254" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452456, + -23.4832667 + ] + }, + "id": "node/5845339254" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452448, + -23.4832731 + ] + }, + "id": "node/5845339255" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452337, + -23.4832811 + ] + }, + "id": "node/5845339256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452267, + -23.4832808 + ] + }, + "id": "node/5845339257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6452215, + -23.4832781 + ] + }, + "id": "node/5845339258" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339259" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.645192, + -23.4832598 + ] + }, + "id": "node/5845339259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6451873, + -23.4832602 + ] + }, + "id": "node/5845339260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.644994, + -23.4834776 + ] + }, + "id": "node/5845339261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449949, + -23.4834801 + ] + }, + "id": "node/5845339262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6450105, + -23.4834901 + ] + }, + "id": "node/5845339263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339264" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6450088, + -23.4834965 + ] + }, + "id": "node/5845339264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6450049, + -23.4835094 + ] + }, + "id": "node/5845339265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6450005, + -23.4835221 + ] + }, + "id": "node/5845339266" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449956, + -23.4835347 + ] + }, + "id": "node/5845339267" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449901, + -23.4835471 + ] + }, + "id": "node/5845339268" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339269" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449841, + -23.4835593 + ] + }, + "id": "node/5845339269" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339270" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449776, + -23.4835712 + ] + }, + "id": "node/5845339270" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339271" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449707, + -23.4835829 + ] + }, + "id": "node/5845339271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339272" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449632, + -23.4835942 + ] + }, + "id": "node/5845339272" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339273" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449554, + -23.4836053 + ] + }, + "id": "node/5845339273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339274" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449384, + -23.4836262 + ] + }, + "id": "node/5845339274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339275" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449332, + -23.4836241 + ] + }, + "id": "node/5845339275" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339276" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449225, + -23.4836151 + ] + }, + "id": "node/5845339276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6449174, + -23.4836128 + ] + }, + "id": "node/5845339277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339278" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448674, + -23.4836619 + ] + }, + "id": "node/5845339278" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339279" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448447, + -23.4836458 + ] + }, + "id": "node/5845339279" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5845339280" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.6448393, + -23.4836445 + ] + }, + "id": "node/5845339280" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5524304, + -23.6977423 + ] + }, + "id": "node/9061157848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5524627, + -23.6977463 + ] + }, + "id": "node/9061157849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5523941, + -23.6979852 + ] + }, + "id": "node/9061157850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061157851" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5523678, + -23.6979827 + ] + }, + "id": "node/9061157851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8340452645" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5335466, + -23.6461231 + ] + }, + "id": "node/8340452645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8340452646" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5334828, + -23.6462283 + ] + }, + "id": "node/8340452646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8340452649" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5334923, + -23.6460955 + ] + }, + "id": "node/8340452649" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8340452652" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5334286, + -23.6462007 + ] + }, + "id": "node/8340452652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6865741751" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5290874, + -23.651522 + ] + }, + "id": "node/6865741751" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6865741752" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5290995, + -23.6515489 + ] + }, + "id": "node/6865741752" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6865741753" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5290776, + -23.6515342 + ] + }, + "id": "node/6865741753" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6865741754" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5291115, + -23.6514918 + ] + }, + "id": "node/6865741754" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6865741755" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5290758, + -23.6514679 + ] + }, + "id": "node/6865741755" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6865741756" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5290205, + -23.6515372 + ] + }, + "id": "node/6865741756" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6865741757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.529078, + -23.6515757 + ] + }, + "id": "node/6865741757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571370" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4620139, + -23.6676005 + ] + }, + "id": "node/7722571370" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571371" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4619223, + -23.6674874 + ] + }, + "id": "node/7722571371" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571372" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4622385, + -23.6672728 + ] + }, + "id": "node/7722571372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571373" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4623264, + -23.6673814 + ] + }, + "id": "node/7722571373" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571374" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4620371, + -23.667709 + ] + }, + "id": "node/7722571374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571375" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4619722, + -23.6676289 + ] + }, + "id": "node/7722571375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4623474, + -23.6673672 + ] + }, + "id": "node/7722571376" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722571377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4624158, + -23.6674517 + ] + }, + "id": "node/7722571377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412890" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5015749, + -23.614353 + ] + }, + "id": "node/9155412890" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5015676, + -23.6142811 + ] + }, + "id": "node/9155412891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5015176, + -23.6142789 + ] + }, + "id": "node/9155412892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412893" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5015043, + -23.6142618 + ] + }, + "id": "node/9155412893" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412894" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5015007, + -23.6142353 + ] + }, + "id": "node/9155412894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5014525, + -23.6142424 + ] + }, + "id": "node/9155412895" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5014151, + -23.6142623 + ] + }, + "id": "node/9155412896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412897" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.501397, + -23.6142784 + ] + }, + "id": "node/9155412897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5014072, + -23.6143264 + ] + }, + "id": "node/9155412898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412899" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5014579, + -23.6143132 + ] + }, + "id": "node/9155412899" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5014959, + -23.614317 + ] + }, + "id": "node/9155412900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5015327, + -23.6143275 + ] + }, + "id": "node/9155412901" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9155412902" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5015526, + -23.614338 + ] + }, + "id": "node/9155412902" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6874463777" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.40876, + -23.5832652 + ] + }, + "id": "node/6874463777" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6874463778" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4086728, + -23.5832916 + ] + }, + "id": "node/6874463778" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6874463779" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4086539, + -23.5832392 + ] + }, + "id": "node/6874463779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6874463780" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4087411, + -23.5832128 + ] + }, + "id": "node/6874463780" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153220646" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5227385, + -23.5581524 + ] + }, + "id": "node/9153220646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153220647" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5227542, + -23.5581774 + ] + }, + "id": "node/9153220647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153220648" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5226354, + -23.5582399 + ] + }, + "id": "node/9153220648" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153220649" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5226198, + -23.5582149 + ] + }, + "id": "node/9153220649" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153221175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5548399, + -23.5278459 + ] + }, + "id": "node/9153221175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153221176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5548987, + -23.527879 + ] + }, + "id": "node/9153221176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153221177" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5548035, + -23.528021 + ] + }, + "id": "node/9153221177" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153221178" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5547447, + -23.5279879 + ] + }, + "id": "node/9153221178" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6727915836" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5177146, + -23.5306557 + ] + }, + "id": "node/6727915836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6727915837" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5174982, + -23.5305513 + ] + }, + "id": "node/6727915837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6727915838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5175205, + -23.5305121 + ] + }, + "id": "node/6727915838" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6727915839" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5177369, + -23.5306164 + ] + }, + "id": "node/6727915839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061207911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4718519, + -23.5426534 + ] + }, + "id": "node/9061207911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061207912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4718919, + -23.5424476 + ] + }, + "id": "node/9061207912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061207913" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4720767, + -23.5424777 + ] + }, + "id": "node/9061207913" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061207914" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4720367, + -23.5426835 + ] + }, + "id": "node/9061207914" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153192806" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.546923, + -23.5192391 + ] + }, + "id": "node/9153192806" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153192807" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5469795, + -23.5192983 + ] + }, + "id": "node/9153192807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153192808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5469152, + -23.5193499 + ] + }, + "id": "node/9153192808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153192809" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5468436, + -23.5192748 + ] + }, + "id": "node/9153192809" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502247" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5201691, + -23.4988472 + ] + }, + "id": "node/9060502247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5201421, + -23.4989096 + ] + }, + "id": "node/9060502248" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502249" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.520305, + -23.4989687 + ] + }, + "id": "node/9060502249" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502250" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5203273, + -23.4989031 + ] + }, + "id": "node/9060502250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502243" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5203585, + -23.4969924 + ] + }, + "id": "node/9060502243" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502244" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5203585, + -23.4970892 + ] + }, + "id": "node/9060502244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502245" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5201717, + -23.4970966 + ] + }, + "id": "node/9060502245" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5201758, + -23.4969849 + ] + }, + "id": "node/9060502246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5886707787" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4755417, + -23.5176447 + ] + }, + "id": "node/5886707787" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5886707790" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4756359, + -23.517659 + ] + }, + "id": "node/5886707790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5886707788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4755569, + -23.5175598 + ] + }, + "id": "node/5886707788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5886707789" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.475651, + -23.5175741 + ] + }, + "id": "node/5886707789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431828" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4812066, + -23.4851398 + ] + }, + "id": "node/9060431828" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.48099, + -23.485108 + ] + }, + "id": "node/9060431829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4810054, + -23.4850199 + ] + }, + "id": "node/9060431830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431831" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4812219, + -23.4850516 + ] + }, + "id": "node/9060431831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6397578968" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3679473, + -23.5407159 + ] + }, + "id": "node/6397578968" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6397578969" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3677314, + -23.5405645 + ] + }, + "id": "node/6397578969" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6397578970" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3677654, + -23.5405238 + ] + }, + "id": "node/6397578970" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6397578971" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3679813, + -23.5406752 + ] + }, + "id": "node/6397578971" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502255" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3677727, + -23.54056 + ] + }, + "id": "node/9060502255" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3677424, + -23.5405893 + ] + }, + "id": "node/9060502256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3679499, + -23.5407356 + ] + }, + "id": "node/9060502257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502258" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3679754, + -23.540699 + ] + }, + "id": "node/9060502258" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431832" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4441235, + -23.4902295 + ] + }, + "id": "node/9060431832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431833" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.443708, + -23.4902774 + ] + }, + "id": "node/9060431833" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431834" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4437181, + -23.490349 + ] + }, + "id": "node/9060431834" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4441305, + -23.4903051 + ] + }, + "id": "node/9060431835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8833281434" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4338336, + -23.4919043 + ] + }, + "id": "node/8833281434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8833281435" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4338403, + -23.491986 + ] + }, + "id": "node/8833281435" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8833281436" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4337856, + -23.4919941 + ] + }, + "id": "node/8833281436" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8833281437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4337758, + -23.4919167 + ] + }, + "id": "node/8833281437" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431836" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4211842, + -23.4920209 + ] + }, + "id": "node/9060431836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431837" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4212806, + -23.4920254 + ] + }, + "id": "node/9060431837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4213077, + -23.4917241 + ] + }, + "id": "node/9060431838" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431839" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.421204, + -23.4917219 + ] + }, + "id": "node/9060431839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4036417, + -23.4939342 + ] + }, + "id": "node/9060431840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431841" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4033734, + -23.4939213 + ] + }, + "id": "node/9060431841" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431842" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4033745, + -23.4938429 + ] + }, + "id": "node/9060431842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431843" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4036476, + -23.4938536 + ] + }, + "id": "node/9060431843" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431844" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.385284, + -23.4849397 + ] + }, + "id": "node/9060431844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431845" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3852397, + -23.4850157 + ] + }, + "id": "node/9060431845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431846" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.385047, + -23.4849132 + ] + }, + "id": "node/9060431846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060431847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3850933, + -23.484839 + ] + }, + "id": "node/9060431847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502259" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3438367, + -23.5252774 + ] + }, + "id": "node/9060502259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502260" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.343762, + -23.5252373 + ] + }, + "id": "node/9060502260" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502261" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3438142, + -23.5251701 + ] + }, + "id": "node/9060502261" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502262" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3438903, + -23.5252063 + ] + }, + "id": "node/9060502262" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502263" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3321042, + -23.5258155 + ] + }, + "id": "node/9060502263" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502264" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3321295, + -23.5258868 + ] + }, + "id": "node/9060502264" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3325977, + -23.5257293 + ] + }, + "id": "node/9060502265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3325705, + -23.5256581 + ] + }, + "id": "node/9060502266" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5804316739" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3077568, + -23.5350963 + ] + }, + "id": "node/5804316739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5804316740" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3077724, + -23.5351339 + ] + }, + "id": "node/5804316740" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5804316741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3078436, + -23.535109 + ] + }, + "id": "node/5804316741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5804316742" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3078824, + -23.5352021 + ] + }, + "id": "node/5804316742" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5520519786" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3074675, + -23.5353474 + ] + }, + "id": "node/5520519786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5804316738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3076993, + -23.5351165 + ] + }, + "id": "node/5804316738" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6612433680" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.3074131, + -23.5352166 + ] + }, + "id": "node/6612433680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7983242342" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.1839547, + -23.5081652 + ] + }, + "id": "node/7983242342" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7983242344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.1838207, + -23.5079349 + ] + }, + "id": "node/7983242344" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7983242345" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.1837669, + -23.5079612 + ] + }, + "id": "node/7983242345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7983242348" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.1838974, + -23.5081915 + ] + }, + "id": "node/7983242348" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153191613" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7869315, + -23.432483 + ] + }, + "id": "node/9153191613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153191614" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7869973, + -23.4324916 + ] + }, + "id": "node/9153191614" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153191615" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7870138, + -23.4323851 + ] + }, + "id": "node/9153191615" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9153191612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7869481, + -23.4323765 + ] + }, + "id": "node/9153191612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6296119097" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.747809, + -23.4385276 + ] + }, + "id": "node/6296119097" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061144679" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7479056, + -23.4385408 + ] + }, + "id": "node/9061144679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061144680" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7478934, + -23.4386165 + ] + }, + "id": "node/9061144680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061144681" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7477967, + -23.4386033 + ] + }, + "id": "node/9061144681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061144682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7513153, + -23.3661211 + ] + }, + "id": "node/9061144682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061144683" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7512501, + -23.3660614 + ] + }, + "id": "node/9061144683" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061144684" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7513091, + -23.366007 + ] + }, + "id": "node/9061144684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9061144685" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7513744, + -23.3660668 + ] + }, + "id": "node/9061144685" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5230889343" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7261749, + -23.329876 + ] + }, + "id": "node/5230889343" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5230889344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7262891, + -23.3300925 + ] + }, + "id": "node/5230889344" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5230889345" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7262232, + -23.3301219 + ] + }, + "id": "node/5230889345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5230889347" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7261089, + -23.3299054 + ] + }, + "id": "node/5230889347" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11997735231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7430481, + -23.2826381 + ] + }, + "id": "node/11997735231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11997735232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7430734, + -23.2826169 + ] + }, + "id": "node/11997735232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11997735233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7430326, + -23.2825756 + ] + }, + "id": "node/11997735233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11997735234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.7430078, + -23.2825966 + ] + }, + "id": "node/11997735234" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308484386" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4966183, + -23.4621657 + ] + }, + "id": "node/9308484386" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308484387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4965785, + -23.4622573 + ] + }, + "id": "node/9308484387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308484388" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.496674, + -23.4622923 + ] + }, + "id": "node/9308484388" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308484389" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4966865, + -23.4622634 + ] + }, + "id": "node/9308484389" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308484390" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4966264, + -23.4622414 + ] + }, + "id": "node/9308484390" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9308484391" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4966537, + -23.4621787 + ] + }, + "id": "node/9308484391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502251" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.495631, + -23.4481925 + ] + }, + "id": "node/9060502251" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502252" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.495675, + -23.4482768 + ] + }, + "id": "node/9060502252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4954694, + -23.4483672 + ] + }, + "id": "node/9060502253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9060502254" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4954254, + -23.4482828 + ] + }, + "id": "node/9060502254" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5546179958" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4949747, + -23.4326823 + ] + }, + "id": "node/5546179958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5759556228" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4949551, + -23.4325513 + ] + }, + "id": "node/5759556228" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8465457527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.495018, + -23.4329506 + ] + }, + "id": "node/8465457527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8465457528" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4950928, + -23.4329399 + ] + }, + "id": "node/8465457528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8465457529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4950274, + -23.4325447 + ] + }, + "id": "node/8465457529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8465457530" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.494963, + -23.432616 + ] + }, + "id": "node/8465457530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8465457531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4949572, + -23.4325795 + ] + }, + "id": "node/8465457531" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8902338976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4950135, + -23.4329225 + ] + }, + "id": "node/8902338976" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10019054819" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4847602, + -23.4256667 + ] + }, + "id": "node/10019054819" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10019054820" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4847079, + -23.4250772 + ] + }, + "id": "node/10019054820" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10019054822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4847113, + -23.4256703 + ] + }, + "id": "node/10019054822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10019062472" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4873463, + -23.4244984 + ] + }, + "id": "node/10019062472" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10019062473" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4873224, + -23.4242856 + ] + }, + "id": "node/10019062473" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10019062474" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4874381, + -23.4242747 + ] + }, + "id": "node/10019062474" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10019062475" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4874621, + -23.4244875 + ] + }, + "id": "node/10019062475" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7259651509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.4846567, + -23.4250809 + ] + }, + "id": "node/7259651509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10216029975" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.7906515, + -23.1974066 + ] + }, + "id": "node/10216029975" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10216029976" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.7905997, + -23.1974674 + ] + }, + "id": "node/10216029976" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10216029977" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.7905611, + -23.1974417 + ] + }, + "id": "node/10216029977" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10216029978" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.790617, + -23.1973783 + ] + }, + "id": "node/10216029978" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5251413425" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8195727, + -23.1686039 + ] + }, + "id": "node/5251413425" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5251413426" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8195817, + -23.1685686 + ] + }, + "id": "node/5251413426" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5251413432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8197299, + -23.1686371 + ] + }, + "id": "node/5251413432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5251413433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.8197344, + -23.1686018 + ] + }, + "id": "node/5251413433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4439995733" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.4494411, + -22.4144299 + ] + }, + "id": "node/4439995733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4439995741" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.4494847, + -22.4144824 + ] + }, + "id": "node/4439995741" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4439995744" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.449493, + -22.4144924 + ] + }, + "id": "node/4439995744" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4439995752" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.449311, + -22.4145223 + ] + }, + "id": "node/4439995752" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4439995762" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -45.4493629, + -22.4145848 + ] + }, + "id": "node/4439995762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12697925295" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.647029, + -22.9656201 + ] + }, + "id": "node/12697925295" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12697925296" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6469972, + -22.965587 + ] + }, + "id": "node/12697925296" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11954356598" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.646665, + -22.9658104 + ] + }, + "id": "node/11954356598" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11954356599" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6467224, + -22.9658701 + ] + }, + "id": "node/11954356599" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12697925300" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6469717, + -22.9655605 + ] + }, + "id": "node/12697925300" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699386647" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6212478, + -22.9681503 + ] + }, + "id": "node/12699386647" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699386648" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6212261, + -22.9680692 + ] + }, + "id": "node/12699386648" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699386649" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.621064, + -22.9681061 + ] + }, + "id": "node/12699386649" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699386650" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6210858, + -22.9681871 + ] + }, + "id": "node/12699386650" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12222012509" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.7195493, + -22.902713 + ] + }, + "id": "node/12222012509" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12222012510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.7196392, + -22.902687 + ] + }, + "id": "node/12222012510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12222012511" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.7194929, + -22.9025375 + ] + }, + "id": "node/12222012511" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12222012512" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.7194701, + -22.9025502 + ] + }, + "id": "node/12222012512" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12205252679" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6666807, + -22.9356724 + ] + }, + "id": "node/12205252679" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12205252681" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6667902, + -22.935874 + ] + }, + "id": "node/12205252681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12205252682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6668568, + -22.935788 + ] + }, + "id": "node/12205252682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12205252680" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.6666141, + -22.9357584 + ] + }, + "id": "node/12205252680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6404796766" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4595578, + -22.4502616 + ] + }, + "id": "node/6404796766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6404796767" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4595012, + -22.4502926 + ] + }, + "id": "node/6404796767" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6404796768" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.459549, + -22.450345 + ] + }, + "id": "node/6404796768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6404796769" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4595967, + -22.4503155 + ] + }, + "id": "node/6404796769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4849665474" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.0363314, + -22.5984257 + ] + }, + "id": "node/4849665474" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4849665475" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.0363363, + -22.5984991 + ] + }, + "id": "node/4849665475" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4849665476" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.0362824, + -22.5985054 + ] + }, + "id": "node/4849665476" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4849665477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.0362765, + -22.5984294 + ] + }, + "id": "node/4849665477" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7843175722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2489852, + -21.1054808 + ] + }, + "id": "node/7843175722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7843175723" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2490621, + -21.1055103 + ] + }, + "id": "node/7843175723" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7843175725" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2490012, + -21.105463 + ] + }, + "id": "node/7843175725" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7843175738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2490461, + -21.1055282 + ] + }, + "id": "node/7843175738" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7903835519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2491621, + -21.1041034 + ] + }, + "id": "node/7903835519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12143793879" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5979631, + -22.9939247 + ] + }, + "id": "node/12143793879" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699408375" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5952713, + -22.9937151 + ] + }, + "id": "node/12699408375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699408376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5951115, + -22.9937042 + ] + }, + "id": "node/12699408376" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699408377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.595105, + -22.993785 + ] + }, + "id": "node/12699408377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699408378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5952648, + -22.993796 + ] + }, + "id": "node/12699408378" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699408379" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5978231, + -22.9938747 + ] + }, + "id": "node/12699408379" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699408380" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5977883, + -22.9939574 + ] + }, + "id": "node/12699408380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12699408381" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5979284, + -22.9940074 + ] + }, + "id": "node/12699408381" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9466090642" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2743442, + -22.9625374 + ] + }, + "id": "node/9466090642" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9466090643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2743172, + -22.9625257 + ] + }, + "id": "node/9466090643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9466090644" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2742866, + -22.9625784 + ] + }, + "id": "node/9466090644" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9466090645" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2743126, + -22.9625919 + ] + }, + "id": "node/9466090645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587528" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2261937, + -22.9878849 + ] + }, + "id": "node/12431587528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2261791, + -22.9879173 + ] + }, + "id": "node/12431587529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587530" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2262853, + -22.9879579 + ] + }, + "id": "node/12431587530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2262999, + -22.9879256 + ] + }, + "id": "node/12431587531" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587664" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2243151, + -22.9874023 + ] + }, + "id": "node/12431587664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587665" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2243188, + -22.9873841 + ] + }, + "id": "node/12431587665" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587666" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2243125, + -22.9874147 + ] + }, + "id": "node/12431587666" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587667" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2243976, + -22.9874294 + ] + }, + "id": "node/12431587667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587668" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2244038, + -22.9873988 + ] + }, + "id": "node/12431587668" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587606" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2159641, + -22.9862882 + ] + }, + "id": "node/12431587606" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587796" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2158753, + -22.986247 + ] + }, + "id": "node/12431587796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587797" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2158714, + -22.9862782 + ] + }, + "id": "node/12431587797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587807" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2159655, + -22.9862772 + ] + }, + "id": "node/12431587807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12431587808" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2159681, + -22.986257 + ] + }, + "id": "node/12431587808" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108711" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3660359, + -22.9418548 + ] + }, + "id": "node/13205108711" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108712" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3660324, + -22.9418697 + ] + }, + "id": "node/13205108712" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108713" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3654343, + -22.9417035 + ] + }, + "id": "node/13205108713" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108714" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.365438, + -22.9416888 + ] + }, + "id": "node/13205108714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108717" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3652795, + -22.9416223 + ] + }, + "id": "node/13205108717" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108718" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3652729, + -22.9416434 + ] + }, + "id": "node/13205108718" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108721" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3660129, + -22.9423733 + ] + }, + "id": "node/13205108721" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3659907, + -22.9424545 + ] + }, + "id": "node/13205108722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108723" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3659528, + -22.9424491 + ] + }, + "id": "node/13205108723" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108724" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3659721, + -22.9423711 + ] + }, + "id": "node/13205108724" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108731" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3660257, + -22.9418678 + ] + }, + "id": "node/13205108731" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108732" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3654436, + -22.9417061 + ] + }, + "id": "node/13205108732" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108757" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3657606, + -22.9425143 + ] + }, + "id": "node/13205108757" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108758" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3657587, + -22.9425242 + ] + }, + "id": "node/13205108758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108759" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3652257, + -22.9423807 + ] + }, + "id": "node/13205108759" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108760" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3652294, + -22.9423721 + ] + }, + "id": "node/13205108760" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108719" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.364752, + -22.9415137 + ] + }, + "id": "node/13205108719" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108720" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3647612, + -22.9414838 + ] + }, + "id": "node/13205108720" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108761" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3651319, + -22.9423414 + ] + }, + "id": "node/13205108761" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108762" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3651294, + -22.94235 + ] + }, + "id": "node/13205108762" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108763" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.364576, + -22.9421973 + ] + }, + "id": "node/13205108763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13205108764" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3645791, + -22.9421892 + ] + }, + "id": "node/13205108764" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752112484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.311164, + -22.8904717 + ] + }, + "id": "node/9752112484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752112485" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3112174, + -22.8905779 + ] + }, + "id": "node/9752112485" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752112499" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3110785, + -22.8905089 + ] + }, + "id": "node/9752112499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752948961" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3112291, + -22.8905983 + ] + }, + "id": "node/9752948961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752948962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3113966, + -22.8905256 + ] + }, + "id": "node/9752948962" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752948982" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3117257, + -22.8903736 + ] + }, + "id": "node/9752948982" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752948987" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.311478, + -22.8898595 + ] + }, + "id": "node/9752948987" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752948988" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3114642, + -22.8898351 + ] + }, + "id": "node/9752948988" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752948989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.311367, + -22.88988 + ] + }, + "id": "node/9752948989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9752948990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3113794, + -22.8899038 + ] + }, + "id": "node/9752948990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9753157524" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.311064, + -22.8904829 + ] + }, + "id": "node/9753157524" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9753157525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3111487, + -22.8904448 + ] + }, + "id": "node/9753157525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9755823053" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3117196, + -22.8903607 + ] + }, + "id": "node/9755823053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9755823054" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3117975, + -22.8903303 + ] + }, + "id": "node/9755823054" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9755823055" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3118292, + -22.8903928 + ] + }, + "id": "node/9755823055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9755823056" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3117514, + -22.8904234 + ] + }, + "id": "node/9755823056" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9755823060" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3114338, + -22.8898792 + ] + }, + "id": "node/9755823060" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9867430583" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3113863, + -22.8905048 + ] + }, + "id": "node/9867430583" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10926878705" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2663693, + -22.8438261 + ] + }, + "id": "node/10926878705" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10926878706" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2662715, + -22.8437447 + ] + }, + "id": "node/10926878706" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10926878707" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2663787, + -22.8438161 + ] + }, + "id": "node/10926878707" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10926878708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2662784, + -22.8437385 + ] + }, + "id": "node/10926878708" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10868981096" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5117861, + -22.771075 + ] + }, + "id": "node/10868981096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10868981101" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5117152, + -22.7710082 + ] + }, + "id": "node/10868981101" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10868990206" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5118362, + -22.7709865 + ] + }, + "id": "node/10868990206" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10868990207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.5117541, + -22.7709426 + ] + }, + "id": "node/10868990207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8152607419" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4909111, + -22.7443885 + ] + }, + "id": "node/8152607419" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8152607444" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4909272, + -22.7443813 + ] + }, + "id": "node/8152607444" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8152607418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.4908157, + -22.7441774 + ] + }, + "id": "node/8152607418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8152607443" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.490833, + -22.7441714 + ] + }, + "id": "node/8152607443" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12840959376" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3656627, + -22.7952668 + ] + }, + "id": "node/12840959376" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12840959377" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3656565, + -22.795324 + ] + }, + "id": "node/12840959377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12840959378" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3656736, + -22.7953256 + ] + }, + "id": "node/12840959378" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842753550" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3181134, + -22.8399362 + ] + }, + "id": "node/5842753550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842753551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3180595, + -22.8398993 + ] + }, + "id": "node/5842753551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842753552" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3179702, + -22.8399945 + ] + }, + "id": "node/5842753552" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5842753553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3180272, + -22.8400285 + ] + }, + "id": "node/5842753553" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8477067852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2048658, + -22.8023567 + ] + }, + "id": "node/8477067852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8477067853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2048427, + -22.8024826 + ] + }, + "id": "node/8477067853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8477067854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2047818, + -22.8024712 + ] + }, + "id": "node/8477067854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8477067855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2048055, + -22.8023399 + ] + }, + "id": "node/8477067855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362894" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3994608, + -22.7226767 + ] + }, + "id": "node/10213362894" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362895" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3994054, + -22.722722 + ] + }, + "id": "node/10213362895" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362896" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3993905, + -22.7227075 + ] + }, + "id": "node/10213362896" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362897" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3994459, + -22.7226619 + ] + }, + "id": "node/10213362897" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362898" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3988631, + -22.7220388 + ] + }, + "id": "node/10213362898" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362899" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3988144, + -22.7220816 + ] + }, + "id": "node/10213362899" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362900" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3987883, + -22.7220569 + ] + }, + "id": "node/10213362900" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10213362901" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3988374, + -22.7220142 + ] + }, + "id": "node/10213362901" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6378706164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3141481, + -22.7054944 + ] + }, + "id": "node/6378706164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388112777" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3141639, + -22.7055031 + ] + }, + "id": "node/6388112777" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388112778" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3141086, + -22.705557 + ] + }, + "id": "node/6388112778" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6388112779" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.3141226, + -22.7055637 + ] + }, + "id": "node/6388112779" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6907568812" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1245838, + -22.8942011 + ] + }, + "id": "node/6907568812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6907568818" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1244749, + -22.8940201 + ] + }, + "id": "node/6907568818" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9077763810" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1245833, + -22.8941667 + ] + }, + "id": "node/9077763810" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11453118510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1245976, + -22.894334 + ] + }, + "id": "node/11453118510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12389040287" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1242517, + -22.8942195 + ] + }, + "id": "node/12389040287" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12389040292" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1242197, + -22.8942247 + ] + }, + "id": "node/12389040292" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12389040294" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.124266, + -22.8943161 + ] + }, + "id": "node/12389040294" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12389098701" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1245604, + -22.894338 + ] + }, + "id": "node/12389098701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13109439789" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1244869, + -22.8943336 + ] + }, + "id": "node/13109439789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12688547582" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1133258, + -22.8835051 + ] + }, + "id": "node/12688547582" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12688547583" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1133111, + -22.8834543 + ] + }, + "id": "node/12688547583" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12688547584" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1131175, + -22.8835019 + ] + }, + "id": "node/12688547584" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12688547585" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1131326, + -22.8835537 + ] + }, + "id": "node/12688547585" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12688547586" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1132751, + -22.8835178 + ] + }, + "id": "node/12688547586" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12688547590" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1132981, + -22.8835121 + ] + }, + "id": "node/12688547590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12688547596" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1132866, + -22.883515 + ] + }, + "id": "node/12688547596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11151894320" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1957346, + -22.7949859 + ] + }, + "id": "node/11151894320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11151894321" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.195748, + -22.7950094 + ] + }, + "id": "node/11151894321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11151894322" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1957104, + -22.7950242 + ] + }, + "id": "node/11151894322" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11151894323" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.195701, + -22.7949982 + ] + }, + "id": "node/11151894323" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412823" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2818339, + -22.6278644 + ] + }, + "id": "node/5099412823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.281499, + -22.6278533 + ] + }, + "id": "node/5099412824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2815072, + -22.62806 + ] + }, + "id": "node/5099412825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412826" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2816007, + -22.6281877 + ] + }, + "id": "node/5099412826" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412827" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2818375, + -22.6282008 + ] + }, + "id": "node/5099412827" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412828" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2818791, + -22.6282229 + ] + }, + "id": "node/5099412828" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2818933, + -22.6278616 + ] + }, + "id": "node/5099412829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2821556, + -22.6278704 + ] + }, + "id": "node/5099412830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5099412831" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2820988, + -22.6282303 + ] + }, + "id": "node/5099412831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6919147110" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2821264, + -22.6282188 + ] + }, + "id": "node/6919147110" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6919147111" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2821426, + -22.6282031 + ] + }, + "id": "node/6919147111" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6919147113" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2815112, + -22.6281211 + ] + }, + "id": "node/6919147113" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6919147114" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2815238, + -22.62816 + ] + }, + "id": "node/6919147114" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6919147115" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2815544, + -22.628175 + ] + }, + "id": "node/6919147115" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8192063829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2817245, + -22.6281966 + ] + }, + "id": "node/8192063829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8195139407" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2816611, + -22.6278539 + ] + }, + "id": "node/8195139407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8195139408" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2818411, + -22.6280289 + ] + }, + "id": "node/8195139408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8195139409" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.28156, + -22.6278512 + ] + }, + "id": "node/8195139409" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8195139410" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2814992, + -22.6279566 + ] + }, + "id": "node/8195139410" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8208048473" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2816653, + -22.6281946 + ] + }, + "id": "node/8208048473" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8208048474" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.281781, + -22.6282012 + ] + }, + "id": "node/8208048474" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9227536403" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1760389, + -22.5102711 + ] + }, + "id": "node/9227536403" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9227536404" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1760314, + -22.510284 + ] + }, + "id": "node/9227536404" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9227536405" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1759172, + -22.5102275 + ] + }, + "id": "node/9227536405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9227536406" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.1759255, + -22.5102152 + ] + }, + "id": "node/9227536406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12396705601" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.099529, + -22.2309548 + ] + }, + "id": "node/12396705601" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12396705602" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0994983, + -22.2309792 + ] + }, + "id": "node/12396705602" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12396705604" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.0995537, + -22.2309836 + ] + }, + "id": "node/12396705604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12396705605" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.099522, + -22.2310048 + ] + }, + "id": "node/12396705605" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9294645084" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9218774, + -22.4994132 + ] + }, + "id": "node/9294645084" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9294645085" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9219101, + -22.499471 + ] + }, + "id": "node/9294645085" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9294645086" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.921876, + -22.4994869 + ] + }, + "id": "node/9294645086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9294645087" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9218436, + -22.4994277 + ] + }, + "id": "node/9294645087" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5289186139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2073959, + -22.1151969 + ] + }, + "id": "node/5289186139" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5289186140" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.207445, + -22.1151887 + ] + }, + "id": "node/5289186140" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5289186137" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2074123, + -22.1150191 + ] + }, + "id": "node/5289186137" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5289186138" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.2073632, + -22.1150272 + ] + }, + "id": "node/5289186138" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9834976791" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9577237, + -21.1102311 + ] + }, + "id": "node/9834976791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9834976792" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9579024, + -21.1103302 + ] + }, + "id": "node/9834976792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9834976793" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9580657, + -21.1104079 + ] + }, + "id": "node/9834976793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9834976794" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9581674, + -21.1103346 + ] + }, + "id": "node/9834976794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9834976795" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9579918, + -21.1102411 + ] + }, + "id": "node/9834976795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9834976796" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9577761, + -21.1101686 + ] + }, + "id": "node/9834976796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5419358935" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.948701, + -21.1076244 + ] + }, + "id": "node/5419358935" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5419358936" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9486635, + -21.1076997 + ] + }, + "id": "node/5419358936" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5419358937" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9486055, + -21.1076745 + ] + }, + "id": "node/5419358937" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5419358938" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.948643, + -21.1075993 + ] + }, + "id": "node/5419358938" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5413149405" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9441664, + -21.1051578 + ] + }, + "id": "node/5413149405" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5413149406" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9441358, + -21.1052225 + ] + }, + "id": "node/5413149406" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5413149407" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9438578, + -21.105108 + ] + }, + "id": "node/5413149407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5413149408" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.9438884, + -21.1050434 + ] + }, + "id": "node/5413149408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9662002415" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3360611, + -21.7616424 + ] + }, + "id": "node/9662002415" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9662002416" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.336161, + -21.7619426 + ] + }, + "id": "node/9662002416" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9662002417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3360766, + -21.7619669 + ] + }, + "id": "node/9662002417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9662002418" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3359766, + -21.7616667 + ] + }, + "id": "node/9662002418" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9478164543" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3262168, + -21.7647017 + ] + }, + "id": "node/9478164543" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9478164544" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3262288, + -21.7647266 + ] + }, + "id": "node/9478164544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9478164545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3262463, + -21.7647603 + ] + }, + "id": "node/9478164545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9478164546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3262329, + -21.7647677 + ] + }, + "id": "node/9478164546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9478164547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.326194, + -21.764708 + ] + }, + "id": "node/9478164547" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9478164548" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3262074, + -21.7647024 + ] + }, + "id": "node/9478164548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765904" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.326124, + -21.7654263 + ] + }, + "id": "node/9484765904" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765905" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261408, + -21.7654225 + ] + }, + "id": "node/9484765905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765906" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261455, + -21.7654294 + ] + }, + "id": "node/9484765906" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765907" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261502, + -21.7654412 + ] + }, + "id": "node/9484765907" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765908" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261528, + -21.7654524 + ] + }, + "id": "node/9484765908" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765909" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261555, + -21.7654611 + ] + }, + "id": "node/9484765909" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765910" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261609, + -21.7654761 + ] + }, + "id": "node/9484765910" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765911" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261676, + -21.7654904 + ] + }, + "id": "node/9484765911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765912" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261716, + -21.7655029 + ] + }, + "id": "node/9484765912" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765913" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.326173, + -21.7655166 + ] + }, + "id": "node/9484765913" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765914" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261616, + -21.7655209 + ] + }, + "id": "node/9484765914" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765915" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261528, + -21.7655228 + ] + }, + "id": "node/9484765915" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484765916" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261441, + -21.7654985 + ] + }, + "id": "node/9484765916" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264402, + -21.7649439 + ] + }, + "id": "node/9484790952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790953" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264556, + -21.7649583 + ] + }, + "id": "node/9484790953" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790954" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264623, + -21.7649745 + ] + }, + "id": "node/9484790954" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790955" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264791, + -21.7650012 + ] + }, + "id": "node/9484790955" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790956" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264858, + -21.7650149 + ] + }, + "id": "node/9484790956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790957" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264831, + -21.7650193 + ] + }, + "id": "node/9484790957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790958" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.326471, + -21.7650237 + ] + }, + "id": "node/9484790958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790959" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264543, + -21.7649913 + ] + }, + "id": "node/9484790959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790960" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264429, + -21.7649732 + ] + }, + "id": "node/9484790960" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790961" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264348, + -21.7649601 + ] + }, + "id": "node/9484790961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484790962" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3264382, + -21.7649502 + ] + }, + "id": "node/9484790962" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484797517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261354, + -21.7654755 + ] + }, + "id": "node/9484797517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484797518" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3261274, + -21.7654505 + ] + }, + "id": "node/9484797518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9484797519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.326124, + -21.7654381 + ] + }, + "id": "node/9484797519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967352" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3269329, + -21.7654782 + ] + }, + "id": "node/9491967352" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967353" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3269302, + -21.7654882 + ] + }, + "id": "node/9491967353" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967354" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3269101, + -21.7655044 + ] + }, + "id": "node/9491967354" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3268926, + -21.7654932 + ] + }, + "id": "node/9491967355" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3268685, + -21.7654496 + ] + }, + "id": "node/9491967356" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967357" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3268537, + -21.7654234 + ] + }, + "id": "node/9491967357" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967358" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3268671, + -21.765406 + ] + }, + "id": "node/9491967358" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967359" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3268859, + -21.7654035 + ] + }, + "id": "node/9491967359" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9491967360" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3269181, + -21.7654345 + ] + }, + "id": "node/9491967360" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435988" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214647, + -21.7574714 + ] + }, + "id": "node/9495435988" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214795, + -21.7574751 + ] + }, + "id": "node/9495435989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214835, + -21.7574863 + ] + }, + "id": "node/9495435990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435991" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214857, + -21.7574992 + ] + }, + "id": "node/9495435991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435995" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214017, + -21.7575113 + ] + }, + "id": "node/9495435995" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435996" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3213923, + -21.7574963 + ] + }, + "id": "node/9495435996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435997" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214044, + -21.7574826 + ] + }, + "id": "node/9495435997" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495435998" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214164, + -21.7574751 + ] + }, + "id": "node/9495435998" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495436000" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214446, + -21.7574714 + ] + }, + "id": "node/9495436000" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495436001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3214547, + -21.7574733 + ] + }, + "id": "node/9495436001" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359525" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.319496, + -21.7579945 + ] + }, + "id": "node/9495359525" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359526" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.319502, + -21.7580226 + ] + }, + "id": "node/9495359526" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359527" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195101, + -21.7580562 + ] + }, + "id": "node/9495359527" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359528" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195188, + -21.7580954 + ] + }, + "id": "node/9495359528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359529" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195241, + -21.7581234 + ] + }, + "id": "node/9495359529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359530" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195288, + -21.7581403 + ] + }, + "id": "node/9495359530" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359531" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195309, + -21.7581633 + ] + }, + "id": "node/9495359531" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359532" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195295, + -21.7581789 + ] + }, + "id": "node/9495359532" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359533" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195215, + -21.7581907 + ] + }, + "id": "node/9495359533" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359534" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195127, + -21.7581969 + ] + }, + "id": "node/9495359534" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359535" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194779, + -21.7582038 + ] + }, + "id": "node/9495359535" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359536" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194578, + -21.7582081 + ] + }, + "id": "node/9495359536" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359537" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194236, + -21.7582175 + ] + }, + "id": "node/9495359537" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359538" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3193384, + -21.758238 + ] + }, + "id": "node/9495359538" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359539" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3192901, + -21.7582505 + ] + }, + "id": "node/9495359539" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359540" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3192083, + -21.7582648 + ] + }, + "id": "node/9495359540" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359541" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3191761, + -21.7582723 + ] + }, + "id": "node/9495359541" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359542" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3191594, + -21.758271 + ] + }, + "id": "node/9495359542" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359543" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3191527, + -21.7582667 + ] + }, + "id": "node/9495359543" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359544" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3191493, + -21.7582592 + ] + }, + "id": "node/9495359544" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3191486, + -21.7582492 + ] + }, + "id": "node/9495359545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3191822, + -21.7582399 + ] + }, + "id": "node/9495359546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359547" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3192405, + -21.7582281 + ] + }, + "id": "node/9495359547" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359548" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3192935, + -21.7582194 + ] + }, + "id": "node/9495359548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359549" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3193223, + -21.7582113 + ] + }, + "id": "node/9495359549" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359550" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3193833, + -21.7581969 + ] + }, + "id": "node/9495359550" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194651, + -21.7581807 + ] + }, + "id": "node/9495359551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359552" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194839, + -21.7581745 + ] + }, + "id": "node/9495359552" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194953, + -21.7581664 + ] + }, + "id": "node/9495359553" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359554" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195007, + -21.7581558 + ] + }, + "id": "node/9495359554" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359555" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195027, + -21.7581403 + ] + }, + "id": "node/9495359555" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359556" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3195007, + -21.7581203 + ] + }, + "id": "node/9495359556" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359557" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194866, + -21.7580699 + ] + }, + "id": "node/9495359557" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359558" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194779, + -21.7580381 + ] + }, + "id": "node/9495359558" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359559" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194752, + -21.7580182 + ] + }, + "id": "node/9495359559" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359560" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194712, + -21.7580057 + ] + }, + "id": "node/9495359560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359561" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194732, + -21.7579952 + ] + }, + "id": "node/9495359561" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9495359562" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.3194826, + -21.7579927 + ] + }, + "id": "node/9495359562" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6261942273" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8524818, + -20.344099 + ] + }, + "id": "node/6261942273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6261942274" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8524822, + -20.3441442 + ] + }, + "id": "node/6261942274" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6261942275" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8524519, + -20.3440993 + ] + }, + "id": "node/6261942275" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6261942276" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.8524523, + -20.3441444 + ] + }, + "id": "node/6261942276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6446987332" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1183451, + -19.937665 + ] + }, + "id": "node/6446987332" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6446987334" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1182708, + -19.9382554 + ] + }, + "id": "node/6446987334" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6484189165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1183266, + -19.9382621 + ] + }, + "id": "node/6484189165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6484189176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1183354, + -19.9380849 + ] + }, + "id": "node/6484189176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11163354281" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.118038, + -19.9377699 + ] + }, + "id": "node/11163354281" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11163390889" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1183846, + -19.9375696 + ] + }, + "id": "node/11163390889" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11163390890" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1184572, + -19.9375965 + ] + }, + "id": "node/11163390890" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11163390891" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1184179, + -19.9376872 + ] + }, + "id": "node/11163390891" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11163390892" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1182833, + -19.9380778 + ] + }, + "id": "node/11163390892" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11730396421" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1181015, + -19.9377922 + ] + }, + "id": "node/11730396421" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11730396422" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1180944, + -19.9378105 + ] + }, + "id": "node/11730396422" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11730396423" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.1180299, + -19.9377883 + ] + }, + "id": "node/11730396423" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13143407173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4231326, + -19.8826596 + ] + }, + "id": "node/13143407173" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13143407174" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4229607, + -19.8832698 + ] + }, + "id": "node/13143407174" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13143407175" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4219382, + -19.8829403 + ] + }, + "id": "node/13143407175" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13143407176" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.4221958, + -19.8824414 + ] + }, + "id": "node/13143407176" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990973479" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958338, + -19.8567366 + ] + }, + "id": "node/5990973479" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990973480" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9957977, + -19.8567391 + ] + }, + "id": "node/5990973480" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990973481" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958102, + -19.8568984 + ] + }, + "id": "node/5990973481" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990973482" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958442, + -19.856896 + ] + }, + "id": "node/5990973482" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990973483" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958388, + -19.8568263 + ] + }, + "id": "node/5990973483" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990973484" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958661, + -19.8568244 + ] + }, + "id": "node/5990973484" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990975285" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958643, + -19.8568008 + ] + }, + "id": "node/5990975285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5990975286" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9958389, + -19.8568025 + ] + }, + "id": "node/5990975286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211392" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5135449, + -18.5739884 + ] + }, + "id": "node/4939211392" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211393" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5134744, + -18.5738773 + ] + }, + "id": "node/4939211393" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5134404, + -18.5738938 + ] + }, + "id": "node/4939211394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211395" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.51351, + -18.5740049 + ] + }, + "id": "node/4939211395" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211491" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5137332, + -18.5752451 + ] + }, + "id": "node/4939211491" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211492" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5137077, + -18.5752068 + ] + }, + "id": "node/4939211492" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211493" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5135241, + -18.5753161 + ] + }, + "id": "node/4939211493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4939211494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.5135496, + -18.5753545 + ] + }, + "id": "node/4939211494" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5659359223" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5293588, + -19.4776297 + ] + }, + "id": "node/5659359223" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5659359224" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5293698, + -19.4776738 + ] + }, + "id": "node/5659359224" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5659359225" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5295262, + -19.4776392 + ] + }, + "id": "node/5659359225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5659359226" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5295153, + -19.4775952 + ] + }, + "id": "node/5659359226" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7535462796" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3215487, + -20.3922642 + ] + }, + "id": "node/7535462796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7535462797" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3215218, + -20.3922089 + ] + }, + "id": "node/7535462797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110078020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3347292, + -20.3563999 + ] + }, + "id": "node/10110078020" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110078021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3347444, + -20.3563072 + ] + }, + "id": "node/10110078021" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110078023" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3345916, + -20.3563801 + ] + }, + "id": "node/10110078023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10110078024" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3346068, + -20.3562874 + ] + }, + "id": "node/10110078024" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340603763" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2985533, + -20.3533519 + ] + }, + "id": "node/4340603763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340603765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.298527, + -20.3533897 + ] + }, + "id": "node/4340603765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340603768" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2985956, + -20.3533779 + ] + }, + "id": "node/4340603768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340603769" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2986324, + -20.3534004 + ] + }, + "id": "node/4340603769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340603791" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.298606, + -20.3534382 + ] + }, + "id": "node/4340603791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340604387" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2986248, + -20.3555943 + ] + }, + "id": "node/4340604387" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340604490" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2985926, + -20.3556342 + ] + }, + "id": "node/4340604490" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340604493" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2985561, + -20.3556793 + ] + }, + "id": "node/4340604493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340604496" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2987567, + -20.355688 + ] + }, + "id": "node/4340604496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4340604502" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.298688, + -20.355773 + ] + }, + "id": "node/4340604502" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6952543782" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3113504, + -20.3420421 + ] + }, + "id": "node/6952543782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7779490738" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3112236, + -20.3420463 + ] + }, + "id": "node/7779490738" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7779490739" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.3113333, + -20.3420035 + ] + }, + "id": "node/7779490739" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13095337651" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9515375, + -18.8541478 + ] + }, + "id": "node/13095337651" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13095337652" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9513048, + -18.8538978 + ] + }, + "id": "node/13095337652" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13095337656" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9514583, + -18.8541969 + ] + }, + "id": "node/13095337656" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13095337657" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -41.9512571, + -18.8540796 + ] + }, + "id": "node/13095337657" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10540720673" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5127322, + -17.6899194 + ] + }, + "id": "node/10540720673" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10540720674" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5126592, + -17.6898718 + ] + }, + "id": "node/10540720674" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10540720675" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5126044, + -17.6899402 + ] + }, + "id": "node/10540720675" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10540720676" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5126628, + -17.6899924 + ] + }, + "id": "node/10540720676" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10540720677" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5126847, + -17.6899634 + ] + }, + "id": "node/10540720677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10540720678" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.5127054, + -17.6899681 + ] + }, + "id": "node/10540720678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4563752772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3102307, + -16.709235 + ] + }, + "id": "node/4563752772" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4563752773" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3107567, + -16.7092577 + ] + }, + "id": "node/4563752773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12356203407" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3108011, + -16.7108707 + ] + }, + "id": "node/12356203407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13160585341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3169061, + -16.6065638 + ] + }, + "id": "node/13160585341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13160585342" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3168336, + -16.606608 + ] + }, + "id": "node/13160585342" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13160585343" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3168095, + -16.6065716 + ] + }, + "id": "node/13160585343" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13160585344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.316882, + -16.6065275 + ] + }, + "id": "node/13160585344" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12650544009" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1190607, + -15.8268089 + ] + }, + "id": "node/12650544009" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12650544010" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1190376, + -15.8267949 + ] + }, + "id": "node/12650544010" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12650544011" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1190099, + -15.8268319 + ] + }, + "id": "node/12650544011" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12650544012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1190345, + -15.8268438 + ] + }, + "id": "node/12650544012" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8843100595" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0451423, + -15.832093 + ] + }, + "id": "node/8843100595" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8843100596" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.045146, + -15.8320292 + ] + }, + "id": "node/8843100596" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8843100597" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.044942, + -15.8320181 + ] + }, + "id": "node/8843100597" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9604034858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0451435, + -15.8320716 + ] + }, + "id": "node/9604034858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9604034859" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.0449383, + -15.8320818 + ] + }, + "id": "node/9604034859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1160106, + -15.8149027 + ] + }, + "id": "node/8534361788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361789" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1160038, + -15.8149145 + ] + }, + "id": "node/8534361789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361790" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159392, + -15.8148802 + ] + }, + "id": "node/8534361790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361791" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.115946, + -15.8148684 + ] + }, + "id": "node/8534361791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361792" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159881, + -15.8149449 + ] + }, + "id": "node/8534361792" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361793" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159813, + -15.8149566 + ] + }, + "id": "node/8534361793" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361794" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159167, + -15.8149224 + ] + }, + "id": "node/8534361794" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361795" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159235, + -15.8149106 + ] + }, + "id": "node/8534361795" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361796" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159642, + -15.8149924 + ] + }, + "id": "node/8534361796" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361797" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159575, + -15.8150042 + ] + }, + "id": "node/8534361797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361798" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1158929, + -15.8149699 + ] + }, + "id": "node/8534361798" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361799" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1158996, + -15.8149582 + ] + }, + "id": "node/8534361799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361800" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1160379, + -15.8148596 + ] + }, + "id": "node/8534361800" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361801" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1160312, + -15.8148714 + ] + }, + "id": "node/8534361801" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361802" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159666, + -15.8148371 + ] + }, + "id": "node/8534361802" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361803" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159733, + -15.8148253 + ] + }, + "id": "node/8534361803" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361804" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1160567, + -15.8148249 + ] + }, + "id": "node/8534361804" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361805" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.11605, + -15.8148367 + ] + }, + "id": "node/8534361805" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361806" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159853, + -15.8148024 + ] + }, + "id": "node/8534361806" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8534361807" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.1159921, + -15.8147907 + ] + }, + "id": "node/8534361807" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7003050256" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2588177, + -20.2592582 + ] + }, + "id": "node/7003050256" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7003050257" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2588208, + -20.2593012 + ] + }, + "id": "node/7003050257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7137694340" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2588826, + -20.2592968 + ] + }, + "id": "node/7137694340" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7137694341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.2588787, + -20.2592541 + ] + }, + "id": "node/7137694341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4848586, + -12.9845848 + ] + }, + "id": "node/5758621853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621854" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4848268, + -12.9846348 + ] + }, + "id": "node/5758621854" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621855" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4845652, + -12.984477 + ] + }, + "id": "node/5758621855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621856" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4845969, + -12.984427 + ] + }, + "id": "node/5758621856" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11539065265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4947771, + -12.9119544 + ] + }, + "id": "node/11539065265" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11539065266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4947518, + -12.9119283 + ] + }, + "id": "node/11539065266" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11539065267" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4946461, + -12.9120331 + ] + }, + "id": "node/11539065267" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11539065268" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4946804, + -12.9120654 + ] + }, + "id": "node/11539065268" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11539115469" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4946883, + -12.9120538 + ] + }, + "id": "node/11539115469" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621845" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4708056, + -12.9776037 + ] + }, + "id": "node/5758621845" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621846" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4708204, + -12.9776475 + ] + }, + "id": "node/5758621846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.470622, + -12.9777111 + ] + }, + "id": "node/5758621847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4706073, + -12.9776673 + ] + }, + "id": "node/5758621848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722231362" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4577007, + -12.9761061 + ] + }, + "id": "node/7722231362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722231363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4577025, + -12.9761539 + ] + }, + "id": "node/7722231363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722231364" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4575403, + -12.9761595 + ] + }, + "id": "node/7722231364" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7722231365" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4575386, + -12.9761116 + ] + }, + "id": "node/7722231365" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4766295, + -12.9699563 + ] + }, + "id": "node/5758621849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621850" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4766415, + -12.9701057 + ] + }, + "id": "node/5758621850" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621851" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4765876, + -12.9701098 + ] + }, + "id": "node/5758621851" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4765756, + -12.9699604 + ] + }, + "id": "node/5758621852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621839" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4353416, + -12.9636745 + ] + }, + "id": "node/5758621839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621840" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4353033, + -12.9637055 + ] + }, + "id": "node/5758621840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621841" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4351758, + -12.9635561 + ] + }, + "id": "node/5758621841" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621842" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4352141, + -12.963525 + ] + }, + "id": "node/5758621842" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014230" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4719092, + -12.9557935 + ] + }, + "id": "node/5341014230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014231" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4719723, + -12.9557683 + ] + }, + "id": "node/5341014231" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014232" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4722485, + -12.9557354 + ] + }, + "id": "node/5341014232" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014233" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4720288, + -12.9562846 + ] + }, + "id": "node/5341014233" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014234" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.472084, + -12.9562711 + ] + }, + "id": "node/5341014234" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014235" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4722949, + -12.9562236 + ] + }, + "id": "node/5341014235" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014236" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4723349, + -12.9562108 + ] + }, + "id": "node/5341014236" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014237" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4723376, + -12.9566581 + ] + }, + "id": "node/5341014237" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014238" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4722402, + -12.9566791 + ] + }, + "id": "node/5341014238" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014239" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4719386, + -12.9554091 + ] + }, + "id": "node/5341014239" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5341014240" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.47204, + -12.9553831 + ] + }, + "id": "node/5341014240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4727776, + -12.956122 + ] + }, + "id": "node/5758621865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4726036, + -12.9563553 + ] + }, + "id": "node/5758621866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621867" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4725572, + -12.9563224 + ] + }, + "id": "node/5758621867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621868" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4727311, + -12.9560891 + ] + }, + "id": "node/5758621868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621857" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4701029, + -12.9408989 + ] + }, + "id": "node/5758621857" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621858" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4700603, + -12.941056 + ] + }, + "id": "node/5758621858" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621859" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4699998, + -12.9410405 + ] + }, + "id": "node/5758621859" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621860" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4700424, + -12.9408833 + ] + }, + "id": "node/5758621860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621835" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4302242, + -12.957512 + ] + }, + "id": "node/5758621835" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621836" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4301811, + -12.9575456 + ] + }, + "id": "node/5758621836" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621837" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.430058, + -12.9573955 + ] + }, + "id": "node/5758621837" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621838" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4301011, + -12.9573619 + ] + }, + "id": "node/5758621838" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6700635786" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4200823, + -12.9445795 + ] + }, + "id": "node/6700635786" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6700635787" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4200381, + -12.9446115 + ] + }, + "id": "node/6700635787" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6700635788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.419889, + -12.9444157 + ] + }, + "id": "node/6700635788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6700635789" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4199333, + -12.9443836 + ] + }, + "id": "node/6700635789" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3945368, + -12.9343005 + ] + }, + "id": "node/5758621829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3945039, + -12.9343363 + ] + }, + "id": "node/5758621830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621831" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3943363, + -12.93419 + ] + }, + "id": "node/5758621831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621832" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3943692, + -12.9341541 + ] + }, + "id": "node/5758621832" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621861" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4672308, + -12.9249983 + ] + }, + "id": "node/5758621861" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621862" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4672402, + -12.9252975 + ] + }, + "id": "node/5758621862" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621863" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4671883, + -12.925299 + ] + }, + "id": "node/5758621863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621864" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4671788, + -12.9249998 + ] + }, + "id": "node/5758621864" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10745323943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4335353, + -12.9282735 + ] + }, + "id": "node/10745323943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10745323944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4335675, + -12.9282648 + ] + }, + "id": "node/10745323944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10745323945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4335633, + -12.9282502 + ] + }, + "id": "node/10745323945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10745323946" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4335311, + -12.928259 + ] + }, + "id": "node/10745323946" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621822" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.379434, + -12.9255727 + ] + }, + "id": "node/5758621822" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621823" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3794453, + -12.9255226 + ] + }, + "id": "node/5758621823" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621824" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.379251, + -12.9254808 + ] + }, + "id": "node/5758621824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758621825" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3792396, + -12.9255309 + ] + }, + "id": "node/5758621825" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758620917" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3593871, + -12.9223801 + ] + }, + "id": "node/5758620917" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758620918" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3590833, + -12.9223265 + ] + }, + "id": "node/5758620918" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758620919" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3590723, + -12.9223858 + ] + }, + "id": "node/5758620919" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5758620920" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.359376, + -12.9224394 + ] + }, + "id": "node/5758620920" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5773103126" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3423068, + -12.9038262 + ] + }, + "id": "node/5773103126" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5773103127" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3423322, + -12.9039661 + ] + }, + "id": "node/5773103127" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5773103128" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3422699, + -12.9039768 + ] + }, + "id": "node/5773103128" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5773103129" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3422444, + -12.903837 + ] + }, + "id": "node/5773103129" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7464542341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3421438, + -12.9026684 + ] + }, + "id": "node/7464542341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7464542342" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3422715, + -12.9027479 + ] + }, + "id": "node/7464542342" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7464542343" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3422315, + -12.9028048 + ] + }, + "id": "node/7464542343" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7464542344" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.3421038, + -12.9027209 + ] + }, + "id": "node/7464542344" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11599065910" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -37.0488377, + -10.9093056 + ] + }, + "id": "node/11599065910" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12374811271" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.503061, + -9.382821 + ] + }, + "id": "node/12374811271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12374811273" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5031135, + -9.3827937 + ] + }, + "id": "node/12374811273" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12374811276" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.503081, + -9.3828574 + ] + }, + "id": "node/12374811276" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12374811277" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5031351, + -9.3828305 + ] + }, + "id": "node/12374811277" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9958223984" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5417508, + -9.3618507 + ] + }, + "id": "node/9958223984" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9958223985" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5417966, + -9.3618743 + ] + }, + "id": "node/9958223985" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9958292133" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5418198, + -9.3618352 + ] + }, + "id": "node/9958292133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9958292134" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -40.5417764, + -9.3618117 + ] + }, + "id": "node/9958292134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679603" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8389559, + -5.0359478 + ] + }, + "id": "node/13250679603" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679604" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8389023, + -5.0359528 + ] + }, + "id": "node/13250679604" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679605" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8389113, + -5.0360483 + ] + }, + "id": "node/13250679605" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679606" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8389649, + -5.0360433 + ] + }, + "id": "node/13250679606" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679616" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8385638, + -5.03537 + ] + }, + "id": "node/13250679616" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8385484, + -5.0353364 + ] + }, + "id": "node/13250679617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679618" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8386716, + -5.0352803 + ] + }, + "id": "node/13250679618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13250679619" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.838687, + -5.0353139 + ] + }, + "id": "node/13250679619" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6265812637" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4531208, + -1.3547617 + ] + }, + "id": "node/6265812637" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6265812638" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4529069, + -1.3547921 + ] + }, + "id": "node/6265812638" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6265812639" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4529137, + -1.3548394 + ] + }, + "id": "node/6265812639" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6265812640" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4531276, + -1.3548089 + ] + }, + "id": "node/6265812640" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11357244969" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4516747, + -1.3402394 + ] + }, + "id": "node/11357244969" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11357216066" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4518452, + -1.3401337 + ] + }, + "id": "node/11357216066" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11357216067" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.451806, + -1.3400704 + ] + }, + "id": "node/11357216067" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11357216068" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4516355, + -1.3401761 + ] + }, + "id": "node/11357216068" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11357244970" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.4518213, + -1.340095 + ] + }, + "id": "node/11357244970" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12277137510" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.3187886, + -1.2916856 + ] + }, + "id": "node/12277137510" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12277145476" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.3189613, + -1.2917694 + ] + }, + "id": "node/12277145476" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12277145477" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.3189737, + -1.2917447 + ] + }, + "id": "node/12277145477" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12277145478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -48.3188047, + -1.2916642 + ] + }, + "id": "node/12277145478" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6939541640" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.192456, + -1.1849919 + ] + }, + "id": "node/6939541640" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6939541641" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1924215, + -1.1849929 + ] + }, + "id": "node/6939541641" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6939541642" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1924218, + -1.1850604 + ] + }, + "id": "node/6939541642" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6939541643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1924567, + -1.1850599 + ] + }, + "id": "node/6939541643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5333756865" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1846187, + -1.1988311 + ] + }, + "id": "node/5333756865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5333756866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1845921, + -1.1988887 + ] + }, + "id": "node/5333756866" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5333756867" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1845488, + -1.198871 + ] + }, + "id": "node/5333756867" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5333756868" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -47.1845732, + -1.1988111 + ] + }, + "id": "node/5333756868" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5305577758" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2400988, + -2.5153589 + ] + }, + "id": "node/5305577758" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6301382494" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2401311, + -2.5153438 + ] + }, + "id": "node/6301382494" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6301382514" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2400723, + -2.5152533 + ] + }, + "id": "node/6301382514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6366312246" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2401127, + -2.5154197 + ] + }, + "id": "node/6366312246" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6366312247" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2401482, + -2.5154098 + ] + }, + "id": "node/6366312247" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6366312248" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2401081, + -2.5152406 + ] + }, + "id": "node/6366312248" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6366312320" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2401094, + -2.515246 + ] + }, + "id": "node/6366312320" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6366312321" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.2401442, + -2.515393 + ] + }, + "id": "node/6366312321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6904590050" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.2180398, + -9.4378597 + ] + }, + "id": "node/6904590050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6904590051" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.2180339, + -9.4378545 + ] + }, + "id": "node/6904590051" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6904590052" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.2180045, + -9.4378873 + ] + }, + "id": "node/6904590052" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6904590053" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.2180104, + -9.4378925 + ] + }, + "id": "node/6904590053" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12574660949" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.7943359, + -9.514695 + ] + }, + "id": "node/12574660949" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12574660950" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.7944343, + -9.5151385 + ] + }, + "id": "node/12574660950" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12574660951" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.7944068, + -9.5151463 + ] + }, + "id": "node/12574660951" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12574660952" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.7943112, + -9.5147008 + ] + }, + "id": "node/12574660952" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6473993571" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.9660838, + -8.2604724 + ] + }, + "id": "node/6473993571" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6473993572" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.9660426, + -8.2605131 + ] + }, + "id": "node/6473993572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6473993573" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.9659974, + -8.2604683 + ] + }, + "id": "node/6473993573" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6473993574" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.9660385, + -8.2604276 + ] + }, + "id": "node/6473993574" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5908100537" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9344136, + -8.1683042 + ] + }, + "id": "node/5908100537" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5908100611" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9344067, + -8.1683121 + ] + }, + "id": "node/5908100611" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5908100612" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9345237, + -8.1684309 + ] + }, + "id": "node/5908100612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5908100613" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9345316, + -8.1684244 + ] + }, + "id": "node/5908100613" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7080883970" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9643259, + -8.1480335 + ] + }, + "id": "node/7080883970" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7080883971" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9643229, + -8.1480421 + ] + }, + "id": "node/7080883971" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7080883972" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9644275, + -8.1480782 + ] + }, + "id": "node/7080883972" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7080883973" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9644305, + -8.1480696 + ] + }, + "id": "node/7080883973" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7692015681" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9686822, + -8.1174863 + ] + }, + "id": "node/7692015681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7692015682" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9686446, + -8.1174741 + ] + }, + "id": "node/7692015682" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7692015683" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.968683, + -8.1174836 + ] + }, + "id": "node/7692015683" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7692015684" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9686455, + -8.1174714 + ] + }, + "id": "node/7692015684" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5557322363" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9813177, + -8.0639748 + ] + }, + "id": "node/5557322363" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6384724788" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9813126, + -8.0639968 + ] + }, + "id": "node/6384724788" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6384724790" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9813001, + -8.0639708 + ] + }, + "id": "node/6384724790" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6384724791" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.981295, + -8.0639928 + ] + }, + "id": "node/6384724791" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9554392290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9813152, + -8.0639857 + ] + }, + "id": "node/9554392290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7965157495" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9292632, + -8.0972552 + ] + }, + "id": "node/7965157495" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7965157496" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9292357, + -8.0974607 + ] + }, + "id": "node/7965157496" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7965157497" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9291156, + -8.0974449 + ] + }, + "id": "node/7965157497" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7965157498" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9291431, + -8.0972394 + ] + }, + "id": "node/7965157498" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9398221661" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9495945, + -8.0587654 + ] + }, + "id": "node/9398221661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9398221662" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9495436, + -8.0587809 + ] + }, + "id": "node/9398221662" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9398221663" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9495936, + -8.058942 + ] + }, + "id": "node/9398221663" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9398221664" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9496445, + -8.0589265 + ] + }, + "id": "node/9398221664" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8319557551" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.925642, + -8.0610056 + ] + }, + "id": "node/8319557551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8319557552" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9256548, + -8.0610354 + ] + }, + "id": "node/8319557552" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8319557553" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9249587, + -8.0613293 + ] + }, + "id": "node/8319557553" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8319557554" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9249458, + -8.0612993 + ] + }, + "id": "node/8319557554" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9156748188" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9250907, + -8.0612736 + ] + }, + "id": "node/9156748188" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9156748191" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9250294, + -8.0612995 + ] + }, + "id": "node/9156748191" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697764" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9100864, + -8.1205153 + ] + }, + "id": "node/8726697764" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697765" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.910031, + -8.1205274 + ] + }, + "id": "node/8726697765" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697766" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9101691, + -8.1211475 + ] + }, + "id": "node/8726697766" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697767" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9102245, + -8.1211354 + ] + }, + "id": "node/8726697767" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697768" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9102322, + -8.121158 + ] + }, + "id": "node/8726697768" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697769" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9101852, + -8.1211686 + ] + }, + "id": "node/8726697769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697770" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9102774, + -8.1213539 + ] + }, + "id": "node/8726697770" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697771" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9102304, + -8.1213645 + ] + }, + "id": "node/8726697771" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697772" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9103102, + -8.1217099 + ] + }, + "id": "node/8726697772" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8726697773" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9103571, + -8.1216992 + ] + }, + "id": "node/8726697773" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5941599707" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9119889, + -8.1150987 + ] + }, + "id": "node/5941599707" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5941599708" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9123107, + -8.1153472 + ] + }, + "id": "node/5941599708" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12038201643" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9121073, + -8.1153822 + ] + }, + "id": "node/12038201643" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12038201644" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9120832, + -8.1151618 + ] + }, + "id": "node/12038201644" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12038201645" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9119973, + -8.1151724 + ] + }, + "id": "node/12038201645" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12038201646" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9122897, + -8.1150662 + ] + }, + "id": "node/12038201646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9387033849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.0071973, + -8.0212691 + ] + }, + "id": "node/9387033849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9387034127" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.0072049, + -8.021252 + ] + }, + "id": "node/9387034127" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9387060722" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.0073002, + -8.0212937 + ] + }, + "id": "node/9387060722" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9387060817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -35.0072925, + -8.0213108 + ] + }, + "id": "node/9387060817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10137945593" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9992518, + -8.0168811 + ] + }, + "id": "node/10137945593" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10137945594" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9992344, + -8.0169958 + ] + }, + "id": "node/10137945594" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10137945677" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9992674, + -8.0170006 + ] + }, + "id": "node/10137945677" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10137945678" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9992848, + -8.0168859 + ] + }, + "id": "node/10137945678" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9455888933" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9432363, + -8.0448098 + ] + }, + "id": "node/9455888933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9455888957" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9432273, + -8.0447883 + ] + }, + "id": "node/9455888957" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9455888958" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9431898, + -8.0448278 + ] + }, + "id": "node/9455888958" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9455888959" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9431796, + -8.0448022 + ] + }, + "id": "node/9455888959" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9455903253" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9432159, + -8.0447878 + ] + }, + "id": "node/9455903253" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9455903254" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9432174, + -8.0447922 + ] + }, + "id": "node/9455903254" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9362834001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.962692, + -8.0233073 + ] + }, + "id": "node/9362834001" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9362834002" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9626866, + -8.0233441 + ] + }, + "id": "node/9362834002" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9362834003" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9626388, + -8.023319 + ] + }, + "id": "node/9362834003" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9362834004" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9626554, + -8.0232881 + ] + }, + "id": "node/9362834004" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6845432513" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950594, + -8.0140292 + ] + }, + "id": "node/6845432513" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6845432514" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9505355, + -8.0139765 + ] + }, + "id": "node/6845432514" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6845432515" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.9505235, + -8.013991 + ] + }, + "id": "node/6845432515" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6845432516" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.950582, + -8.014041 + ] + }, + "id": "node/6845432516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440534427" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8988062, + -8.0376193 + ] + }, + "id": "node/9440534427" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440534428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8988766, + -8.0376182 + ] + }, + "id": "node/9440534428" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440534429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8987915, + -8.0376362 + ] + }, + "id": "node/9440534429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440534518" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8988768, + -8.0376351 + ] + }, + "id": "node/9440534518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440610693" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8988625, + -8.0376353 + ] + }, + "id": "node/9440610693" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9439900172" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8820904, + -8.0146143 + ] + }, + "id": "node/9439900172" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9439900173" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8819183, + -8.0146707 + ] + }, + "id": "node/9439900173" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9439900374" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8820932, + -8.0146263 + ] + }, + "id": "node/9439900374" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9439900448" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8819155, + -8.0146589 + ] + }, + "id": "node/9439900448" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440268152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882651, + -8.0140177 + ] + }, + "id": "node/9440268152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440268153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8825234, + -8.0140452 + ] + }, + "id": "node/9440268153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440268336" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882648, + -8.0140041 + ] + }, + "id": "node/9440268336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440268338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.882535, + -8.0140385 + ] + }, + "id": "node/9440268338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440268428" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8825377, + -8.0140346 + ] + }, + "id": "node/9440268428" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440268429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8825311, + -8.0140414 + ] + }, + "id": "node/9440268429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9440269019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8825392, + -8.0140284 + ] + }, + "id": "node/9440269019" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436417" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8446521, + -7.9569542 + ] + }, + "id": "node/9548436417" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436517" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8446637, + -7.9569688 + ] + }, + "id": "node/9548436517" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436518" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8452897, + -7.9571763 + ] + }, + "id": "node/9548436518" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436519" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8453025, + -7.9571928 + ] + }, + "id": "node/9548436519" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436617" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8446368, + -7.9569894 + ] + }, + "id": "node/9548436617" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436717" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8446269, + -7.9569761 + ] + }, + "id": "node/9548436717" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436718" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8452875, + -7.9572042 + ] + }, + "id": "node/9548436718" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9548436817" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8452747, + -7.9571877 + ] + }, + "id": "node/9548436817" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11948545337" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8972536, + -7.9088897 + ] + }, + "id": "node/11948545337" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11948545338" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8972947, + -7.9088995 + ] + }, + "id": "node/11948545338" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11948552075" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8973139, + -7.9088601 + ] + }, + "id": "node/11948552075" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11948552076" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897326, + -7.9088832 + ] + }, + "id": "node/11948552076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11948552077" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.897232, + -7.9089322 + ] + }, + "id": "node/11948552077" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11948552078" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8972179, + -7.9089072 + ] + }, + "id": "node/11948552078" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4773204828" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8174371, + -7.1620964 + ] + }, + "id": "node/4773204828" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4773204829" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.8174419, + -7.1621464 + ] + }, + "id": "node/4773204829" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4773204830" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.817317, + -7.1621595 + ] + }, + "id": "node/4773204830" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4773204831" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -34.817311, + -7.1621143 + ] + }, + "id": "node/4773204831" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11196428429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6096753, + -3.8889409 + ] + }, + "id": "node/11196428429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11196428430" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6096924, + -3.8889749 + ] + }, + "id": "node/11196428430" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11196428432" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6096035, + -3.8889917 + ] + }, + "id": "node/11196428432" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11196428433" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6096299, + -3.8890263 + ] + }, + "id": "node/11196428433" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191790130" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6137425, + -3.8538886 + ] + }, + "id": "node/5191790130" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191790131" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6137223, + -3.8538482 + ] + }, + "id": "node/5191790131" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191790132" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6134872, + -3.8539651 + ] + }, + "id": "node/5191790132" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5191790133" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6135074, + -3.8540055 + ] + }, + "id": "node/5191790133" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9998858355" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6060212, + -3.8174101 + ] + }, + "id": "node/9998858355" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9998866847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6059808, + -3.8174357 + ] + }, + "id": "node/9998866847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9998866852" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6059902, + -3.8174517 + ] + }, + "id": "node/9998866852" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9998866853" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.6060308, + -3.8174267 + ] + }, + "id": "node/9998866853" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5263607158" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5935394, + -3.8071163 + ] + }, + "id": "node/5263607158" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5263607163" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.593642, + -3.8070461 + ] + }, + "id": "node/5263607163" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5263607164" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5935222, + -3.8070942 + ] + }, + "id": "node/5263607164" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5263607165" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5936231, + -3.8070233 + ] + }, + "id": "node/5263607165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570441988" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4933291, + -3.8424191 + ] + }, + "id": "node/10570441988" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570441989" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4933301, + -3.8424436 + ] + }, + "id": "node/10570441989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570441990" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4932407, + -3.8424472 + ] + }, + "id": "node/10570441990" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570441991" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4932397, + -3.8424227 + ] + }, + "id": "node/10570441991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570463018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4927906, + -3.8424617 + ] + }, + "id": "node/10570463018" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570463019" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4927959, + -3.8426354 + ] + }, + "id": "node/10570463019" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570463020" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4927682, + -3.8426362 + ] + }, + "id": "node/10570463020" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10570463021" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4927633, + -3.8424625 + ] + }, + "id": "node/10570463021" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10721551646" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5874907, + -3.7899472 + ] + }, + "id": "node/10721551646" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11154753940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5874354, + -3.7899948 + ] + }, + "id": "node/11154753940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11154753941" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5873782, + -3.7899293 + ] + }, + "id": "node/11154753941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11154753942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5874313, + -3.7898831 + ] + }, + "id": "node/11154753942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6810506942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5637911, + -3.77644 + ] + }, + "id": "node/6810506942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6810506943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5638357, + -3.7764774 + ] + }, + "id": "node/6810506943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6810506944" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5637673, + -3.7765224 + ] + }, + "id": "node/6810506944" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6810506945" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5637405, + -3.7764999 + ] + }, + "id": "node/6810506945" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8260649545" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5637756, + -3.7765125 + ] + }, + "id": "node/8260649545" + }, + { + "type": "Feature", + "properties": { + "@id": "node/8260649546" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5637934, + -3.7765275 + ] + }, + "id": "node/8260649546" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12306468846" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5640468, + -3.7762474 + ] + }, + "id": "node/12306468846" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12306468847" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5639989, + -3.7763025 + ] + }, + "id": "node/12306468847" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12306468848" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5639475, + -3.7762581 + ] + }, + "id": "node/12306468848" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12306468849" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5639954, + -3.776203 + ] + }, + "id": "node/12306468849" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10080753940" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.1603076, + -6.4947945 + ] + }, + "id": "node/10080753940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10080753941" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.160206, + -6.494782 + ] + }, + "id": "node/10080753941" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10080753942" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.1601965, + -6.4948583 + ] + }, + "id": "node/10080753942" + }, + { + "type": "Feature", + "properties": { + "@id": "node/10080753943" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -36.1602981, + -6.4948708 + ] + }, + "id": "node/10080753943" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4882460207" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5390566, + -3.7400233 + ] + }, + "id": "node/4882460207" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4882460208" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5390122, + -3.740064 + ] + }, + "id": "node/4882460208" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4882460209" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5389947, + -3.7400419 + ] + }, + "id": "node/4882460209" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4882460210" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5390402, + -3.7400023 + ] + }, + "id": "node/4882460210" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11146805151" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5417349, + -3.7184653 + ] + }, + "id": "node/11146805151" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11146805152" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5417514, + -3.71847 + ] + }, + "id": "node/11146805152" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11146805153" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5418691, + -3.7184638 + ] + }, + "id": "node/11146805153" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11146805154" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5418691, + -3.7184849 + ] + }, + "id": "node/11146805154" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11146805162" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5417353, + -3.7184877 + ] + }, + "id": "node/11146805162" + } + ] +} \ No newline at end of file diff --git a/apps/bicycle-racks/src/db/ciclomapa-Recife, Pernambuco, Brasil.geojson b/apps/bicycle-racks/src/db/ciclomapa-Recife, Pernambuco, Brasil.geojson new file mode 100644 index 0000000..708b166 --- /dev/null +++ b/apps/bicycle-racks/src/db/ciclomapa-Recife, Pernambuco, Brasil.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","id":"way/590791005","properties":{"name":"Viabike Várzea","id":"way/590791005","type":"Oficinas & lojas"},"geometry":{"type":"Polygon","coordinates":[[[-34.9571472,-8.037736],[-34.9572162,-8.0378631],[-34.9570791,-8.0379361],[-34.9570101,-8.037809],[-34.9571472,-8.037736]]]}},{"type":"Feature","id":"way/618688179","properties":{"name":"Passarela Metrô / Aeroporto","id":"way/618688179","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.914761,-8.1338625],[-34.9147175,-8.1338742],[-34.9147225,-8.1338962],[-34.9147403,-8.1338907],[-34.9147438,-8.1339065],[-34.9147518,-8.1339425],[-34.9147244,-8.1339489],[-34.9147071,-8.1339525],[-34.9147026,-8.133954],[-34.9146826,-8.1338813],[-34.9146678,-8.1338843],[-34.9146321,-8.1337303],[-34.914414,-8.1327704],[-34.916077,-8.1322619],[-34.916537,-8.1322885],[-34.9169355,-8.1323172],[-34.9171197,-8.1323305],[-34.9173658,-8.1323482],[-34.9174356,-8.132361],[-34.9174079,-8.1324451],[-34.9173349,-8.1324316],[-34.916081,-8.1323535],[-34.9145213,-8.1328341],[-34.914761,-8.1338625]]]}},{"type":"Feature","id":"way/681772917","properties":{"id":"way/681772917","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9813177,-8.0639748],[-34.9813152,-8.0639857],[-34.9813126,-8.0639968],[-34.981295,-8.0639928],[-34.9813001,-8.0639708],[-34.9813177,-8.0639748]]]}},{"type":"Feature","id":"way/698304999","properties":{"name":"Píer Aurora","id":"way/698304999","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.8759109,-8.0549577],[-34.8758542,-8.054863],[-34.8758738,-8.0548499],[-34.8759093,-8.0549041],[-34.8759209,-8.0549067],[-34.8760009,-8.0548603],[-34.8761189,-8.0547891],[-34.8763233,-8.0546791],[-34.876364,-8.0546551],[-34.876431,-8.0547458],[-34.8763525,-8.0547463],[-34.8763283,-8.054705],[-34.8761309,-8.0548102],[-34.8760167,-8.0548832],[-34.8759343,-8.0549304],[-34.8759329,-8.0549476],[-34.8759109,-8.0549577]]]}},{"type":"Feature","id":"way/730870939","properties":{"id":"way/730870939","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.950594,-8.0140292],[-34.950582,-8.014041],[-34.9505235,-8.013991],[-34.9505355,-8.0139765],[-34.950594,-8.0140292]]]}},{"type":"Feature","id":"way/766795490","properties":{"id":"way/766795490","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.8989969,-8.0566984],[-34.8989971,-8.0566749],[-34.8992743,-8.0566772],[-34.8992741,-8.0566998],[-34.8992739,-8.0567278],[-34.8989967,-8.0567253],[-34.8989969,-8.0566984]]]}},{"type":"Feature","id":"way/766795491","properties":{"id":"way/766795491","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.8987088,-8.0566946],[-34.8987087,-8.0567186],[-34.8984225,-8.0567167],[-34.8984227,-8.0566919],[-34.8984228,-8.0566759],[-34.8984228,-8.0566665],[-34.898709,-8.0566683],[-34.8987088,-8.0566946]]]}},{"type":"Feature","id":"way/854077419","properties":{"id":"way/854077419","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9292632,-8.0972552],[-34.9292357,-8.0974607],[-34.9291156,-8.0974449],[-34.9291431,-8.0972394],[-34.9292632,-8.0972552]]]}},{"type":"Feature","id":"way/895031808","properties":{"id":"way/895031808","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.925642,-8.0610056],[-34.9256548,-8.0610354],[-34.9250907,-8.0612736],[-34.9250294,-8.0612995],[-34.9249587,-8.0613293],[-34.9249458,-8.0612993],[-34.925642,-8.0610056]]]}},{"type":"Feature","id":"way/942402204","properties":{"id":"way/942402204","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9102245,-8.1211354],[-34.9101691,-8.1211475],[-34.910031,-8.1205274],[-34.9100864,-8.1205153],[-34.9102245,-8.1211354]]]}},{"type":"Feature","id":"way/942402205","properties":{"id":"way/942402205","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9102774,-8.1213539],[-34.9102304,-8.1213645],[-34.9101852,-8.1211686],[-34.9102322,-8.121158],[-34.9102774,-8.1213539]]]}},{"type":"Feature","id":"way/942402206","properties":{"id":"way/942402206","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9103571,-8.1216992],[-34.9103102,-8.1217099],[-34.9102304,-8.1213645],[-34.9102774,-8.1213539],[-34.9103571,-8.1216992]]]}},{"type":"Feature","id":"way/1009380428","properties":{"name":"Kelly Bike","id":"way/1009380428","type":"Oficinas & lojas"},"geometry":{"type":"Polygon","coordinates":[[[-34.9041169,-8.1214937],[-34.9041179,-8.1215397],[-34.9040279,-8.1215415],[-34.904027,-8.1214955],[-34.9041169,-8.1214937]]]}},{"type":"Feature","id":"way/1014955396","properties":{"id":"way/1014955396","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.962692,-8.0233073],[-34.9626866,-8.0233441],[-34.9626388,-8.023319],[-34.9626554,-8.0232881],[-34.962692,-8.0233073]]]}},{"type":"Feature","id":"way/1018943843","properties":{"id":"way/1018943843","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9495945,-8.0587654],[-34.9496445,-8.0589265],[-34.9495936,-8.058942],[-34.9495436,-8.0587809],[-34.9495945,-8.0587654]]]}},{"type":"Feature","id":"way/1022413584","properties":{"id":"way/1022413584","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.8799169,-8.0629613],[-34.8799055,-8.0629406],[-34.8801491,-8.0628096],[-34.8801543,-8.0628192],[-34.8801564,-8.0628229],[-34.8801666,-8.0628414],[-34.8801708,-8.062849],[-34.8801735,-8.062854],[-34.8799299,-8.0629849],[-34.8799169,-8.0629613]]]}},{"type":"Feature","id":"way/1022413596","properties":{"id":"way/1022413596","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.8796631,-8.0630963],[-34.8796747,-8.0631173],[-34.8794235,-8.0632531],[-34.8794115,-8.0632313],[-34.8794038,-8.0632173],[-34.8793992,-8.063209],[-34.8796503,-8.0630732],[-34.8796631,-8.0630963]]]}},{"type":"Feature","id":"way/1023664092","properties":{"id":"way/1023664092","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.8820904,-8.0146143],[-34.8820932,-8.0146263],[-34.8819183,-8.0146707],[-34.8819155,-8.0146589],[-34.8820904,-8.0146143]]]}},{"type":"Feature","id":"way/1023700590","properties":{"id":"way/1023700590","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.882651,-8.0140177],[-34.8825234,-8.0140452],[-34.8825311,-8.0140414],[-34.882535,-8.0140385],[-34.8825377,-8.0140346],[-34.8825392,-8.0140284],[-34.882648,-8.0140041],[-34.882651,-8.0140177]]]}},{"type":"Feature","id":"way/1023718703","properties":{"id":"way/1023718703","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.8988062,-8.0376193],[-34.8988766,-8.0376182],[-34.8988768,-8.0376351],[-34.8988625,-8.0376353],[-34.8987915,-8.0376362],[-34.8988062,-8.0376193]]]}},{"type":"Feature","id":"way/1025570799","properties":{"id":"way/1025570799","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9432273,-8.0447883],[-34.9432363,-8.0448098],[-34.9431898,-8.0448278],[-34.9431796,-8.0448022],[-34.9432159,-8.0447878],[-34.9432174,-8.0447922],[-34.9432273,-8.0447883]]]}},{"type":"Feature","id":"way/1101930429","properties":{"name":"Metrô/Aeroporto","id":"way/1101930429","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.9146182,-8.1335339],[-34.9146232,-8.1335563],[-34.9146122,-8.1335587],[-34.9146072,-8.1335363],[-34.9146182,-8.1335339]]]}},{"type":"Feature","id":"way/1101930434","properties":{"name":"Metrô/Aeroporto","id":"way/1101930434","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.9153179,-8.1325221],[-34.9153248,-8.1325421],[-34.9152882,-8.1325544],[-34.9152537,-8.132566],[-34.9152468,-8.1325461],[-34.9153179,-8.1325221]]]}},{"type":"Feature","id":"way/1101930438","properties":{"name":"Metrô/Aeroporto","id":"way/1101930438","type":"Proibido"},"geometry":{"type":"Polygon","coordinates":[[[-34.9160443,-8.1322959],[-34.9160821,-8.1322807],[-34.9161509,-8.132281],[-34.9161502,-8.1323128],[-34.9160808,-8.1323093],[-34.9160498,-8.1323166],[-34.9160443,-8.1322959]]]}},{"type":"Feature","id":"way/1299581322","properties":{"id":"way/1299581322","type":"Bicicletários"},"geometry":{"type":"Polygon","coordinates":[[[-34.9122897,-8.1150662],[-34.9123107,-8.1153472],[-34.9121073,-8.1153822],[-34.9120832,-8.1151618],[-34.9119973,-8.1151724],[-34.9119889,-8.1150987],[-34.9122897,-8.1150662]]]}},{"type":"Feature","id":"way/1308479411","properties":{"id":"way/1308479411","type":"Calçada compartilhada"},"geometry":{"type":"Polygon","coordinates":[[[-34.9029844,-8.0451036],[-34.9029691,-8.0451608],[-34.902963,-8.0451834],[-34.9029533,-8.0452526],[-34.9029595,-8.0452824],[-34.9029727,-8.0453025],[-34.9030203,-8.0453342],[-34.9029102,-8.0452994],[-34.9028349,-8.0452756],[-34.9028709,-8.0452637],[-34.902897,-8.045242],[-34.9029017,-8.0452356],[-34.902932,-8.0451939],[-34.9029844,-8.0451036]]]}},{"type":"Feature","id":"way/29423002","properties":{"name":"Rua Madre de Deus","id":"way/29423002","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8736574,-8.0636227],[-34.8736061,-8.0639714],[-34.873574,-8.0642516],[-34.8735568,-8.0644052],[-34.8735309,-8.0645762],[-34.8735157,-8.0646787],[-34.8735089,-8.0647252],[-34.8734621,-8.0650515],[-34.8734502,-8.0651472],[-34.8734122,-8.0654182],[-34.8733961,-8.0655343],[-34.8733536,-8.0658737],[-34.8733357,-8.0660269],[-34.8733383,-8.0661687]]}},{"type":"Feature","id":"way/42509040","properties":{"name":"Rua Delmiro Gouveia","id":"way/42509040","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9307975,-8.0634938],[-34.9305019,-8.0636392],[-34.9303378,-8.0637149],[-34.9302736,-8.0637478],[-34.92997,-8.0639037],[-34.9294438,-8.0641739],[-34.9293385,-8.064235]]}},{"type":"Feature","id":"way/42509291","properties":{"name":"Rua Ministro João Alberto","id":"way/42509291","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9449853,-8.0364007],[-34.945131,-8.0365659],[-34.9451853,-8.0366275],[-34.9452793,-8.0367341],[-34.945358,-8.0368263],[-34.9454112,-8.0368916]]}},{"type":"Feature","id":"way/42509471","properties":{"name":"Rua Gomes Taborda","id":"way/42509471","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9119362,-8.0589791],[-34.9120521,-8.0589366],[-34.9121704,-8.0588905],[-34.9123147,-8.0588235],[-34.9128194,-8.0585988],[-34.9134141,-8.0584228],[-34.9140369,-8.0582481],[-34.9149743,-8.0579819],[-34.9153548,-8.0578647],[-34.9158742,-8.0577199],[-34.9161128,-8.0576519],[-34.9164685,-8.0575459],[-34.9169518,-8.0573893]]}},{"type":"Feature","id":"way/44118743","properties":{"name":"Avenida Inácio Monteiro","id":"way/44118743","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9299492,-8.045634],[-34.9299792,-8.045688],[-34.9304581,-8.0465727]]}},{"type":"Feature","id":"way/44814745","properties":{"name":"Rua Marquês de Maricá","id":"way/44814745","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.91419,-8.0474567],[-34.914363,-8.0475197],[-34.914593,-8.0475476],[-34.9146748,-8.0475564],[-34.9147352,-8.0475629]]}},{"type":"Feature","id":"way/51816213","properties":{"name":"Ponte Conde Maurício de Nassau","id":"way/51816213","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8763296,-8.0640965],[-34.8762163,-8.0640809],[-34.8761431,-8.0640692]]}},{"type":"Feature","id":"way/51816219","properties":{"name":"Ponte Velha","id":"way/51816219","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8844468,-8.0656506],[-34.8846567,-8.0653408],[-34.884991,-8.0648472],[-34.8849973,-8.0648377]]}},{"type":"Feature","id":"way/51816225","properties":{"name":"Ponte da Boa Vista","id":"way/51816225","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8810822,-8.063806],[-34.8810307,-8.0638193],[-34.8809231,-8.0638489]]}},{"type":"Feature","id":"way/51816230","properties":{"name":"Avenida Rio Branco","id":"way/51816230","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8737916,-8.0623949],[-34.873756,-8.0624055],[-34.8736337,-8.0624406],[-34.8735113,-8.0624756],[-34.8731726,-8.0625725],[-34.872516,-8.0627604],[-34.8719385,-8.0629298],[-34.8715036,-8.0630501]]}},{"type":"Feature","id":"way/51816231","properties":{"name":"Rua do Bom Jesus","id":"way/51816231","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8709795,-8.0609831],[-34.8709614,-8.0608763],[-34.8709703,-8.0608008],[-34.8709767,-8.0607643],[-34.8709908,-8.0607163]]}},{"type":"Feature","id":"way/51816232","properties":{"name":"Avenida Marquês de Olinda","id":"way/51816232","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8723679,-8.0633865],[-34.8723372,-8.0633798],[-34.8717634,-8.0632828],[-34.8715646,-8.0632483],[-34.8714892,-8.0632387]]}},{"type":"Feature","id":"way/51816238","properties":{"name":"Rua Dona Maria César","id":"way/51816238","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8723679,-8.0633865],[-34.8722774,-8.0637952],[-34.8721956,-8.0641274],[-34.8721043,-8.0644549],[-34.8720496,-8.0645262]]}},{"type":"Feature","id":"way/51816239","properties":{"name":"Rua Álvares Cabral","id":"way/51816239","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8724717,-8.0630145],[-34.873099,-8.0631286],[-34.8737151,-8.0632482],[-34.8740307,-8.0632913],[-34.8740941,-8.0633],[-34.8743932,-8.0633409]]}},{"type":"Feature","id":"way/51829352","properties":{"name":"Cais da Alfândega","id":"way/51829352","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.874436,-8.0637652],[-34.87439,-8.0639809]]}},{"type":"Feature","id":"way/51829355","properties":{"name":"Rua da Moeda","id":"way/51829355","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8735157,-8.0646787],[-34.8734519,-8.0646694],[-34.8734175,-8.0646644],[-34.873336,-8.0646777],[-34.8731242,-8.0646485],[-34.8730135,-8.0646025]]}},{"type":"Feature","id":"way/51829356","properties":{"name":"Rua Tomazina","id":"way/51829356","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8721956,-8.0641274],[-34.8722157,-8.0641321],[-34.8724803,-8.0641826],[-34.8725005,-8.0641865]]}},{"type":"Feature","id":"way/51829376","properties":{"name":"Rua Barão Rodrigues Mendes","id":"way/51829376","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.871639,-8.0612652],[-34.8718699,-8.061136],[-34.8720531,-8.0610369]]}},{"type":"Feature","id":"way/51878744","properties":{"name":"Rua Monte Castelo","id":"way/51878744","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.890018,-8.0502118],[-34.8917952,-8.049997],[-34.8918973,-8.0499819],[-34.8919885,-8.0499651],[-34.8920529,-8.0499392],[-34.8921121,-8.0499025],[-34.8926729,-8.0493846],[-34.8927978,-8.0492713],[-34.892832,-8.0492461]]}},{"type":"Feature","id":"way/51878749","properties":{"name":"Rua Mariz e Barros","id":"way/51878749","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8726607,-8.0656782],[-34.8727246,-8.0653145],[-34.8727724,-8.0650246],[-34.8727863,-8.064935],[-34.8728508,-8.0645795],[-34.8728623,-8.0645104],[-34.8729041,-8.0642542],[-34.8729567,-8.0639106],[-34.8730244,-8.063509],[-34.873099,-8.0631286],[-34.8731852,-8.0626703],[-34.8731843,-8.0626146],[-34.8731726,-8.0625725]]}},{"type":"Feature","id":"way/51878755","properties":{"name":"Rua de São Jorge","id":"way/51878755","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8705612,-8.0594601],[-34.8706938,-8.0599684],[-34.8707422,-8.0601475],[-34.8707585,-8.0602078],[-34.8708163,-8.0604217],[-34.8708416,-8.0605152]]}},{"type":"Feature","id":"way/51878758","properties":{"name":"Praça da República","id":"way/51878758","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8765324,-8.0616035],[-34.8765367,-8.0615444],[-34.8765726,-8.0610458],[-34.8766123,-8.0605489],[-34.8766217,-8.0605263],[-34.8766357,-8.0605074],[-34.8766653,-8.0604891]]}},{"type":"Feature","id":"way/54239687","properties":{"name":"Rua Velha","id":"way/54239687","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8851625,-8.0646461],[-34.8853704,-8.0644116],[-34.8859335,-8.0639565]]}},{"type":"Feature","id":"way/54239701","properties":{"name":"Rua do Aragão","id":"way/54239701","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8853577,-8.0626859],[-34.8855115,-8.0626326],[-34.8858216,-8.0625183],[-34.8859538,-8.0624659],[-34.886064,-8.0624169]]}},{"type":"Feature","id":"way/75033825","properties":{"name":"Rua Conselheiro Teodoro","id":"way/75033825","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9163276,-8.0529729],[-34.9162672,-8.0528613],[-34.9158973,-8.052099],[-34.9158557,-8.0519808],[-34.9158195,-8.0518586],[-34.9157645,-8.0516315],[-34.9157216,-8.0514417],[-34.915594,-8.0508174]]}},{"type":"Feature","id":"way/85378262","properties":{"name":"Rua João Cardoso Aires","id":"way/85378262","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9062691,-8.1433039],[-34.9070661,-8.1429562],[-34.9077009,-8.1426677],[-34.9077685,-8.1426369],[-34.9085018,-8.1423043],[-34.9085822,-8.1422678]]}},{"type":"Feature","id":"way/85529937","properties":{"name":"Rua Paissandú","id":"way/85529937","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8971984,-8.0620619],[-34.8971279,-8.0619966],[-34.896267,-8.0612725],[-34.8959534,-8.0609903],[-34.8956556,-8.0607454],[-34.8953182,-8.0604661],[-34.8944918,-8.0597579]]}},{"type":"Feature","id":"way/85683720","properties":{"name":"Rua Marcos André","id":"way/85683720","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.907389,-8.040776],[-34.907843,-8.0408655],[-34.9080643,-8.0409061]]}},{"type":"Feature","id":"way/85683725","properties":{"name":"Rua Marcos André","id":"way/85683725","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9055815,-8.0404586],[-34.9056944,-8.0404755],[-34.9061139,-8.0405555],[-34.9069153,-8.040691],[-34.907389,-8.040776]]}},{"type":"Feature","id":"way/85697360","properties":{"name":"Avenida João de Barros","id":"way/85697360","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8897536,-8.0476345],[-34.889804,-8.0468997],[-34.8898269,-8.0465655],[-34.8898381,-8.046479],[-34.8899263,-8.045699],[-34.8899428,-8.0455183],[-34.8899575,-8.0453267],[-34.8899661,-8.0452615],[-34.8899783,-8.0451697]]}},{"type":"Feature","id":"way/85697891","properties":{"name":"Rua Marquês do Paraná","id":"way/85697891","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8878823,-8.040292],[-34.8875737,-8.0399222]]}},{"type":"Feature","id":"way/85711372","properties":{"name":"Rua Marechal Deodoro","id":"way/85711372","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8827436,-8.0353556],[-34.8827747,-8.0353939],[-34.8828793,-8.0355034],[-34.883225,-8.0357889]]}},{"type":"Feature","id":"way/85711373","properties":{"name":"Rua Antônio Rangel","id":"way/85711373","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.887374,-8.0374723],[-34.8862536,-8.0386658]]}},{"type":"Feature","id":"way/85741105","properties":{"name":"Rua Marechal Deodoro","id":"way/85741105","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8875038,-8.0398471],[-34.8874015,-8.0397228],[-34.8873315,-8.0396478]]}},{"type":"Feature","id":"way/87240009","properties":{"name":"Rua Bruno Veloso","id":"way/87240009","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9020625,-8.1211857],[-34.9020179,-8.1211995],[-34.9019347,-8.1212424]]}},{"type":"Feature","id":"way/87777346","properties":{"name":"Rua Copacabana","id":"way/87777346","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9085158,-8.1375631],[-34.9093886,-8.1373181],[-34.9096702,-8.1372465],[-34.9101792,-8.1371074],[-34.9108324,-8.136942],[-34.9114684,-8.1367918],[-34.9121437,-8.136637]]}},{"type":"Feature","id":"way/87788710","properties":{"name":"Praça da República","id":"way/87788710","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8766653,-8.0604891],[-34.8767748,-8.0604726],[-34.8768329,-8.0604639],[-34.8771735,-8.0604147],[-34.8775483,-8.0603615],[-34.8775979,-8.0603549],[-34.8776845,-8.0603437],[-34.8777236,-8.0603397],[-34.8778582,-8.0603258],[-34.877961,-8.0603179]]}},{"type":"Feature","id":"way/87788711","properties":{"name":"Praça da República","id":"way/87788711","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8780131,-8.0612593],[-34.8780566,-8.0611889],[-34.8780721,-8.0611583],[-34.8780764,-8.0611255]]}},{"type":"Feature","id":"way/89381805","properties":{"name":"Rua Antônio Falcão","id":"way/89381805","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8991302,-8.1138869],[-34.8993765,-8.1137572],[-34.8999843,-8.1134302],[-34.9000535,-8.1133945],[-34.9001352,-8.1133554]]}},{"type":"Feature","id":"way/96771433","properties":{"name":"Rua José Veloso","id":"way/96771433","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9294465,-8.0646131],[-34.9290737,-8.064789],[-34.928735,-8.0649591],[-34.9284089,-8.0651232],[-34.9280465,-8.0652937],[-34.9276995,-8.0654871],[-34.9273381,-8.0656712]]}},{"type":"Feature","id":"way/102738749","properties":{"name":"Rua Antônio Falcão","id":"way/102738749","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8937878,-8.1166596],[-34.89457,-8.1162272],[-34.894659,-8.1161778]]}},{"type":"Feature","id":"way/103595421","properties":{"name":"Rua Delmiro Gouveia","id":"way/103595421","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9321423,-8.0625943],[-34.931843,-8.0626491],[-34.9317793,-8.0626712],[-34.9317276,-8.0626996],[-34.9316244,-8.0628195],[-34.9315012,-8.0629832]]}},{"type":"Feature","id":"way/103725546","properties":{"name":"Avenida Mário Álvares Pereira de Lyra","id":"way/103725546","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9311015,-8.0449939],[-34.9314368,-8.0456012],[-34.9316286,-8.045981],[-34.931668,-8.0460478],[-34.9317337,-8.0461623],[-34.9318479,-8.0463194],[-34.9320571,-8.0465181],[-34.9322899,-8.0466673],[-34.9324744,-8.0467364],[-34.9327187,-8.0467768],[-34.9329145,-8.0467914],[-34.9336159,-8.0467967],[-34.9349758,-8.0468392],[-34.935822,-8.0468657],[-34.9360004,-8.0468644],[-34.9360956,-8.0468684],[-34.9374474,-8.0469059],[-34.9377774,-8.046915],[-34.9382521,-8.0469282],[-34.9384788,-8.0469295],[-34.9390782,-8.0469202],[-34.940428,-8.0468016]]}},{"type":"Feature","id":"way/104595252","properties":{"name":"Rua Domingos José Martins","id":"way/104595252","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8719365,-8.0623854],[-34.8713731,-8.0613733]]}},{"type":"Feature","id":"way/105053856","properties":{"name":"Rua Itanagé","id":"way/105053856","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9205491,-8.1058287],[-34.9205315,-8.1058147],[-34.9199921,-8.1053307],[-34.9199093,-8.1053045],[-34.9198519,-8.1052962],[-34.9197724,-8.1052903],[-34.9196982,-8.10529],[-34.9196292,-8.1052794]]}},{"type":"Feature","id":"way/114690719","properties":{"name":"Rua Quitério Inácio de Melo","id":"way/114690719","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9093748,-8.0807178],[-34.909179,-8.0812476],[-34.908995,-8.0818022],[-34.9089758,-8.0818658]]}},{"type":"Feature","id":"way/114690720","properties":{"name":"Rua Carlos Gomes","id":"way/114690720","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9096583,-8.0570299],[-34.9102484,-8.0575464],[-34.9105248,-8.0577884],[-34.9106094,-8.0578533],[-34.91065,-8.0578781]]}},{"type":"Feature","id":"way/128124232","properties":{"name":"Rua Artur Lima Cavalcante","id":"way/128124232","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.874898,-8.0446872],[-34.8748447,-8.0447257],[-34.8748297,-8.0447363],[-34.8747869,-8.0447668],[-34.8747059,-8.0448244],[-34.8745944,-8.0449037],[-34.874445,-8.04501],[-34.8743424,-8.045083],[-34.8740938,-8.0452709]]}},{"type":"Feature","id":"way/128124535","properties":{"name":"Avenida Doutor Jayme da Fonte","id":"way/128124535","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8785113,-8.0405442],[-34.8784362,-8.040669],[-34.8783671,-8.0407786],[-34.8782364,-8.04093],[-34.8781492,-8.0410243],[-34.877952,-8.0412069],[-34.8778495,-8.0413111],[-34.8777558,-8.0414162],[-34.8775705,-8.0416563],[-34.8774643,-8.0418022],[-34.8774392,-8.0418328],[-34.8774221,-8.0418537],[-34.8773078,-8.0419857],[-34.8771632,-8.0421598],[-34.8770065,-8.0423356],[-34.8767202,-8.0426868],[-34.8764542,-8.0430268],[-34.8763394,-8.0431801],[-34.8762084,-8.0433876],[-34.8761904,-8.043416],[-34.8761541,-8.0434786],[-34.8760691,-8.0436276],[-34.8759685,-8.0438062],[-34.8759189,-8.0438872],[-34.8758411,-8.0439878],[-34.8756433,-8.0441487],[-34.8756119,-8.0441768],[-34.8753656,-8.0443545],[-34.8750541,-8.0445798],[-34.8749936,-8.0446213],[-34.874898,-8.0446872]]}},{"type":"Feature","id":"way/128147792","properties":{"name":"Rua da Aurora","id":"way/128147792","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8739071,-8.0499828],[-34.8743392,-8.0506442],[-34.8748146,-8.0513771],[-34.8757023,-8.0527522],[-34.8757103,-8.0527659],[-34.8763686,-8.0538054],[-34.8766255,-8.0542111],[-34.8769811,-8.0547726],[-34.877733,-8.0559261],[-34.8778703,-8.0561315]]}},{"type":"Feature","id":"way/128149273","properties":{"name":"Rua da Fundição","id":"way/128149273","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8768443,-8.0519768],[-34.8768934,-8.0520533],[-34.8770983,-8.0523727],[-34.877256,-8.0526184],[-34.8776066,-8.0531739],[-34.8781191,-8.0539995],[-34.8781387,-8.054031],[-34.8781751,-8.0540871],[-34.8786789,-8.0548638],[-34.8787702,-8.0550069],[-34.8788962,-8.0552043],[-34.8790745,-8.055476]]}},{"type":"Feature","id":"way/128149580","properties":{"name":"Rua da Saudade","id":"way/128149580","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8820297,-8.0601153],[-34.8827384,-8.0612274],[-34.882779,-8.0612898],[-34.8828196,-8.0613522]]}},{"type":"Feature","id":"way/128149581","properties":{"name":"Rua da Saudade","id":"way/128149581","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8798386,-8.0566181],[-34.8804985,-8.0576271],[-34.8811744,-8.0587386],[-34.881979,-8.0600204]]}},{"type":"Feature","id":"way/128149773","properties":{"name":"Rua do Riachuelo","id":"way/128149773","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8808238,-8.0607787],[-34.8808422,-8.0607684],[-34.8814046,-8.0604069],[-34.8814762,-8.0603575],[-34.8815572,-8.0603011],[-34.8818315,-8.0601178],[-34.881897,-8.0600747],[-34.881979,-8.0600204],[-34.8825401,-8.0596842],[-34.8826647,-8.0596126],[-34.8832787,-8.0592212],[-34.883309,-8.0592019],[-34.8833634,-8.0591672]]}},{"type":"Feature","id":"way/128149799","properties":{"name":"Rua do Riachuelo","id":"way/128149799","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8868787,-8.0576239],[-34.8862609,-8.0579786],[-34.8857149,-8.0582907],[-34.8856703,-8.0583162],[-34.885608,-8.0583408],[-34.8847618,-8.0586752],[-34.8835455,-8.0591316]]}},{"type":"Feature","id":"way/128149928","properties":{"name":"Rua Doutor Leopoldo Lins","id":"way/128149928","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8886644,-8.0495697],[-34.8877669,-8.0489706]]}},{"type":"Feature","id":"way/128158633","properties":{"name":"Avenida Montevidéu","id":"way/128158633","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8930887,-8.0497912],[-34.8932276,-8.050105],[-34.8938803,-8.0516169]]}},{"type":"Feature","id":"way/128158805","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/128158805","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8895763,-8.0453173],[-34.8899428,-8.0455183]]}},{"type":"Feature","id":"way/128159199","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/128159199","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8844495,-8.0428984],[-34.8845121,-8.0429202],[-34.884546,-8.042932],[-34.8846186,-8.0429585],[-34.8846905,-8.0429925]]}},{"type":"Feature","id":"way/128159481","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/128159481","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8860603,-8.042477],[-34.8854882,-8.0422201],[-34.8854126,-8.0421888],[-34.8853737,-8.0421849]]}},{"type":"Feature","id":"way/128159586","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/128159586","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8898546,-8.044284],[-34.8899407,-8.0443187],[-34.8900091,-8.0443382],[-34.8900687,-8.0443292],[-34.890137,-8.0442698]]}},{"type":"Feature","id":"way/128159820","properties":{"name":"Rua Doutor Leopoldo Lins","id":"way/128159820","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8913576,-8.049388],[-34.8925241,-8.0488808],[-34.8925911,-8.0488458],[-34.8926502,-8.0488122]]}},{"type":"Feature","id":"way/128159824","properties":{"name":"Avenida Montevidéu","id":"way/128159824","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.892832,-8.0492461],[-34.8927946,-8.0491229],[-34.8927665,-8.0490383],[-34.8927443,-8.0489622]]}},{"type":"Feature","id":"way/128162518","properties":{"name":"Rua da Palma","id":"way/128162518","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8800479,-8.063128],[-34.8802218,-8.0636161]]}},{"type":"Feature","id":"way/128163519","properties":{"name":"Rua Primeiro de Março","id":"way/128163519","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8768645,-8.0641842],[-34.8767599,-8.064169],[-34.8763842,-8.0641077]]}},{"type":"Feature","id":"way/128164046","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/128164046","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8851727,-8.04323],[-34.8858556,-8.0435442],[-34.8863231,-8.0437742],[-34.8863965,-8.0438069],[-34.8870833,-8.0441313],[-34.8877213,-8.044443],[-34.8883871,-8.0447346],[-34.8892607,-8.0451597],[-34.8895763,-8.0453173]]}},{"type":"Feature","id":"way/128164381","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/128164381","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8814208,-8.0403344],[-34.8812371,-8.0402454],[-34.8810356,-8.0401548],[-34.8807764,-8.0400297],[-34.8805218,-8.0399156],[-34.8801918,-8.03977],[-34.8800072,-8.0396862],[-34.8799745,-8.0396671],[-34.8797663,-8.0395604],[-34.879335,-8.0393624],[-34.879157,-8.0392807]]}},{"type":"Feature","id":"way/128164383","properties":{"name":"Rua Othon Paraíso","id":"way/128164383","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8831898,-8.0411543],[-34.8832787,-8.0404163],[-34.8833752,-8.0396997],[-34.8834713,-8.0389158],[-34.883673,-8.0374711],[-34.8837088,-8.0372585],[-34.883864,-8.0366276],[-34.8839151,-8.0364386]]}},{"type":"Feature","id":"way/128216048","properties":{"name":"Avenida Oliveira Lima","id":"way/128216048","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.889876,-8.0562468],[-34.8895177,-8.0562552],[-34.8893581,-8.0562765],[-34.8891905,-8.056315],[-34.8889719,-8.056392],[-34.888686,-8.0565607],[-34.8876826,-8.057153],[-34.8871919,-8.0574269],[-34.8869486,-8.0575799],[-34.8868787,-8.0576239]]}},{"type":"Feature","id":"way/128217716","properties":{"name":"Avenida Agamenon Magalhães - Pista Local","id":"way/128217716","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8831898,-8.0411543],[-34.8828349,-8.0409967],[-34.8827668,-8.0409647]]}},{"type":"Feature","id":"way/128219448","properties":{"name":"Rua Othon Paraíso","id":"way/128219448","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8840535,-8.0366041],[-34.8840057,-8.0367194],[-34.8839106,-8.0369489],[-34.8838542,-8.0371627],[-34.8837949,-8.0374938],[-34.8837402,-8.0377987],[-34.8836102,-8.0389726],[-34.8835217,-8.0397587],[-34.8834305,-8.0404865],[-34.8833533,-8.0412281]]}},{"type":"Feature","id":"way/128379804","properties":{"name":"Travessa do Cais da Detenção","id":"way/128379804","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8829538,-8.0673508],[-34.8830394,-8.0672524],[-34.8832495,-8.0669526],[-34.8832918,-8.0669057],[-34.8833623,-8.0668506],[-34.8838511,-8.0664515],[-34.8839028,-8.0663949]]}},{"type":"Feature","id":"way/128382359","properties":{"name":"Rua do Hospício","id":"way/128382359","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8839937,-8.0607289],[-34.8840259,-8.060816]]}},{"type":"Feature","id":"way/128676638","properties":{"name":"Avenida da Redenção","id":"way/128676638","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.936734,-8.0089179],[-34.9369427,-8.0086342]]}},{"type":"Feature","id":"way/128677005","properties":{"name":"Avenida da Redenção","id":"way/128677005","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9369427,-8.0086342],[-34.9369724,-8.0085782],[-34.9370035,-8.0085194],[-34.937235,-8.0080211],[-34.9373364,-8.0077922],[-34.9374166,-8.0075328],[-34.937469,-8.0073532],[-34.9375151,-8.0070404],[-34.9376096,-8.0060535],[-34.9376821,-8.0054158],[-34.9377091,-8.0052082],[-34.9378135,-8.0044676],[-34.9378564,-8.004194],[-34.9379552,-8.0034186],[-34.9380536,-8.0027817],[-34.9381988,-8.0018875],[-34.938224,-8.001692],[-34.9382413,-8.0015671],[-34.9383205,-8.0011097],[-34.9383473,-8.0009137],[-34.9384125,-8.0005089],[-34.9384465,-8.0003612],[-34.9385438,-7.9999607],[-34.9386623,-7.999618],[-34.9387227,-7.9994396],[-34.9387644,-7.9993082],[-34.9388824,-7.9989841],[-34.938958,-7.9987674],[-34.9389884,-7.9986946],[-34.9390272,-7.9985683],[-34.9390862,-7.9983492],[-34.939168,-7.9979906],[-34.9392016,-7.9977264],[-34.9392306,-7.99735],[-34.9392157,-7.9970637],[-34.9391842,-7.9968221],[-34.9391601,-7.996684],[-34.9391171,-7.9964874],[-34.9389964,-7.9960823],[-34.9389146,-7.9958805],[-34.9388047,-7.9956534],[-34.9385002,-7.9951673]]}},{"type":"Feature","id":"way/128683793","properties":{"name":"Avenida João de Barros","id":"way/128683793","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8900458,-8.0452103],[-34.8900354,-8.0453501],[-34.8900026,-8.0456496],[-34.8899818,-8.0458444]]}},{"type":"Feature","id":"way/128844077","properties":{"name":"Ponte Gregório Bezerra","id":"way/128844077","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9001878,-8.0680253],[-34.9003522,-8.0679315],[-34.9004734,-8.0678369],[-34.9006165,-8.0676977],[-34.9007535,-8.0674804],[-34.9008864,-8.067218]]}},{"type":"Feature","id":"way/128844078","properties":{"name":"Avenida Beira Rio","id":"way/128844078","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9009621,-8.066877],[-34.9009774,-8.0667836],[-34.9012074,-8.0656507]]}},{"type":"Feature","id":"way/128844079","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/128844079","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8924541,-8.0707812],[-34.8921671,-8.0707719],[-34.8921121,-8.0707772],[-34.8920725,-8.0707915],[-34.8920397,-8.0708132],[-34.8920253,-8.0708227],[-34.8919931,-8.0708698],[-34.891973,-8.0709529],[-34.8922472,-8.0720438],[-34.8922718,-8.0721436],[-34.89234,-8.0724161]]}},{"type":"Feature","id":"way/128844080","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/128844080","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8921927,-8.0724243],[-34.8917712,-8.0707838],[-34.8917679,-8.0707708]]}},{"type":"Feature","id":"way/128845698","properties":{"name":"Avenida Beira Rio","id":"way/128845698","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9014281,-8.0645822],[-34.9014653,-8.0638618],[-34.90142,-8.0634017],[-34.9013959,-8.063103],[-34.9013945,-8.0628653],[-34.9014048,-8.0624831],[-34.9014042,-8.0624156],[-34.9014029,-8.0623397],[-34.9014027,-8.0622873],[-34.9013963,-8.0622254],[-34.9013949,-8.0622119],[-34.9013868,-8.0621336]]}},{"type":"Feature","id":"way/128848837","properties":{"name":"Rua Buenos Aires","id":"way/128848837","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8930457,-8.0485921],[-34.8931854,-8.0485338],[-34.8940229,-8.0481288],[-34.8951385,-8.0476185]]}},{"type":"Feature","id":"way/128929125","properties":{"name":"Rua Nova","id":"way/128929125","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8809231,-8.0638489],[-34.8803481,-8.0640381]]}},{"type":"Feature","id":"way/128930069","properties":{"name":"Rua Matias de Albuquerque","id":"way/128930069","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8807684,-8.0634017],[-34.8802218,-8.0636161],[-34.8801433,-8.0636409],[-34.8796379,-8.0637719],[-34.8790802,-8.0639281],[-34.8785872,-8.0640626]]}},{"type":"Feature","id":"way/128931108","properties":{"name":"Rua da Matriz","id":"way/128931108","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8859335,-8.0639565],[-34.8856379,-8.0635279],[-34.8855937,-8.063429],[-34.8855306,-8.0632656],[-34.885377,-8.0627574],[-34.8853577,-8.0626859]]}},{"type":"Feature","id":"way/128931109","properties":{"name":"Rua Doutor José Mariano","id":"way/128931109","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8850196,-8.0648072],[-34.8839283,-8.0644337],[-34.8832206,-8.0641852],[-34.8830375,-8.0641181],[-34.8829873,-8.0640983],[-34.8829583,-8.0640838],[-34.8829199,-8.0640592],[-34.8828835,-8.0640359],[-34.8828412,-8.0640007],[-34.8828054,-8.063969],[-34.8827739,-8.0639359],[-34.8827405,-8.0638917],[-34.8826801,-8.0637795],[-34.8826312,-8.063654],[-34.8826081,-8.0635931]]}},{"type":"Feature","id":"way/128932739","properties":{"name":"Rua Imperatriz Teresa Cristina","id":"way/128932739","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8853521,-8.0625567],[-34.8851819,-8.0626692],[-34.8851446,-8.0626781],[-34.8838739,-8.0630526],[-34.8825186,-8.0634095]]}},{"type":"Feature","id":"way/129087732","properties":{"name":"Avenida Cruz Cabugá","id":"way/129087732","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8828809,-8.0575661],[-34.8828618,-8.0572863],[-34.8828384,-8.057127],[-34.8826154,-8.0562588],[-34.8825686,-8.0560839],[-34.8822684,-8.055181],[-34.8822398,-8.0551104]]}},{"type":"Feature","id":"way/129089855","properties":{"name":"Praça da República","id":"way/129089855","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8765324,-8.0616035],[-34.8766276,-8.0615817],[-34.8767288,-8.0615585],[-34.8769886,-8.0615094],[-34.8771227,-8.0614795]]}},{"type":"Feature","id":"way/129178018","properties":{"name":"Rua Estado de Israel","id":"way/129178018","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.893553,-8.0659172],[-34.8938504,-8.0653692],[-34.8939194,-8.0652565],[-34.8945516,-8.0641047]]}},{"type":"Feature","id":"way/129178081","properties":{"name":"Praça Miguel de Cervantes","id":"way/129178081","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8931227,-8.0662341],[-34.8931008,-8.0661978],[-34.893084,-8.0661449],[-34.8930818,-8.0660896],[-34.8930944,-8.0660356],[-34.8931208,-8.0659867],[-34.8931613,-8.0659449],[-34.8932118,-8.0659156],[-34.8932684,-8.0659012],[-34.8933269,-8.0659027],[-34.8933827,-8.0659201],[-34.8934316,-8.0659519],[-34.8934698,-8.0659958],[-34.8934906,-8.0660371],[-34.8935017,-8.0660819],[-34.8935026,-8.066128],[-34.8934933,-8.0661732],[-34.8934844,-8.066196],[-34.8934729,-8.0662175],[-34.8934589,-8.0662376],[-34.8934228,-8.0662736],[-34.8933789,-8.0662999],[-34.8933299,-8.066315],[-34.8932788,-8.0663179],[-34.8932284,-8.0663086],[-34.8931817,-8.0662875],[-34.8931516,-8.0662653],[-34.8931227,-8.0662341]]}},{"type":"Feature","id":"way/129180250","properties":{"name":"Praça Miguel de Cervantes","id":"way/129180250","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8934589,-8.0662376],[-34.8935145,-8.0663523],[-34.8937934,-8.0669218],[-34.8939408,-8.0672269]]}},{"type":"Feature","id":"way/129180251","properties":{"name":"Rua Antônio Gomes de Freitas","id":"way/129180251","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8951597,-8.0663754],[-34.8951277,-8.0663588],[-34.8949107,-8.0662737],[-34.8946648,-8.0661831],[-34.8942584,-8.0661109],[-34.8941081,-8.0661085],[-34.8936797,-8.0661615],[-34.8936189,-8.066163]]}},{"type":"Feature","id":"way/129181110","properties":{"name":"Rua dos Coelhos","id":"way/129181110","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8910097,-8.0685876],[-34.8913483,-8.06913],[-34.8913595,-8.0691738]]}},{"type":"Feature","id":"way/129182045","properties":{"name":"Rua Dom Bosco","id":"way/129182045","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8940494,-8.0594631],[-34.8940051,-8.059533],[-34.8939452,-8.0596099],[-34.8938994,-8.0596787],[-34.8937245,-8.0599467],[-34.8935892,-8.0601541],[-34.8934466,-8.0603311],[-34.8933438,-8.060452],[-34.8932499,-8.0605281],[-34.8930686,-8.0606448],[-34.8928964,-8.0607422],[-34.8925991,-8.060877],[-34.8920558,-8.0611287]]}},{"type":"Feature","id":"way/129186154","properties":{"id":"way/129186154","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8791793,-8.0717009],[-34.8792171,-8.0716775],[-34.8792365,-8.0716655],[-34.8800002,-8.0711457]]}},{"type":"Feature","id":"way/129483340","properties":{"name":"Rua Antônio Falcão","id":"way/129483340","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9001352,-8.1133554],[-34.9001661,-8.1133397]]}},{"type":"Feature","id":"way/129483505","properties":{"name":"Rua Itacari","id":"way/129483505","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9119457,-8.1088347],[-34.9127108,-8.1086528]]}},{"type":"Feature","id":"way/129484189","properties":{"name":"Rua Jean Émile Favre","id":"way/129484189","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9159903,-8.1079377],[-34.9158994,-8.1078569],[-34.9158483,-8.1078114],[-34.9155734,-8.1075731],[-34.9153914,-8.1074094],[-34.9150836,-8.1071325]]}},{"type":"Feature","id":"way/129484190","properties":{"name":"Rua Jean Émile Favre","id":"way/129484190","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9160413,-8.107984],[-34.9160101,-8.1079567]]}},{"type":"Feature","id":"way/129727073","properties":{"name":"Rua José de Alencar","id":"way/129727073","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8931208,-8.0659867],[-34.892673,-8.0656849]]}},{"type":"Feature","id":"way/129727225","properties":{"name":"Rua Visconde de Goiana","id":"way/129727225","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8920558,-8.0611287],[-34.8919072,-8.0613225],[-34.891675,-8.0616477],[-34.8915234,-8.0618483],[-34.8913288,-8.0621057],[-34.8907598,-8.0626712]]}},{"type":"Feature","id":"way/129727280","properties":{"name":"Rua José de Alencar","id":"way/129727280","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8875165,-8.0590114],[-34.888008,-8.059923]]}},{"type":"Feature","id":"way/129727281","properties":{"name":"Rua José de Alencar","id":"way/129727281","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8900812,-8.0632093],[-34.8896523,-8.0625636],[-34.8888196,-8.0613097]]}},{"type":"Feature","id":"way/129727282","properties":{"name":"Rua José de Alencar","id":"way/129727282","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8883454,-8.0605331],[-34.888008,-8.059923]]}},{"type":"Feature","id":"way/129727410","properties":{"name":"Rua Senador José Henrique","id":"way/129727410","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8939194,-8.0652565],[-34.8949599,-8.0652289],[-34.8957433,-8.0651907]]}},{"type":"Feature","id":"way/129736369","properties":{"name":"Rua Rosário da Boa Vista","id":"way/129736369","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8873992,-8.0618209],[-34.8876622,-8.0621775]]}},{"type":"Feature","id":"way/130491810","properties":{"name":"Rua Padre Inglês","id":"way/130491810","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8919009,-8.0534082],[-34.8924775,-8.0538066],[-34.8925996,-8.0538704],[-34.8927163,-8.0538903],[-34.8928691,-8.053881],[-34.8934934,-8.0538464],[-34.8935819,-8.0538464],[-34.8937026,-8.0538737],[-34.8937724,-8.0539055],[-34.893824,-8.0539434],[-34.8938475,-8.0539792],[-34.8938629,-8.0540264],[-34.893986,-8.0546902],[-34.8940687,-8.0551703],[-34.8942257,-8.0559787],[-34.8942356,-8.0560293],[-34.8942405,-8.0560548]]}},{"type":"Feature","id":"way/130888047","properties":{"name":"Avenida Luiz de Lacerda","id":"way/130888047","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9431204,-8.0381608],[-34.9430204,-8.0379654],[-34.9429721,-8.0378246],[-34.9429413,-8.0376885],[-34.9429265,-8.0376055],[-34.9429214,-8.0375233]]}},{"type":"Feature","id":"way/130892107","properties":{"name":"Avenida Maurício de Nassau","id":"way/130892107","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9226893,-8.043698],[-34.9227334,-8.0435447],[-34.9227355,-8.0435373],[-34.9227462,-8.0435096],[-34.9227796,-8.0434228],[-34.9228636,-8.0432494],[-34.9229394,-8.0431301],[-34.9230231,-8.0430166],[-34.9231658,-8.0428708],[-34.9233131,-8.042761],[-34.923621,-8.0425821],[-34.9240299,-8.0423444],[-34.924125,-8.042292],[-34.9244787,-8.0420971],[-34.9246163,-8.0420278],[-34.9251713,-8.0417429],[-34.9257638,-8.0414388],[-34.9258441,-8.0413936],[-34.9261015,-8.0412489],[-34.9264175,-8.0410711],[-34.9266965,-8.0409171]]}},{"type":"Feature","id":"way/130892706","properties":{"name":"Rua Lindolfo Color","id":"way/130892706","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9455483,-8.0512898],[-34.9444053,-8.0516374],[-34.9443038,-8.0516679]]}},{"type":"Feature","id":"way/130893508","properties":{"name":"Rua Lindolfo Color","id":"way/130893508","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9413332,-8.0524622],[-34.9401378,-8.0527696],[-34.9392506,-8.0530231]]}},{"type":"Feature","id":"way/130893509","properties":{"name":"Rua Gomes Taborda","id":"way/130893509","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9278682,-8.0541291],[-34.9279864,-8.054074],[-34.9281698,-8.0539679],[-34.9284077,-8.0538395],[-34.9289458,-8.0535453],[-34.9289815,-8.0535234]]}},{"type":"Feature","id":"way/130893510","properties":{"name":"Rua Gomes Taborda","id":"way/130893510","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9228522,-8.0557525],[-34.9231387,-8.0556842],[-34.9232389,-8.055658],[-34.9239672,-8.0554399]]}},{"type":"Feature","id":"way/130894159","properties":{"name":"Avenida do Forte","id":"way/130894159","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9321157,-8.0612677],[-34.9320538,-8.0608393],[-34.9320082,-8.0605242],[-34.93199,-8.0603977],[-34.9318232,-8.0594351]]}},{"type":"Feature","id":"way/130894160","properties":{"name":"Avenida do Forte","id":"way/130894160","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9321157,-8.0612677],[-34.9322192,-8.0619159],[-34.9322401,-8.0620639],[-34.9322724,-8.0622711],[-34.9323058,-8.06253]]}},{"type":"Feature","id":"way/130894161","properties":{"name":"Avenida do Forte","id":"way/130894161","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9323058,-8.06253],[-34.9322656,-8.0625597],[-34.9322253,-8.062574],[-34.932194,-8.0625847],[-34.9321423,-8.0625943]]}},{"type":"Feature","id":"way/130921222","properties":{"name":"Rua Carlos Gomes","id":"way/130921222","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9133807,-8.0634143],[-34.9138704,-8.0651229],[-34.9139272,-8.0653266],[-34.9140177,-8.0656514],[-34.9141289,-8.0660507]]}},{"type":"Feature","id":"way/130921226","properties":{"name":"Rua Carlos Gomes","id":"way/130921226","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9113801,-8.0584923],[-34.9115566,-8.0586438],[-34.9118042,-8.0588601],[-34.9119362,-8.0589791]]}},{"type":"Feature","id":"way/130921295","properties":{"name":"Avenida Manoel Gonçalves da Luz","id":"way/130921295","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9183469,-8.0742278],[-34.9183415,-8.0741171]]}},{"type":"Feature","id":"way/130921296","properties":{"name":"Avenida Manoel Gonçalves da Luz","id":"way/130921296","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9183415,-8.0741171],[-34.9183423,-8.0740976],[-34.9183278,-8.0738279],[-34.9183141,-8.0735897],[-34.9182858,-8.0730629],[-34.9182595,-8.0727867],[-34.9182409,-8.0726191],[-34.9181904,-8.0721598],[-34.9181675,-8.0719794],[-34.9181629,-8.0719532],[-34.918136,-8.0718014],[-34.9181147,-8.0716848],[-34.9180951,-8.0715823],[-34.918079,-8.0714978],[-34.9179898,-8.0711337],[-34.9179766,-8.0710788],[-34.9179016,-8.070688],[-34.9178652,-8.0705115],[-34.9178258,-8.070321],[-34.91776,-8.0700135],[-34.917728,-8.0698641],[-34.9176395,-8.0694628],[-34.9175556,-8.0690758],[-34.9174692,-8.0687026],[-34.9173953,-8.068301],[-34.9173132,-8.067959],[-34.9172881,-8.0678332],[-34.9172492,-8.067672],[-34.9172143,-8.0675131],[-34.9171974,-8.0674521],[-34.9171678,-8.0673276],[-34.9170518,-8.0667857],[-34.9168678,-8.0659454],[-34.9167242,-8.0652615],[-34.9166769,-8.0651343],[-34.9166313,-8.0650084],[-34.9165835,-8.0649156]]}},{"type":"Feature","id":"way/130921298","properties":{"name":"Avenida Manoel Gonçalves da Luz","id":"way/130921298","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9183656,-8.0751017],[-34.9183687,-8.0749448],[-34.9183488,-8.0742554],[-34.9183469,-8.0742278]]}},{"type":"Feature","id":"way/130921681","properties":{"name":"Rua Vinte e Um de Abril","id":"way/130921681","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9205415,-8.0748848],[-34.9203779,-8.0749213],[-34.9201888,-8.0749498],[-34.9199749,-8.0749758],[-34.9197804,-8.0749902],[-34.9196886,-8.074997],[-34.9194026,-8.0750176],[-34.9191786,-8.0750336],[-34.9190636,-8.0750418],[-34.9187918,-8.0750573],[-34.9183656,-8.0751017]]}},{"type":"Feature","id":"way/130921781","properties":{"name":"Avenida João Cabral de Melo Neto","id":"way/130921781","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9337702,-8.0796048],[-34.9336189,-8.0795508],[-34.9334431,-8.0794923],[-34.9331852,-8.0794239],[-34.9326454,-8.0793174],[-34.9324354,-8.0792615],[-34.9322819,-8.0792087],[-34.9320715,-8.0790916],[-34.9320163,-8.0790571],[-34.9318549,-8.0788951],[-34.9317665,-8.0787739],[-34.9316856,-8.0786095]]}},{"type":"Feature","id":"way/130922421","properties":{"name":"Rua Alberto Paiva","id":"way/130922421","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.902996,-8.0450728],[-34.9028808,-8.0452185],[-34.9028745,-8.0452243],[-34.9028505,-8.0452463],[-34.9028153,-8.0452592],[-34.9027794,-8.0452663],[-34.9027012,-8.0452852]]}},{"type":"Feature","id":"way/130922423","properties":{"name":"Rua Alberto Paiva","id":"way/130922423","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9032068,-8.0446258],[-34.9031101,-8.044809],[-34.902996,-8.0450728]]}},{"type":"Feature","id":"way/130922739","properties":{"name":"Praça Professor Campelo Barreto","id":"way/130922739","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9132499,-8.0467031],[-34.9133518,-8.046729],[-34.9134336,-8.0467768],[-34.913502,-8.0468365],[-34.9136174,-8.0469339],[-34.9137099,-8.0470211],[-34.91419,-8.0474567]]}},{"type":"Feature","id":"way/130923479","properties":{"name":"Rua Bruno Veloso","id":"way/130923479","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9013641,-8.1213539],[-34.9011932,-8.1213696]]}},{"type":"Feature","id":"way/130923581","properties":{"name":"Rua Félix de Brito Melo","id":"way/130923581","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9005021,-8.1153665],[-34.9004351,-8.1154034]]}},{"type":"Feature","id":"way/130923582","properties":{"name":"Rua Félix de Brito Melo","id":"way/130923582","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9006724,-8.1152795],[-34.9006426,-8.115294]]}},{"type":"Feature","id":"way/131144626","properties":{"name":"Rua Professor Estevão Francisco da Costa","id":"way/131144626","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9187719,-8.047122],[-34.9188191,-8.0472343],[-34.9188624,-8.0473371],[-34.9188932,-8.0474247],[-34.9189362,-8.047547],[-34.9190421,-8.0478298],[-34.9191025,-8.0479918],[-34.9191717,-8.0481843],[-34.9192518,-8.0483708]]}},{"type":"Feature","id":"way/131144672","properties":{"name":"Rua Odete Monteiro","id":"way/131144672","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9217404,-8.0454502],[-34.9219526,-8.0453365],[-34.9220328,-8.0452935],[-34.9221166,-8.0452357],[-34.9221662,-8.045182],[-34.9222514,-8.0450631],[-34.9223198,-8.044937],[-34.9223728,-8.0447969],[-34.9224593,-8.0445067],[-34.9225794,-8.0440844],[-34.9226128,-8.043967],[-34.9226893,-8.043698]]}},{"type":"Feature","id":"way/131144673","properties":{"name":"Rua Dianópolis","id":"way/131144673","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9174207,-8.0475735],[-34.9175475,-8.0475835],[-34.9176541,-8.0475775],[-34.9177795,-8.0475576],[-34.9178888,-8.0475297],[-34.9180826,-8.0474726]]}},{"type":"Feature","id":"way/131144677","properties":{"name":"Rua Marquês de Maricá","id":"way/131144677","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9147352,-8.0475629],[-34.9148198,-8.0475637],[-34.9148713,-8.0475642],[-34.9150463,-8.0475639],[-34.9154386,-8.0475632],[-34.9156384,-8.0475629],[-34.9160515,-8.0475576],[-34.916278,-8.0475547],[-34.9164632,-8.0475523],[-34.9166992,-8.0475523],[-34.9169051,-8.0475551],[-34.917178,-8.0475589],[-34.9174207,-8.0475735]]}},{"type":"Feature","id":"way/131144911","properties":{"name":"Rua Dez de Novembro","id":"way/131144911","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9223989,-8.046644],[-34.9218844,-8.0469267],[-34.9213616,-8.047214],[-34.9211324,-8.04734],[-34.9208559,-8.0474919],[-34.9207048,-8.0475749],[-34.9206216,-8.0476207],[-34.9205904,-8.0476378],[-34.9204465,-8.0477169],[-34.9204171,-8.047733],[-34.9203918,-8.0477469],[-34.9202384,-8.0478312],[-34.9200222,-8.04795],[-34.9199184,-8.048007],[-34.9194098,-8.0482865],[-34.9192518,-8.0483708]]}},{"type":"Feature","id":"way/131144912","properties":{"name":"Rua Tomaz Gonzaga","id":"way/131144912","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9190908,-8.0484576],[-34.9189,-8.0485542],[-34.9187901,-8.0486067],[-34.918725,-8.0486378],[-34.9185654,-8.0487055],[-34.9185141,-8.0487252],[-34.9184162,-8.0487639],[-34.9182203,-8.0488188],[-34.9180857,-8.0488429],[-34.9180459,-8.0488487],[-34.9178767,-8.0488735],[-34.9176474,-8.048908],[-34.917549,-8.0489196],[-34.9173886,-8.0489386],[-34.9168602,-8.0490236],[-34.9167227,-8.049047],[-34.916254,-8.0491266],[-34.9162272,-8.0491311],[-34.9159708,-8.0491727],[-34.9154962,-8.0492497],[-34.9153435,-8.0492745],[-34.9152777,-8.0492852]]}},{"type":"Feature","id":"way/131144914","properties":{"name":"Rua Souza Bandeira","id":"way/131144914","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9188655,-8.0515614],[-34.9188219,-8.0514622],[-34.9186921,-8.0511455],[-34.9185479,-8.0507458],[-34.9184158,-8.0503561],[-34.9182563,-8.0499305],[-34.9181369,-8.0495687],[-34.9179813,-8.0491544],[-34.9178768,-8.0488739],[-34.9178767,-8.0488735]]}},{"type":"Feature","id":"way/131145453","properties":{"name":"Rua Doutor João Lacerda","id":"way/131145453","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9236744,-8.0489069],[-34.9233659,-8.048349],[-34.9232975,-8.0482282],[-34.9232197,-8.0480947],[-34.923048,-8.0478006],[-34.9228402,-8.0474235],[-34.9226417,-8.0470636],[-34.9223989,-8.046644]]}},{"type":"Feature","id":"way/131146131","properties":{"name":"Praça Professor Campelo Barreto","id":"way/131146131","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9148713,-8.0475642],[-34.9149665,-8.047782],[-34.9149861,-8.0478669],[-34.9150054,-8.0479506],[-34.9150169,-8.0480217],[-34.9150879,-8.0484623]]}},{"type":"Feature","id":"way/131147884","properties":{"name":"Rua Carandaí","id":"way/131147884","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.918503,-8.045733],[-34.9184038,-8.0454263],[-34.9183153,-8.0450757],[-34.9182506,-8.0447771]]}},{"type":"Feature","id":"way/131147885","properties":{"name":"Rua Fernando Fink Filho","id":"way/131147885","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9182506,-8.0447771],[-34.9181265,-8.0448054]]}},{"type":"Feature","id":"way/131147889","properties":{"name":"Avenida Professor Estevão Francisco da Costa","id":"way/131147889","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.918503,-8.045733],[-34.91845,-8.0459468]]}},{"type":"Feature","id":"way/131150440","properties":{"name":"Rua Joaquim Felipe","id":"way/131150440","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8921217,-8.0526305],[-34.8920782,-8.0526433],[-34.8915644,-8.0527922],[-34.8911253,-8.0528991],[-34.8904134,-8.0530732],[-34.8903198,-8.053095],[-34.8900406,-8.0531731],[-34.889955,-8.0531971]]}},{"type":"Feature","id":"way/131280442","properties":{"name":"Rua Marcos André","id":"way/131280442","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9083563,-8.0409559],[-34.9084263,-8.0409672],[-34.9085048,-8.0409798],[-34.9086948,-8.041016]]}},{"type":"Feature","id":"way/131336790","properties":{"name":"Rua Marcos André","id":"way/131336790","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9087814,-8.0410269],[-34.9088815,-8.0410476],[-34.9092172,-8.0411132],[-34.9101653,-8.0412983],[-34.9103347,-8.0413314],[-34.9103531,-8.041335],[-34.9111729,-8.0415381]]}},{"type":"Feature","id":"way/131336791","properties":{"name":"Rua Real da Torre","id":"way/131336791","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9111729,-8.0415381],[-34.9110156,-8.0420375],[-34.9109312,-8.0422637],[-34.9108185,-8.042566]]}},{"type":"Feature","id":"way/131350718","properties":{"name":"Rua Pio IX","id":"way/131350718","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9117284,-8.0435825],[-34.9116808,-8.0437677],[-34.9116258,-8.0439709],[-34.9114488,-8.04453],[-34.911224,-8.0452594]]}},{"type":"Feature","id":"way/131641897","properties":{"name":"Rua Bruno Veloso","id":"way/131641897","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9040069,-8.1209806],[-34.9040155,-8.1209657],[-34.90403,-8.1209478],[-34.9040476,-8.1209348],[-34.9040615,-8.1209284],[-34.9040729,-8.1209258],[-34.9041091,-8.1209123],[-34.9041449,-8.1209046],[-34.9041832,-8.1208985],[-34.9042169,-8.1208956],[-34.9043799,-8.120879],[-34.9044324,-8.1208727],[-34.9046577,-8.1208459],[-34.904827,-8.1208258],[-34.9050693,-8.1207948],[-34.90511,-8.1207891],[-34.9051437,-8.1207892],[-34.9051799,-8.1207949],[-34.9052118,-8.1208076],[-34.9052444,-8.1208303]]}},{"type":"Feature","id":"way/132047861","properties":{"name":"Rua Treze de Maio","id":"way/132047861","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8791285,-8.0459412],[-34.8791517,-8.0459688],[-34.879179,-8.0460054],[-34.8793375,-8.0462178],[-34.8795602,-8.0465302],[-34.8796697,-8.04668]]}},{"type":"Feature","id":"way/132047862","properties":{"name":"Rua Bispo Cardoso Ayres","id":"way/132047862","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8863008,-8.0566816],[-34.8862512,-8.0566015],[-34.8856153,-8.0555741],[-34.8852947,-8.0550557],[-34.8849778,-8.0545709],[-34.8849438,-8.0545189],[-34.8849235,-8.0544851],[-34.8845486,-8.0538611],[-34.8844782,-8.0537439]]}},{"type":"Feature","id":"way/132049149","properties":{"name":"Rua Doutor Leopoldo Lins","id":"way/132049149","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.890002,-8.0497217],[-34.8898191,-8.0497715],[-34.8897148,-8.0497847]]}},{"type":"Feature","id":"way/132049184","properties":{"name":"Rua dos Palmares","id":"way/132049184","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8875283,-8.0495873],[-34.8875657,-8.0494883],[-34.8877669,-8.0489706]]}},{"type":"Feature","id":"way/132049185","properties":{"name":"Rua Doutor Carlos Chagas","id":"way/132049185","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8882776,-8.0479372],[-34.8883515,-8.0478198],[-34.888394,-8.0477535],[-34.8890708,-8.0477402],[-34.8896203,-8.0477566]]}},{"type":"Feature","id":"way/132050435","properties":{"name":"Rua do Veiga","id":"way/132050435","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8781993,-8.051069],[-34.8783724,-8.0513262],[-34.8784117,-8.0513845],[-34.8785663,-8.0515989]]}},{"type":"Feature","id":"way/132051731","properties":{"name":"Cais do Apolo","id":"way/132051731","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8738494,-8.0623784],[-34.8738742,-8.0624697],[-34.8738878,-8.0625201],[-34.8739227,-8.0625904],[-34.8740937,-8.0628673],[-34.8742254,-8.0630739],[-34.8743932,-8.0633409],[-34.8744303,-8.0634389]]}},{"type":"Feature","id":"way/132051808","properties":{"name":"Rua Vigário Tenório","id":"way/132051808","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8736061,-8.0639714],[-34.873241,-8.0639451],[-34.8729567,-8.0639106],[-34.8725683,-8.0638536],[-34.8722774,-8.0637952],[-34.8722202,-8.0637795],[-34.871721,-8.0636612],[-34.8716408,-8.0636387],[-34.8715415,-8.0636113]]}},{"type":"Feature","id":"way/132052141","properties":{"name":"Rua Professor Aloísio Magalhães","id":"way/132052141","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8733961,-8.0655343],[-34.873517,-8.0656173],[-34.8736982,-8.0657358],[-34.8738628,-8.0658274]]}},{"type":"Feature","id":"way/132052142","properties":{"name":"Cais da Alfândega","id":"way/132052142","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8736426,-8.0660469],[-34.8735937,-8.0661131],[-34.8735595,-8.0661687],[-34.8735278,-8.0662359],[-34.8735007,-8.066317],[-34.8734827,-8.0663777],[-34.8734723,-8.0664276],[-34.8734713,-8.0664677],[-34.8734772,-8.0665105]]}},{"type":"Feature","id":"way/132055101","properties":{"name":"Rua Barros Barreto","id":"way/132055101","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8861629,-8.0447909],[-34.8858004,-8.0450486],[-34.8857439,-8.0450853],[-34.885494,-8.0452527]]}},{"type":"Feature","id":"way/132055217","properties":{"name":"Rua Coelho Leite","id":"way/132055217","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8817899,-8.0518244],[-34.8806067,-8.050185]]}},{"type":"Feature","id":"way/132055218","properties":{"name":"Rua Coelho Leite","id":"way/132055218","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8821798,-8.0521606],[-34.8817899,-8.0518244]]}},{"type":"Feature","id":"way/132055219","properties":{"name":"Rua Coelho Leite","id":"way/132055219","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8827877,-8.0531369],[-34.8821798,-8.0521606]]}},{"type":"Feature","id":"way/132177903","properties":{"name":"Ponte Buarque de Macedo","id":"way/132177903","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8738494,-8.0623784],[-34.8739315,-8.062358]]}},{"type":"Feature","id":"way/132180509","properties":{"name":"Rua do Observatório","id":"way/132180509","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8709908,-8.0607163],[-34.8710524,-8.0607234],[-34.8710894,-8.0607228],[-34.8711127,-8.0607193],[-34.8712458,-8.0606856],[-34.8714395,-8.0606439]]}},{"type":"Feature","id":"way/132180510","properties":{"name":"Rua do Observatório","id":"way/132180510","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8726881,-8.0603112],[-34.8719395,-8.0605],[-34.8718031,-8.0605382],[-34.8717072,-8.0605631],[-34.8714395,-8.0606439]]}},{"type":"Feature","id":"way/132180658","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/132180658","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8692742,-8.0474174],[-34.869158,-8.047161],[-34.8691228,-8.0470835],[-34.8686408,-8.0460126],[-34.8686046,-8.0459511],[-34.8685675,-8.0459266],[-34.8685198,-8.0459122],[-34.8684708,-8.045914],[-34.8680034,-8.0461281],[-34.8679755,-8.0461555],[-34.8679596,-8.0461849],[-34.8679522,-8.0462201],[-34.8679552,-8.0462551],[-34.8683855,-8.0472664]]}},{"type":"Feature","id":"way/132398668","properties":{"name":"Rua Alegre","id":"way/132398668","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8938826,-8.0231294],[-34.8938229,-8.0230957],[-34.8938071,-8.023078],[-34.8937961,-8.0230559],[-34.8931747,-8.0214149],[-34.8930888,-8.0211775]]}},{"type":"Feature","id":"way/132399063","properties":{"name":"Rua São Bento","id":"way/132399063","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8971594,-8.0238745],[-34.8969261,-8.0237758]]}},{"type":"Feature","id":"way/132904329","properties":{"name":"Rua Parque das Graças","id":"way/132904329","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.903616,-8.0529413],[-34.9036554,-8.0527983],[-34.9037312,-8.0523952],[-34.9038099,-8.0518407],[-34.9038441,-8.051597],[-34.9038649,-8.0513939],[-34.9038811,-8.0511585],[-34.9038956,-8.0508933],[-34.9038595,-8.0506018],[-34.9037454,-8.0501036],[-34.9036565,-8.0496137],[-34.9034918,-8.0491856],[-34.9032062,-8.0485823],[-34.9031028,-8.0481461],[-34.9030452,-8.0479773],[-34.9028289,-8.0473869],[-34.9026825,-8.0468289],[-34.9027537,-8.0467378],[-34.90275,-8.046629],[-34.9027222,-8.0464036],[-34.9026766,-8.045907],[-34.9026693,-8.04567],[-34.9026794,-8.0454648],[-34.9026961,-8.0453272],[-34.9026971,-8.0453193],[-34.9027012,-8.0452852]]}},{"type":"Feature","id":"way/133334358","properties":{"name":"Rua José Alexandre Caçador","id":"way/133334358","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8950702,-8.0313359],[-34.894957,-8.0311786]]}},{"type":"Feature","id":"way/133334512","properties":{"name":"Rua Doutor José Maria","id":"way/133334512","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9002492,-8.0350646],[-34.9002629,-8.0350621],[-34.9003932,-8.0350387],[-34.9011879,-8.0348957],[-34.9019531,-8.0347292],[-34.9020584,-8.03471],[-34.902222,-8.0346807],[-34.9022734,-8.0346747],[-34.9024421,-8.0346551],[-34.9024817,-8.0346505],[-34.9025613,-8.0346701]]}},{"type":"Feature","id":"way/133334910","properties":{"name":"Rua Amélia","id":"way/133334910","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8953386,-8.0458494],[-34.8944212,-8.0461709],[-34.8943932,-8.0461807],[-34.8943365,-8.0462005]]}},{"type":"Feature","id":"way/133335251","properties":{"name":"Rua Alberto Paiva","id":"way/133335251","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8987692,-8.0438375],[-34.8997523,-8.0438614],[-34.8998934,-8.0438667],[-34.9000375,-8.0438701],[-34.90016,-8.043873],[-34.9003996,-8.0438738]]}},{"type":"Feature","id":"way/133335857","properties":{"name":"Rua Esmeraldino Bandeira","id":"way/133335857","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8989156,-8.0450358],[-34.8987796,-8.0444625],[-34.8987579,-8.0441647],[-34.8987692,-8.0438375]]}},{"type":"Feature","id":"way/133438804","properties":{"name":"Rua Frei Cassimiro","id":"way/133438804","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8851727,-8.04323],[-34.8848972,-8.0434242],[-34.8842413,-8.0438661],[-34.8833606,-8.0444934],[-34.8824516,-8.0451409],[-34.8819825,-8.0454678],[-34.8817925,-8.0456013],[-34.8815631,-8.0457626],[-34.8807642,-8.0463192],[-34.8807077,-8.0463576],[-34.8806884,-8.0463695],[-34.880682,-8.0463832],[-34.8806775,-8.0463898],[-34.8806742,-8.0463978],[-34.8806696,-8.0464147],[-34.880664,-8.0464307],[-34.8806576,-8.0464426],[-34.8806439,-8.0464534],[-34.8806284,-8.0464639],[-34.8806151,-8.0464668],[-34.880598,-8.0464677],[-34.8805836,-8.0464667],[-34.8805717,-8.0464685],[-34.880564,-8.046471],[-34.880545,-8.0464824],[-34.8804801,-8.0465267],[-34.8802314,-8.0466908],[-34.879928,-8.0469138],[-34.8798971,-8.0469365],[-34.8798424,-8.0469761]]}},{"type":"Feature","id":"way/133438945","properties":{"name":"Rua Frei Cassimiro","id":"way/133438945","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8797727,-8.0468821],[-34.8797764,-8.0468566],[-34.8797812,-8.0468437],[-34.8797899,-8.0468319],[-34.8798123,-8.0468144],[-34.8798388,-8.0467965],[-34.8803832,-8.0464284],[-34.8804639,-8.0463676],[-34.8804659,-8.0463643],[-34.8804704,-8.0463577],[-34.8804737,-8.0463497],[-34.8804783,-8.0463328],[-34.8804819,-8.0463224],[-34.8804839,-8.0463168],[-34.8804903,-8.0463049],[-34.8804998,-8.0462957],[-34.8805195,-8.0462835],[-34.8805328,-8.0462806],[-34.8805499,-8.0462797],[-34.8805569,-8.0462798],[-34.8805676,-8.04628],[-34.8805762,-8.046279],[-34.8805839,-8.0462765],[-34.8806087,-8.0462578],[-34.8806573,-8.0462245],[-34.8814718,-8.0456363],[-34.8817288,-8.0454681],[-34.8818985,-8.0453499],[-34.8823669,-8.0450213],[-34.8832747,-8.0443724],[-34.8841512,-8.043743],[-34.8850045,-8.0431541]]}},{"type":"Feature","id":"way/133439040","properties":{"name":"Rua Tupinambás","id":"way/133439040","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8858556,-8.0435442],[-34.8852741,-8.0439378],[-34.8851183,-8.0440488],[-34.884634,-8.0443916],[-34.8828338,-8.0456516],[-34.8819283,-8.0462829],[-34.8809992,-8.0469582]]}},{"type":"Feature","id":"way/133439341","properties":{"name":"Rua Barros Barreto","id":"way/133439341","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.885494,-8.0452527],[-34.8853304,-8.0453648],[-34.8849203,-8.0456678],[-34.8846909,-8.0458263],[-34.884467,-8.0459884],[-34.8842482,-8.0461517],[-34.8839734,-8.0463374],[-34.8835496,-8.0466179],[-34.8827038,-8.0472344],[-34.8826232,-8.047288],[-34.8825641,-8.0473296],[-34.8816858,-8.0479489]]}},{"type":"Feature","id":"way/134170997","properties":{"name":"Rua General Abreu e Lima","id":"way/134170997","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9002492,-8.0350646],[-34.9002007,-8.0349853],[-34.8997615,-8.0342682],[-34.8994021,-8.0336932],[-34.8993077,-8.0335402],[-34.8988578,-8.0328259],[-34.8986017,-8.0324213]]}},{"type":"Feature","id":"way/134171001","properties":{"name":"Avenida Doutor Malaquias","id":"way/134171001","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9005559,-8.0381424],[-34.9011855,-8.0384618],[-34.9017813,-8.038772],[-34.9021912,-8.0389846],[-34.9033016,-8.0395317],[-34.903435,-8.0396017],[-34.9036127,-8.039695],[-34.9040192,-8.0399045]]}},{"type":"Feature","id":"way/134171002","properties":{"name":"Rua General Abreu e Lima","id":"way/134171002","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8980619,-8.0315168],[-34.8980997,-8.031586],[-34.8982747,-8.0319062]]}},{"type":"Feature","id":"way/134171262","properties":{"name":"Rua Neto de Mendonça","id":"way/134171262","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9035685,-8.0365399],[-34.9029467,-8.036298],[-34.9028175,-8.0362477],[-34.9024614,-8.0361189],[-34.9022039,-8.036019]]}},{"type":"Feature","id":"way/134171334","properties":{"name":"Rua do Futuro","id":"way/134171334","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9028108,-8.0374867],[-34.9025649,-8.0377727],[-34.9025345,-8.037808],[-34.9024683,-8.0378912],[-34.9022502,-8.0381652],[-34.9017813,-8.038772],[-34.9015568,-8.0390235],[-34.9012035,-8.0394194],[-34.9009458,-8.0397493],[-34.9000224,-8.0408845],[-34.8998623,-8.0410598],[-34.8996208,-8.0413587],[-34.8990434,-8.0420734],[-34.8987994,-8.0423619],[-34.8986748,-8.0425208],[-34.8986346,-8.0425952],[-34.8985983,-8.0426848],[-34.8985326,-8.0428687],[-34.8984736,-8.043121],[-34.8984277,-8.0433172],[-34.8984157,-8.0433688],[-34.8983945,-8.0434597],[-34.8983224,-8.0437685],[-34.8982993,-8.0438673],[-34.8982747,-8.0439617],[-34.8982248,-8.0441636],[-34.8981926,-8.0442917],[-34.8981759,-8.0443843],[-34.8981876,-8.0444728],[-34.8983261,-8.0451687]]}},{"type":"Feature","id":"way/134171336","properties":{"name":"Rua do Futuro","id":"way/134171336","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9049123,-8.0349742],[-34.9050881,-8.0347104],[-34.9054715,-8.034135]]}},{"type":"Feature","id":"way/134174589","properties":{"name":"Rua Simão Mendes","id":"way/134174589","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9025613,-8.0346701],[-34.9026218,-8.034705],[-34.9029891,-8.0349171],[-34.9033003,-8.0351004],[-34.9042645,-8.0356913]]}},{"type":"Feature","id":"way/134175371","properties":{"name":"Rua Sebastião Alves","id":"way/134175371","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9069198,-8.0325188],[-34.9070646,-8.0325523],[-34.907282,-8.0325967]]}},{"type":"Feature","id":"way/134179606","properties":{"name":"Estrada do Arraial","id":"way/134179606","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9267789,-8.0275333],[-34.9269573,-8.0276465],[-34.9270454,-8.0277297],[-34.92711,-8.0277886]]}},{"type":"Feature","id":"way/134470698","properties":{"name":"Rua Bruno Veloso","id":"way/134470698","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9039933,-8.1210136],[-34.903996,-8.1209982],[-34.9039946,-8.1209825],[-34.9039879,-8.1209658],[-34.9039768,-8.1209522],[-34.9039622,-8.1209424],[-34.9039449,-8.1209372],[-34.9039269,-8.1209374],[-34.9035287,-8.1209806],[-34.9034102,-8.1209844],[-34.9033312,-8.1209917],[-34.9031777,-8.1210314],[-34.9031175,-8.1210487],[-34.9028819,-8.1210683],[-34.9028139,-8.1210798],[-34.9027065,-8.1210945],[-34.9025668,-8.1211093],[-34.9023554,-8.1211399],[-34.9022181,-8.1211597],[-34.9020625,-8.1211857]]}},{"type":"Feature","id":"way/134495018","properties":{"name":"Rua Feliciano José de Farias","id":"way/134495018","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.90482,-8.1316436],[-34.9048101,-8.1319042],[-34.9047906,-8.1333968],[-34.9047993,-8.133836],[-34.9048414,-8.1339555]]}},{"type":"Feature","id":"way/135138772","properties":{"name":"Avenida Professor José dos Anjos","id":"way/135138772","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8829531,-8.0242472],[-34.8830176,-8.024272]]}},{"type":"Feature","id":"way/135138776","properties":{"name":"Estrada Velha de Água Fria","id":"way/135138776","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8972673,-8.0239722],[-34.8973088,-8.0241293],[-34.8973865,-8.0244871],[-34.8975108,-8.0249377],[-34.8976314,-8.0255325],[-34.8978092,-8.0262132],[-34.8978637,-8.0263908],[-34.8979287,-8.0265709]]}},{"type":"Feature","id":"way/135143520","properties":{"name":"Avenida Professor José dos Anjos","id":"way/135143520","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.887991,-8.0270938],[-34.8886092,-8.0273201],[-34.8891054,-8.0274496],[-34.8891438,-8.0274596],[-34.8895507,-8.0275254],[-34.8896801,-8.027535],[-34.8898941,-8.0275491],[-34.8904733,-8.0275835]]}},{"type":"Feature","id":"way/135143523","properties":{"name":"Avenida Professor José dos Anjos","id":"way/135143523","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8959002,-8.027569],[-34.8961706,-8.0274182],[-34.8970721,-8.0269406],[-34.8975012,-8.0267408],[-34.8975771,-8.0267055],[-34.8977842,-8.0266189]]}},{"type":"Feature","id":"way/135143529","properties":{"name":"Avenida Professor José dos Anjos","id":"way/135143529","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.898898,-8.0265322],[-34.8985885,-8.0266404],[-34.8982888,-8.0267631],[-34.8980577,-8.0268476]]}},{"type":"Feature","id":"way/135722592","properties":{"name":"Rua Paulo de Arruda","id":"way/135722592","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8827436,-8.0353556],[-34.8829299,-8.0348035]]}},{"type":"Feature","id":"way/135722594","properties":{"name":"Rua Paulo de Arruda","id":"way/135722594","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8829299,-8.0348035],[-34.884101,-8.0336383],[-34.8842872,-8.0334268],[-34.8844239,-8.0332383],[-34.8845824,-8.0330056]]}},{"type":"Feature","id":"way/135932504","properties":{"name":"Rua Antônio Rangel","id":"way/135932504","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8885332,-8.0356926],[-34.8884121,-8.0358505],[-34.8879458,-8.0365828],[-34.887374,-8.0374723]]}},{"type":"Feature","id":"way/136116572","properties":{"name":"Rua José Domingues da Silva","id":"way/136116572","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.905606,-8.1343935],[-34.9056311,-8.1343695],[-34.9056507,-8.1343352],[-34.9056964,-8.1341288],[-34.9057707,-8.1336914]]}},{"type":"Feature","id":"way/136121284","properties":{"name":"Rua São Nicolau","id":"way/136121284","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9233565,-8.106411],[-34.9237353,-8.1064714],[-34.924543,-8.1065793]]}},{"type":"Feature","id":"way/136121285","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/136121285","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9314152,-8.107912],[-34.9312706,-8.1078729],[-34.9311302,-8.107835],[-34.9310026,-8.107801],[-34.9306763,-8.1077142],[-34.9302387,-8.1075894],[-34.9301634,-8.1075698],[-34.9298528,-8.1074931],[-34.9294763,-8.1073832],[-34.9293083,-8.1073404],[-34.9291851,-8.1073124],[-34.9291091,-8.1073017],[-34.9290416,-8.1072966]]}},{"type":"Feature","id":"way/136121287","properties":{"name":"Rua Pintor Antônio Albuquerque","id":"way/136121287","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9232538,-8.107424],[-34.923204,-8.107416]]}},{"type":"Feature","id":"way/136121288","properties":{"name":"Rua Itanagé","id":"way/136121288","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9223352,-8.1072953],[-34.9222615,-8.107284],[-34.9222185,-8.107272],[-34.9221555,-8.1072435],[-34.9220112,-8.1071316],[-34.9218395,-8.1069665],[-34.9215968,-8.1067492],[-34.9214356,-8.1066034],[-34.921277,-8.1064701]]}},{"type":"Feature","id":"way/136121484","properties":{"name":"Rua Virgínia Heráclio","id":"way/136121484","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9232164,-8.1073299],[-34.9232814,-8.1068897],[-34.9233454,-8.1064593],[-34.9233565,-8.106411]]}},{"type":"Feature","id":"way/136121781","properties":{"name":"Rua Potengy","id":"way/136121781","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9196292,-8.1052794],[-34.9194948,-8.1054484],[-34.9193853,-8.1055693],[-34.9190035,-8.1059799],[-34.9186192,-8.1064227]]}},{"type":"Feature","id":"way/136121782","properties":{"name":"Rua Blumenau","id":"way/136121782","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9182496,-8.1099159],[-34.9183179,-8.1098356],[-34.9184685,-8.1096688],[-34.9186586,-8.1094461],[-34.9188744,-8.1091851],[-34.9190153,-8.1090146],[-34.9194099,-8.1085798],[-34.9197605,-8.1081854]]}},{"type":"Feature","id":"way/136122179","properties":{"name":"Rua São Nicolau","id":"way/136122179","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9246547,-8.1065942],[-34.9258268,-8.1067629]]}},{"type":"Feature","id":"way/136667786","properties":{"name":"Avenida Afonso Olindense","id":"way/136667786","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9551588,-8.0334092],[-34.9551018,-8.0336197],[-34.9550736,-8.033791],[-34.9550816,-8.0339743],[-34.9550991,-8.0341204],[-34.9551685,-8.0343949],[-34.9551758,-8.0344144]]}},{"type":"Feature","id":"way/136953957","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136953957","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9088498,-8.0826707],[-34.9091206,-8.0838751]]}},{"type":"Feature","id":"way/136953958","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136953958","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9091206,-8.0838751],[-34.9092392,-8.0843942]]}},{"type":"Feature","id":"way/136953959","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136953959","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9092392,-8.0843942],[-34.9093959,-8.0852424],[-34.9095344,-8.08582],[-34.9096693,-8.0864051]]}},{"type":"Feature","id":"way/136954054","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136954054","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9111048,-8.0927816],[-34.9112196,-8.093295],[-34.9112475,-8.0934197]]}},{"type":"Feature","id":"way/136954063","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136954063","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9104162,-8.0896718],[-34.9105236,-8.0901617],[-34.9105458,-8.0902631],[-34.9106925,-8.0909488]]}},{"type":"Feature","id":"way/136954064","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136954064","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9103331,-8.0892443],[-34.9103962,-8.0895726],[-34.9104162,-8.0896718]]}},{"type":"Feature","id":"way/136954066","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136954066","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9119702,-8.0966521],[-34.9122598,-8.0980339]]}},{"type":"Feature","id":"way/136954200","properties":{"name":"Rua Paris","id":"way/136954200","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9131335,-8.1031009],[-34.9130793,-8.1028523],[-34.9130336,-8.1025795],[-34.9129722,-8.1022692],[-34.912964,-8.1022163]]}},{"type":"Feature","id":"way/136954201","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/136954201","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.912964,-8.1022163],[-34.9129102,-8.1018736],[-34.9128669,-8.1016615],[-34.9127938,-8.101209],[-34.9127835,-8.1011464]]}},{"type":"Feature","id":"way/137062738","properties":{"name":"Avenida Prefeito Lima Castro","id":"way/137062738","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.90187,-8.0621674],[-34.901913,-8.0622273],[-34.901938,-8.0622638],[-34.901963,-8.062315],[-34.9021189,-8.0633174],[-34.9022166,-8.0638988],[-34.9022741,-8.0642408],[-34.9023131,-8.0644711]]}},{"type":"Feature","id":"way/137364482","properties":{"name":"Avenida Mário Álvares Pereira de Lyra","id":"way/137364482","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9403435,-8.0472798],[-34.9401739,-8.0471811],[-34.9400906,-8.0471467],[-34.9400133,-8.0471291],[-34.9399092,-8.0471286],[-34.9392031,-8.0471879],[-34.9389187,-8.0472097],[-34.9386464,-8.0471951],[-34.9380828,-8.0471738],[-34.9379239,-8.0471741],[-34.9377776,-8.0471696],[-34.9362874,-8.047124],[-34.9361441,-8.0471166],[-34.9360003,-8.0471169],[-34.934784,-8.0470663],[-34.9329169,-8.0470174],[-34.9325833,-8.0470025],[-34.9323012,-8.0469221],[-34.9320506,-8.0468106],[-34.9318376,-8.0466772],[-34.9317546,-8.0466047],[-34.931647,-8.0464844],[-34.9315254,-8.0463298],[-34.9314259,-8.0461699],[-34.9313761,-8.0460614],[-34.9313225,-8.0459557],[-34.9312502,-8.0458014],[-34.9311094,-8.0455054],[-34.9309394,-8.0451813],[-34.9308959,-8.0451081]]}},{"type":"Feature","id":"way/137746675","properties":{"name":"Rua Ricardo Salazar","id":"way/137746675","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.912393,-8.0567401],[-34.9122857,-8.0567802],[-34.9117865,-8.0569523],[-34.9114292,-8.0572342],[-34.9108693,-8.0578688],[-34.9107985,-8.0579468],[-34.9107692,-8.0579791],[-34.9100109,-8.058874],[-34.9099313,-8.0590212],[-34.909817,-8.0592105]]}},{"type":"Feature","id":"way/137746686","properties":{"name":"Rua Ricardo Salazar","id":"way/137746686","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9097433,-8.0587914],[-34.9098227,-8.0587767],[-34.9098703,-8.0587665],[-34.9098955,-8.0587533],[-34.9099189,-8.058733],[-34.9099451,-8.0587005],[-34.9099907,-8.0586537],[-34.9105472,-8.0579354],[-34.9106094,-8.0578533],[-34.9106442,-8.0578165],[-34.9113141,-8.0571097],[-34.9116978,-8.0568045],[-34.9121203,-8.056652],[-34.9123551,-8.0565738]]}},{"type":"Feature","id":"way/137746917","properties":{"name":"Rua Carlos Gomes","id":"way/137746917","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.91065,-8.0578781],[-34.9107233,-8.0579411]]}},{"type":"Feature","id":"way/137746919","properties":{"name":"Rua Carlos Gomes","id":"way/137746919","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9107233,-8.0579411],[-34.9107692,-8.0579791],[-34.9112121,-8.058359],[-34.9112799,-8.058416],[-34.9113801,-8.0584923]]}},{"type":"Feature","id":"way/137747160","properties":{"name":"Praça da Rua João Crescêncio","id":"way/137747160","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9126124,-8.0567321],[-34.9125784,-8.0567596],[-34.912538,-8.0567766],[-34.9124944,-8.0567816],[-34.9124575,-8.0567761],[-34.912423,-8.056762],[-34.912393,-8.0567401],[-34.9123649,-8.0567047],[-34.9123484,-8.0566627],[-34.9123451,-8.0566177],[-34.9123551,-8.0565738],[-34.9123678,-8.0565488],[-34.9123848,-8.0565264],[-34.9124207,-8.0564976],[-34.9124636,-8.0564806],[-34.9125097,-8.056477],[-34.9125548,-8.056487],[-34.9125883,-8.0565051],[-34.9126164,-8.0565307],[-34.9126399,-8.056568],[-34.9126516,-8.0566104],[-34.9126506,-8.0566543],[-34.9126371,-8.0566962],[-34.9126124,-8.0567321]]}},{"type":"Feature","id":"way/138285434","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/138285434","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9108467,-8.1543222],[-34.9110474,-8.1547033],[-34.9111525,-8.15491]]}},{"type":"Feature","id":"way/138285446","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/138285446","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9057446,-8.1434993],[-34.9057494,-8.1435102],[-34.9059112,-8.1438795],[-34.9060192,-8.1441312],[-34.9061984,-8.1445066]]}},{"type":"Feature","id":"way/138285453","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/138285453","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9051824,-8.1421722],[-34.904967,-8.1416703],[-34.9048124,-8.1413062],[-34.904716,-8.1410909],[-34.9046869,-8.1410235]]}},{"type":"Feature","id":"way/139040203","properties":{"name":"Rua Marechal Deodoro","id":"way/139040203","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8873315,-8.0396478],[-34.8872592,-8.0395862],[-34.8862536,-8.0386658]]}},{"type":"Feature","id":"way/140092783","properties":{"name":"Avenida João Cabral de Melo Neto","id":"way/140092783","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9316856,-8.0786095],[-34.9316029,-8.0784377],[-34.9314915,-8.0781567]]}},{"type":"Feature","id":"way/140092785","properties":{"name":"Avenida João Cabral de Melo Neto","id":"way/140092785","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9314915,-8.0781567],[-34.9312241,-8.0775635],[-34.931067,-8.0771829],[-34.9310536,-8.0771522],[-34.9309324,-8.0768619],[-34.9308803,-8.0767392],[-34.9308693,-8.0767132],[-34.9307928,-8.07654],[-34.9304033,-8.0756361],[-34.9303249,-8.0754398],[-34.9302752,-8.0753123],[-34.9302655,-8.0752599],[-34.930266,-8.0752116],[-34.9302777,-8.0751337]]}},{"type":"Feature","id":"way/140093042","properties":{"name":"Praça Salazar","id":"way/140093042","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9384329,-8.0811715],[-34.9385652,-8.0812218],[-34.9386715,-8.0812991],[-34.938725,-8.0813621],[-34.9387646,-8.0814302],[-34.9387984,-8.0815283],[-34.9388068,-8.0816323],[-34.938779,-8.081776],[-34.9387527,-8.0818339],[-34.9386757,-8.0819473],[-34.9385651,-8.0820301],[-34.9384348,-8.082077],[-34.9382964,-8.082084],[-34.9381665,-8.0820595],[-34.9380949,-8.0820213],[-34.9380608,-8.0819927],[-34.9379772,-8.0819119],[-34.9379048,-8.0817807],[-34.9378784,-8.0816729],[-34.9378861,-8.081528],[-34.9379389,-8.0813926],[-34.9379856,-8.0813253],[-34.9380311,-8.0812804],[-34.9380927,-8.0812315],[-34.9381538,-8.081202],[-34.9382665,-8.0811634],[-34.9384329,-8.0811715]]}},{"type":"Feature","id":"way/140478429","properties":{"name":"Rua da Coragem","id":"way/140478429","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8908294,-8.0357991],[-34.8899906,-8.0352684]]}},{"type":"Feature","id":"way/140478430","properties":{"name":"Rua Retiro Saudoso","id":"way/140478430","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8891585,-8.0347325],[-34.8885417,-8.0343504],[-34.8885216,-8.0343339],[-34.8885109,-8.0343181],[-34.8884593,-8.0342236]]}},{"type":"Feature","id":"way/140478431","properties":{"name":"Rua Carlos Fernandes","id":"way/140478431","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8884593,-8.0342236],[-34.888407,-8.0341107],[-34.8883832,-8.0340762],[-34.8883188,-8.0340141],[-34.888062,-8.0338129],[-34.8878049,-8.0336149],[-34.8869541,-8.0330207],[-34.8864684,-8.0326915]]}},{"type":"Feature","id":"way/140478464","properties":{"name":"Rua Pedro Alves","id":"way/140478464","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8912491,-8.036025],[-34.892096,-8.0361042]]}},{"type":"Feature","id":"way/140478536","properties":{"name":"Rua Pedro Alves","id":"way/140478536","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.892096,-8.0361042],[-34.8923322,-8.0361179]]}},{"type":"Feature","id":"way/140478537","properties":{"name":"Rua Pedro Alves","id":"way/140478537","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8922965,-8.036214],[-34.8922793,-8.0362059],[-34.892256,-8.0361934],[-34.8922023,-8.0361601],[-34.8921613,-8.0361366],[-34.892096,-8.0361042]]}},{"type":"Feature","id":"way/140478540","properties":{"name":"Praça do Baobá da Encruzilhada","id":"way/140478540","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.892466,-8.0361239],[-34.8924859,-8.0361511],[-34.8924956,-8.0361831],[-34.892494,-8.0362166],[-34.8924813,-8.0362475],[-34.892459,-8.0362726],[-34.8924315,-8.0362883],[-34.8924004,-8.0362947],[-34.8923688,-8.0362912],[-34.8923398,-8.0362781],[-34.8923164,-8.0362566],[-34.892301,-8.0362289],[-34.8922965,-8.036214]]}},{"type":"Feature","id":"way/140478646","properties":{"name":"Rua Amaro Coutinho","id":"way/140478646","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8931352,-8.035411],[-34.8928819,-8.0356809],[-34.892466,-8.0361239]]}},{"type":"Feature","id":"way/140478650","properties":{"name":"Rua Amaro Coutinho","id":"way/140478650","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8931352,-8.035411],[-34.8932771,-8.0352351],[-34.8936436,-8.0348202],[-34.8941362,-8.0343623],[-34.8941602,-8.0343357],[-34.8951537,-8.0332536]]}},{"type":"Feature","id":"way/140479112","properties":{"name":"Rua Couto Magalhães","id":"way/140479112","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.894455,-8.0304295],[-34.894178,-8.0303951],[-34.8938984,-8.0303565],[-34.8935976,-8.030304],[-34.8931239,-8.0302154],[-34.8924829,-8.0301092]]}},{"type":"Feature","id":"way/140616408","properties":{"name":"Rua João Crescêncio","id":"way/140616408","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9120098,-8.0555593],[-34.9122738,-8.0560731],[-34.9124527,-8.056402],[-34.9125548,-8.056487]]}},{"type":"Feature","id":"way/140616410","properties":{"name":"Rua João Crescêncio","id":"way/140616410","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9123848,-8.0565264],[-34.9118959,-8.0556225]]}},{"type":"Feature","id":"way/141711452","properties":{"name":"Rua Baltazar Passos","id":"way/141711452","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9132424,-8.1412516],[-34.9123286,-8.1416431],[-34.9122179,-8.1416905],[-34.9121305,-8.141728],[-34.9120461,-8.1417641]]}},{"type":"Feature","id":"way/141711856","properties":{"name":"Avenida Vinte de Janeiro","id":"way/141711856","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9135475,-8.1347718],[-34.9136612,-8.1353026],[-34.913776,-8.1358339],[-34.9138582,-8.1362146]]}},{"type":"Feature","id":"way/141711861","properties":{"name":"Rua Baltazar Passos","id":"way/141711861","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.91201,-8.14178],[-34.9118481,-8.1418495]]}},{"type":"Feature","id":"way/141712575","properties":{"name":"Avenida Lino Jordão","id":"way/141712575","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9146577,-8.1435781],[-34.9145637,-8.1436167]]}},{"type":"Feature","id":"way/141715558","properties":{"id":"way/141715558","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9089415,-8.1311204],[-34.9087186,-8.1310437],[-34.9082069,-8.1308678],[-34.9073129,-8.1305604]]}},{"type":"Feature","id":"way/141715675","properties":{"id":"way/141715675","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9073129,-8.1305604],[-34.907149,-8.1304956],[-34.9068944,-8.1304032]]}},{"type":"Feature","id":"way/141724611","properties":{"name":"Rua Soldado Sinésio de Aragão","id":"way/141724611","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.907461,-8.1183416],[-34.9075603,-8.118318],[-34.9085224,-8.1180898],[-34.908753,-8.1180333],[-34.9093842,-8.1178855],[-34.9095564,-8.1178435],[-34.9096645,-8.1178178],[-34.9097973,-8.1177869],[-34.9099977,-8.1177402],[-34.9105868,-8.1176071]]}},{"type":"Feature","id":"way/141868412","properties":{"name":"Rua Camboim","id":"way/141868412","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9138228,-8.1398987],[-34.9136132,-8.138976],[-34.9134189,-8.1381098],[-34.9132248,-8.1372506],[-34.913033,-8.1364247],[-34.9128134,-8.1354939],[-34.9127813,-8.1353389]]}},{"type":"Feature","id":"way/141868413","properties":{"name":"Rua Camboim","id":"way/141868413","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9127813,-8.1353389],[-34.9126982,-8.1349667]]}},{"type":"Feature","id":"way/141868494","properties":{"name":"Rua Waldemar Nery Carneiro Monteiro","id":"way/141868494","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9129768,-8.1402886],[-34.9132424,-8.1412516]]}},{"type":"Feature","id":"way/141868688","properties":{"name":"Rua Cosmorama","id":"way/141868688","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9111236,-8.1411115],[-34.9107984,-8.1402156]]}},{"type":"Feature","id":"way/141868689","properties":{"name":"Rua Cosmorama","id":"way/141868689","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9114687,-8.1420113],[-34.9113571,-8.1417033],[-34.9112843,-8.1415024]]}},{"type":"Feature","id":"way/141868697","properties":{"name":"Rua Cosmorama","id":"way/141868697","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9114687,-8.1420113],[-34.9115062,-8.142098],[-34.9116328,-8.1423905],[-34.9117497,-8.1426956],[-34.91192,-8.1431688],[-34.9121784,-8.1438386],[-34.9122384,-8.143991]]}},{"type":"Feature","id":"way/141871387","properties":{"name":"Rua Cosmorama","id":"way/141871387","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9122384,-8.143991],[-34.9123883,-8.1443855],[-34.9123958,-8.1444037],[-34.9124557,-8.1445563],[-34.9125095,-8.1446866],[-34.9126008,-8.1449291],[-34.91269,-8.1451673],[-34.9128591,-8.1456319],[-34.9131249,-8.1463299],[-34.9132418,-8.14666]]}},{"type":"Feature","id":"way/141873584","properties":{"name":"Rua Copacabana","id":"way/141873584","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9121437,-8.136637],[-34.913033,-8.1364247],[-34.9138582,-8.1362146]]}},{"type":"Feature","id":"way/142229290","properties":{"name":"Rua da Regeneração","id":"way/142229290","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8930437,-8.0187763],[-34.8933702,-8.0185839]]}},{"type":"Feature","id":"way/142229454","properties":{"name":"Rua dos Craveiros","id":"way/142229454","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8811774,-8.0132154],[-34.8810942,-8.0128913],[-34.881058,-8.012724]]}},{"type":"Feature","id":"way/142333429","properties":{"name":"Rua Doutor Alberto Wanderley","id":"way/142333429","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8882887,-8.0093536],[-34.8882535,-8.0099065],[-34.8882408,-8.0102886]]}},{"type":"Feature","id":"way/142333444","properties":{"name":"Rua Doutor Alberto Wanderley","id":"way/142333444","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8882408,-8.0102886],[-34.8882352,-8.0105518]]}},{"type":"Feature","id":"way/142612998","properties":{"name":"Avenida Professor José dos Anjos","id":"way/142612998","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8981593,-8.0265076],[-34.8984285,-8.0264092],[-34.8988129,-8.0262628],[-34.8989741,-8.0262335],[-34.8991007,-8.0262169],[-34.8992797,-8.0262067],[-34.8994325,-8.0262068],[-34.8999127,-8.0262073],[-34.9011175,-8.02625],[-34.901207,-8.0262543],[-34.9015638,-8.0262643],[-34.9017456,-8.0262724],[-34.9021992,-8.0262814],[-34.902939,-8.0263011],[-34.9031806,-8.026303],[-34.9034504,-8.0262927],[-34.9036758,-8.0262588],[-34.9039353,-8.0261952],[-34.9040296,-8.0261666],[-34.9042357,-8.0261041],[-34.9042833,-8.0260896]]}},{"type":"Feature","id":"way/144180416","properties":{"name":"Avenida Sebastião Salazar","id":"way/144180416","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8828015,-8.0121344],[-34.8818006,-8.0129348],[-34.8815992,-8.0130778],[-34.8815154,-8.0131251],[-34.8813973,-8.0131715],[-34.8811774,-8.0132154]]}},{"type":"Feature","id":"way/144180418","properties":{"name":"Rua Arão Butler","id":"way/144180418","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8883392,-8.0088541],[-34.8882544,-8.0088422],[-34.8880888,-8.008711],[-34.887917,-8.0085927]]}},{"type":"Feature","id":"way/144474968","properties":{"name":"Rua Marquês do Paraná","id":"way/144474968","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8906964,-8.0427523],[-34.8900653,-8.0423641],[-34.8891861,-8.0418174],[-34.8890215,-8.0417055],[-34.8888861,-8.0415913]]}},{"type":"Feature","id":"way/144474970","properties":{"name":"Rua Marquês do Paraná","id":"way/144474970","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8888861,-8.0415913],[-34.888612,-8.0413532],[-34.8881829,-8.0407164]]}},{"type":"Feature","id":"way/144475524","properties":{"name":"Rua Doutor Fernando Allain","id":"way/144475524","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8891861,-8.0418174],[-34.8886899,-8.0422721]]}},{"type":"Feature","id":"way/144479322","properties":{"name":"Rua José Paraíso","id":"way/144479322","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9033532,-8.1351431],[-34.9034318,-8.1351173],[-34.9037057,-8.135019],[-34.9039938,-8.1349262],[-34.9042067,-8.1348588],[-34.9046343,-8.1347363],[-34.905606,-8.1343935]]}},{"type":"Feature","id":"way/144479335","properties":{"name":"Rua Dona Uzinha Nunes","id":"way/144479335","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9048414,-8.1339555],[-34.9044202,-8.1341153],[-34.9037917,-8.1343201],[-34.903247,-8.1344906],[-34.9031593,-8.1345205]]}},{"type":"Feature","id":"way/145078921","properties":{"name":"Avenida da Redenção","id":"way/145078921","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9369427,-8.0086342],[-34.9369219,-8.0087379],[-34.9369219,-8.0087855],[-34.9369298,-8.0088199],[-34.9369472,-8.0088648],[-34.9369751,-8.0089207]]}},{"type":"Feature","id":"way/145216592","properties":{"name":"Avenida Dezessete de Agosto","id":"way/145216592","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9290954,-8.0277253],[-34.9289493,-8.027734]]}},{"type":"Feature","id":"way/145218257","properties":{"name":"Rua Padre Lemos","id":"way/145218257","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9184927,-8.0234248],[-34.9182987,-8.0237373],[-34.9180289,-8.0241702],[-34.9179569,-8.0242836]]}},{"type":"Feature","id":"way/145218468","properties":{"name":"Rua Paula Batista","id":"way/145218468","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9173412,-8.0291164],[-34.9172347,-8.0289346],[-34.9171369,-8.0287427],[-34.9170809,-8.0286328],[-34.9168624,-8.0281687]]}},{"type":"Feature","id":"way/145218469","properties":{"name":"Rua Paula Batista","id":"way/145218469","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.916768,-8.0279659],[-34.9167503,-8.0279285],[-34.9165676,-8.027521],[-34.9164032,-8.0271958],[-34.9162025,-8.0267929],[-34.9161663,-8.0267162]]}},{"type":"Feature","id":"way/145218705","properties":{"name":"Estrada das Ubaias","id":"way/145218705","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9173412,-8.0291164],[-34.917469,-8.029181],[-34.9175674,-8.0292177],[-34.9176722,-8.0292688],[-34.917851,-8.0293726],[-34.9179207,-8.0294123],[-34.9180337,-8.0294766]]}},{"type":"Feature","id":"way/146629879","properties":{"name":"Rua Comendador Franco Ferreira","id":"way/146629879","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9282847,-8.070753],[-34.9279231,-8.0694042],[-34.9275335,-8.0679912],[-34.927431,-8.0676204],[-34.9272186,-8.0668553],[-34.9271437,-8.0665713],[-34.9269882,-8.0659551],[-34.9269608,-8.0658546]]}},{"type":"Feature","id":"way/146631254","properties":{"name":"Rua Cônsul Vilares Fragoso","id":"way/146631254","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9272251,-8.0653041],[-34.9268509,-8.0654896]]}},{"type":"Feature","id":"way/146631258","properties":{"name":"Rua Itapemirim","id":"way/146631258","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9228018,-8.0638346],[-34.9232744,-8.065149],[-34.9236294,-8.0661223],[-34.9237075,-8.0663364],[-34.9237789,-8.0665207],[-34.9239271,-8.0669484]]}},{"type":"Feature","id":"way/151153197","properties":{"name":"Avenida República Árabe Unida","id":"way/151153197","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8888275,-8.0869543],[-34.8890005,-8.086787]]}},{"type":"Feature","id":"way/151153199","properties":{"name":"Rua Henriqueta Torreiro","id":"way/151153199","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8945703,-8.0885895],[-34.8945234,-8.0882443],[-34.894472,-8.0878613]]}},{"type":"Feature","id":"way/151161332","properties":{"name":"Rua Prudente de Morais","id":"way/151161332","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8845824,-8.0330056],[-34.884837,-8.032517],[-34.8852405,-8.0319217]]}},{"type":"Feature","id":"way/151161335","properties":{"name":"Rua Mem de Sá","id":"way/151161335","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8898614,-8.0296663],[-34.8897989,-8.0296597]]}},{"type":"Feature","id":"way/151161786","properties":{"name":"Rua Couto Magalhães","id":"way/151161786","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8950193,-8.0304111],[-34.8957072,-8.030424],[-34.8964472,-8.0303895],[-34.8971525,-8.0303816],[-34.8972601,-8.0303832]]}},{"type":"Feature","id":"way/151161787","properties":{"name":"Avenida Santos Dumont","id":"way/151161787","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8950193,-8.0304111],[-34.8950214,-8.0310791],[-34.8950474,-8.0311654]]}},{"type":"Feature","id":"way/151261445","properties":{"name":"Rua Madre Rosa Gattorno","id":"way/151261445","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8886265,-8.0310069],[-34.8887787,-8.0305776],[-34.888798,-8.0305174],[-34.88915,-8.0295544]]}},{"type":"Feature","id":"way/151261446","properties":{"name":"Rua Fonseca Oliveira","id":"way/151261446","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8864684,-8.0326915],[-34.8866116,-8.0324432],[-34.8868355,-8.0321563],[-34.886979,-8.0320129],[-34.8871118,-8.0319107],[-34.8872514,-8.031821],[-34.8878238,-8.0314743]]}},{"type":"Feature","id":"way/151271546","properties":{"name":"Rua Treze de Junho","id":"way/151271546","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8974249,-8.0303862],[-34.8974624,-8.0304114],[-34.897504,-8.0304619],[-34.8975402,-8.0305349],[-34.8976046,-8.0306743],[-34.8977655,-8.0310023],[-34.8978947,-8.0312583]]}},{"type":"Feature","id":"way/151272933","properties":{"name":"Avenida Beberibe","id":"way/151272933","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8943365,-8.0210904],[-34.8944323,-8.0206578],[-34.8945327,-8.020066],[-34.8945481,-8.01992],[-34.8945539,-8.0196841]]}},{"type":"Feature","id":"way/151316711","properties":{"name":"Rua Jacundá","id":"way/151316711","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9209092,-8.1099221],[-34.9199782,-8.1091036],[-34.9194099,-8.1085798],[-34.9193653,-8.10854],[-34.9192735,-8.1084577],[-34.9178921,-8.1072554]]}},{"type":"Feature","id":"way/151316749","properties":{"name":"Rua Itaimbé","id":"way/151316749","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9197605,-8.1081854],[-34.9189497,-8.1074457],[-34.9186158,-8.1071501],[-34.9182444,-8.1068412]]}},{"type":"Feature","id":"way/151317274","properties":{"name":"Rua Doutor Raposo Pinto","id":"way/151317274","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9224378,-8.1087957],[-34.9225247,-8.1082619],[-34.9225444,-8.108066],[-34.9225666,-8.1079273],[-34.9225981,-8.1076484],[-34.9226271,-8.1074471],[-34.9226381,-8.1073707],[-34.9226444,-8.1073334],[-34.9226806,-8.1069368]]}},{"type":"Feature","id":"way/151317296","properties":{"name":"Rua Irapua","id":"way/151317296","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9205353,-8.1072962],[-34.9200533,-8.1068996],[-34.9196756,-8.1065641],[-34.9190035,-8.1059799]]}},{"type":"Feature","id":"way/151317521","properties":{"name":"Rua Ibipituba","id":"way/151317521","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9223189,-8.1096474],[-34.9219329,-8.1093257],[-34.9216672,-8.1090776]]}},{"type":"Feature","id":"way/151319664","properties":{"name":"Rua Santos Cosme e Damião","id":"way/151319664","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.920172,-8.1107579],[-34.9186586,-8.1094461],[-34.9171478,-8.1081058]]}},{"type":"Feature","id":"way/151320039","properties":{"name":"Rua David Perneta","id":"way/151320039","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9239844,-8.1149124],[-34.9239476,-8.1149537],[-34.9232512,-8.1157347],[-34.9232032,-8.1157885],[-34.9231549,-8.1158433],[-34.9222605,-8.1168554],[-34.9222016,-8.1169242]]}},{"type":"Feature","id":"way/151320594","properties":{"name":"Rua Silveira Neto","id":"way/151320594","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9224613,-8.1136151],[-34.9224382,-8.1136425],[-34.9221059,-8.1140379],[-34.9217512,-8.1144362],[-34.9217038,-8.114489]]}},{"type":"Feature","id":"way/151322269","properties":{"name":"Rua Álvaro Moreyra","id":"way/151322269","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9214046,-8.1126857],[-34.9213706,-8.1127247],[-34.9206802,-8.1135186],[-34.9206297,-8.1135742],[-34.9205903,-8.1136168],[-34.9196902,-8.1146235],[-34.9196395,-8.1146802]]}},{"type":"Feature","id":"way/151437922","properties":{"name":"Rua João Cardoso Aires","id":"way/151437922","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9129768,-8.1402886],[-34.9138228,-8.1398987],[-34.9146012,-8.1395614]]}},{"type":"Feature","id":"way/151437923","properties":{"name":"Rua João Cardoso Aires","id":"way/151437923","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.910356,-8.1414634],[-34.911072,-8.1411343],[-34.9111236,-8.1411115],[-34.9112818,-8.1410463],[-34.9113547,-8.1410155]]}},{"type":"Feature","id":"way/151566803","properties":{"name":"Rua São Luís","id":"way/151566803","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8871681,-8.0890396],[-34.8874075,-8.0891956],[-34.8877297,-8.0894078],[-34.8879128,-8.0895146],[-34.8879741,-8.0895608],[-34.8881297,-8.0896531],[-34.8882604,-8.0897115],[-34.8884066,-8.0897553],[-34.8885079,-8.0897878],[-34.888579,-8.0898204],[-34.8886544,-8.0898559],[-34.8887184,-8.0898947],[-34.8888204,-8.0899452],[-34.8889454,-8.0899847],[-34.8891194,-8.0900471],[-34.8892096,-8.0900773],[-34.88933,-8.0901327],[-34.8894795,-8.0902087]]}},{"type":"Feature","id":"way/151676121","properties":{"name":"Avenida Pinheiros","id":"way/151676121","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9106925,-8.0909488],[-34.9107263,-8.0909419],[-34.9110837,-8.0908685],[-34.9113756,-8.0908086],[-34.9116431,-8.0907464],[-34.9120175,-8.0906689],[-34.9126451,-8.0905308],[-34.9130662,-8.090429],[-34.9132549,-8.0903891],[-34.9135145,-8.0903598],[-34.9137682,-8.0903558],[-34.9146889,-8.0904663],[-34.9154067,-8.0905318],[-34.9155941,-8.0905499]]}},{"type":"Feature","id":"way/151676545","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/151676545","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9165488,-8.0939716],[-34.9165473,-8.0939858],[-34.9165437,-8.0940246],[-34.9165398,-8.0940924],[-34.9165373,-8.0941355],[-34.9165428,-8.0941805],[-34.9165494,-8.0942275],[-34.9165926,-8.0943825],[-34.9167126,-8.0948492],[-34.9167889,-8.0951804],[-34.9168943,-8.0956384]]}},{"type":"Feature","id":"way/151676546","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/151676546","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9132063,-8.0923026],[-34.9133718,-8.0922526],[-34.9134457,-8.092242],[-34.9135557,-8.0922355],[-34.9138278,-8.0922563],[-34.9140917,-8.0922759],[-34.9145401,-8.0923228],[-34.9148037,-8.0923453],[-34.9148083,-8.0923457],[-34.9152403,-8.0923825],[-34.915399,-8.0924493]]}},{"type":"Feature","id":"way/151966146","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/151966146","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9076535,-8.1471646],[-34.9077879,-8.1474342],[-34.9079654,-8.1477903],[-34.9081374,-8.1481733],[-34.9083239,-8.1485883],[-34.9089348,-8.1501763],[-34.909045,-8.1504735],[-34.9090712,-8.1505357],[-34.9091046,-8.150615]]}},{"type":"Feature","id":"way/152290834","properties":{"name":"Rua Amélia Xavier Sampaio","id":"way/152290834","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9165618,-8.093722],[-34.9173993,-8.0933303],[-34.9180423,-8.0930081]]}},{"type":"Feature","id":"way/152291077","properties":{"name":"Rua Agricultor João Bezerra de Oliveira","id":"way/152291077","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9133844,-8.0949877],[-34.9122655,-8.0952449],[-34.9116854,-8.0953781]]}},{"type":"Feature","id":"way/152291289","properties":{"name":"Avenida José Ferreira Lins","id":"way/152291289","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9168943,-8.0956384],[-34.916821,-8.0956581],[-34.9167126,-8.0956826],[-34.9162683,-8.095783],[-34.9162151,-8.0958078],[-34.9160421,-8.0959101],[-34.9157531,-8.0961117],[-34.9157196,-8.0961351],[-34.9157082,-8.0961544],[-34.9157028,-8.0961677],[-34.9156991,-8.0961865]]}},{"type":"Feature","id":"way/152291292","properties":{"name":"Rua José Nogueira","id":"way/152291292","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9156991,-8.0961865],[-34.9157378,-8.0964587],[-34.9157437,-8.0965374]]}},{"type":"Feature","id":"way/152291293","properties":{"name":"Rua Nova Verona","id":"way/152291293","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9157437,-8.0965374],[-34.9152384,-8.0966652],[-34.915171,-8.0966822],[-34.9149317,-8.0967339],[-34.9147419,-8.0967744]]}},{"type":"Feature","id":"way/152291346","properties":{"name":"Avenida José Ferreira Lins","id":"way/152291346","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9133766,-8.0943208],[-34.9133525,-8.0941389],[-34.9133378,-8.0940373],[-34.9133354,-8.0940244],[-34.9132707,-8.0936702],[-34.9132307,-8.0933634],[-34.9132057,-8.0931279],[-34.9132063,-8.0929977]]}},{"type":"Feature","id":"way/152291349","properties":{"name":"Avenida José Ferreira Lins","id":"way/152291349","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9146995,-8.0965529],[-34.914696,-8.0965442],[-34.9146908,-8.0965367],[-34.9146794,-8.0965297],[-34.914526,-8.096493],[-34.9143449,-8.0964584],[-34.9141843,-8.0963998],[-34.9140693,-8.096335],[-34.9139535,-8.0962496],[-34.9139366,-8.0962386],[-34.9138252,-8.0961663],[-34.9137272,-8.0960991],[-34.9136596,-8.0960342],[-34.9135892,-8.0959319],[-34.9135781,-8.0959157],[-34.9135248,-8.0958211],[-34.9134538,-8.0956405],[-34.9134075,-8.0954533],[-34.9133887,-8.0953531],[-34.9133847,-8.0953128],[-34.9133738,-8.0952014],[-34.9133844,-8.0949877],[-34.9133914,-8.0947842],[-34.9133861,-8.0946177],[-34.9133766,-8.0943208]]}},{"type":"Feature","id":"way/152291434","properties":{"name":"Avenida Engenheiro Alves Souza","id":"way/152291434","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.914878,-8.0974404],[-34.9148362,-8.0974499],[-34.9146552,-8.0974912],[-34.914248,-8.0975841],[-34.913604,-8.0977277],[-34.9129482,-8.0978605],[-34.9128452,-8.0978864],[-34.9126407,-8.097938],[-34.9122598,-8.0980339]]}},{"type":"Feature","id":"way/153272712","properties":{"name":"Travessa Honorópolis","id":"way/153272712","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8908052,-8.0902741],[-34.8908169,-8.0902588],[-34.890826,-8.0902346],[-34.8908447,-8.0901656],[-34.8909346,-8.0899279],[-34.8911941,-8.0890131]]}},{"type":"Feature","id":"way/155512060","properties":{"name":"Rua Doutor Tavares Correia","id":"way/155512060","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9161981,-8.1153279],[-34.9155427,-8.1153793],[-34.9148009,-8.1154294]]}},{"type":"Feature","id":"way/155512063","properties":{"name":"Avenida Senador Robert Kennedy","id":"way/155512063","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9163307,-8.1153088],[-34.9166899,-8.1156409],[-34.917179,-8.1160648],[-34.9173181,-8.1161836],[-34.9176601,-8.1164729],[-34.9178026,-8.1165949],[-34.9186249,-8.1173072]]}},{"type":"Feature","id":"way/155512064","properties":{"name":"Avenida Senador Robert Kennedy","id":"way/155512064","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9186249,-8.1173072],[-34.9191209,-8.1177289],[-34.9196026,-8.1181492],[-34.9199354,-8.1184316],[-34.9205625,-8.11899]]}},{"type":"Feature","id":"way/157802065","properties":{"name":"Rua Dona Elvira","id":"way/157802065","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8885332,-8.0356926],[-34.8886415,-8.0355588],[-34.8891585,-8.0347325]]}},{"type":"Feature","id":"way/159759923","properties":{"name":"Rua Professor Pedro Augusto","id":"way/159759923","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9362191,-8.0785852],[-34.9368024,-8.0783145],[-34.9374092,-8.0780549],[-34.937841,-8.0778776]]}},{"type":"Feature","id":"way/159761759","properties":{"name":"Rua Major Godofredo Luiz Pereira de Lima","id":"way/159761759","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9373456,-8.0810763],[-34.9369043,-8.0800656],[-34.9367327,-8.0797113],[-34.9362191,-8.0785852]]}},{"type":"Feature","id":"way/161177696","properties":{"name":"Rua João Cardoso Aires","id":"way/161177696","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9046108,-8.144047],[-34.9053245,-8.1437029]]}},{"type":"Feature","id":"way/161609739","properties":{"name":"Rua Conselheiro Teodoro","id":"way/161609739","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.915594,-8.0508174],[-34.9155043,-8.0503753],[-34.9154668,-8.0501749],[-34.9154064,-8.0498588],[-34.9152777,-8.0492852]]}},{"type":"Feature","id":"way/161613602","properties":{"name":"Avenida Maurício de Nassau","id":"way/161613602","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9276333,-8.0404033],[-34.9277151,-8.0403562],[-34.9277866,-8.0403187]]}},{"type":"Feature","id":"way/161764468","properties":{"name":"Rua Jornalista Cleófas de Oliveira","id":"way/161764468","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9149263,-8.1160766],[-34.9135763,-8.1161802],[-34.9135232,-8.1161822],[-34.913498,-8.1161831],[-34.9134037,-8.116182]]}},{"type":"Feature","id":"way/161784496","properties":{"name":"Rua Allan Kardec","id":"way/161784496","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9149263,-8.1160766],[-34.9148009,-8.1154294]]}},{"type":"Feature","id":"way/161784499","properties":{"name":"Rua Jalisco","id":"way/161784499","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9108374,-8.1164912],[-34.9110661,-8.1164612],[-34.9111749,-8.1164489],[-34.9113337,-8.1164292],[-34.9119003,-8.116386],[-34.9119753,-8.1163765],[-34.9125599,-8.1163269],[-34.9130192,-8.1162678],[-34.9130836,-8.1162518],[-34.913144,-8.1162279],[-34.9132179,-8.1161805]]}},{"type":"Feature","id":"way/161784501","properties":{"name":"Rua Guadalajara","id":"way/161784501","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9112345,-8.1184402],[-34.9118346,-8.1181787],[-34.9126378,-8.1178094],[-34.9133032,-8.1175035],[-34.9134217,-8.117449],[-34.9134617,-8.1174295]]}},{"type":"Feature","id":"way/161784502","properties":{"name":"Avenida Sul","id":"way/161784502","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9090927,-8.1094457],[-34.9091075,-8.1095013],[-34.9094018,-8.1106046]]}},{"type":"Feature","id":"way/161795934","properties":{"name":"Avenida Brasília Formosa","id":"way/161795934","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8798457,-8.0887479],[-34.8796271,-8.0885271],[-34.8795064,-8.0884156],[-34.8794152,-8.0883313],[-34.8793726,-8.0882655],[-34.8793471,-8.0882317],[-34.8793196,-8.0881978],[-34.8793009,-8.088151],[-34.8792784,-8.0881075],[-34.8792556,-8.0880597],[-34.8792355,-8.0879987],[-34.8791966,-8.0878632],[-34.8791003,-8.0875635],[-34.8790035,-8.0873156],[-34.8788748,-8.0869599],[-34.8788007,-8.0867716],[-34.8787352,-8.0865686],[-34.8784975,-8.085915]]}},{"type":"Feature","id":"way/161795937","properties":{"name":"Rua do Jaú","id":"way/161795937","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8806427,-8.0882587],[-34.8811483,-8.0885226],[-34.8817088,-8.0888451]]}},{"type":"Feature","id":"way/161795946","properties":{"name":"Rua Comendador Morais","id":"way/161795946","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8817088,-8.0888451],[-34.881628,-8.0890716],[-34.8815971,-8.0892608],[-34.8815585,-8.0894464],[-34.8815516,-8.089594],[-34.8815608,-8.0897418],[-34.88162,-8.0899736]]}},{"type":"Feature","id":"way/161828562","properties":{"name":"Primeira Travessa Flor do Sertao","id":"way/161828562","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9387557,-8.1323654],[-34.9385901,-8.1326442],[-34.9385189,-8.1327798],[-34.9384525,-8.132919],[-34.9381687,-8.1336667],[-34.9379967,-8.1341587],[-34.937979,-8.1342657],[-34.9379789,-8.1344209]]}},{"type":"Feature","id":"way/161831685","properties":{"name":"Ciclovia Mimoso do Sul","id":"way/161831685","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9355519,-8.1208563],[-34.9354398,-8.1209412],[-34.9352957,-8.121044],[-34.9351823,-8.1211025],[-34.9350938,-8.121127],[-34.9349376,-8.121135],[-34.9347766,-8.121133],[-34.9346157,-8.1211257],[-34.9343817,-8.1211137],[-34.9342141,-8.1210938],[-34.9341436,-8.1210832],[-34.9341048,-8.1210699],[-34.9340733,-8.1210553]]}},{"type":"Feature","id":"way/162332884","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/162332884","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9250114,-7.9979787],[-34.9250691,-7.9978361],[-34.9250905,-7.9977351],[-34.9250945,-7.9976979],[-34.9250852,-7.9975877],[-34.9250885,-7.9972783],[-34.9251013,-7.9971295],[-34.9251247,-7.9970363],[-34.9251549,-7.9969549],[-34.9252085,-7.9968493],[-34.9253118,-7.996672],[-34.9253708,-7.9965671],[-34.9255896,-7.9962039]]}},{"type":"Feature","id":"way/162332885","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/162332885","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9114058,-8.0075553],[-34.9117445,-8.0074204],[-34.9121061,-8.0073003],[-34.9122101,-8.0072685],[-34.9122768,-8.0072482]]}},{"type":"Feature","id":"way/162332886","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/162332886","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9277675,-7.9935404],[-34.9278171,-7.9934533]]}},{"type":"Feature","id":"way/162332887","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/162332887","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9122768,-8.0072482],[-34.9124694,-8.0070758],[-34.9126224,-8.0069163],[-34.9127619,-8.006741],[-34.9128381,-8.0066244],[-34.9129955,-8.0064648],[-34.9131266,-8.0063719],[-34.9132473,-8.006287],[-34.913468,-8.0061966],[-34.9137193,-8.0061515],[-34.9138829,-8.0061409],[-34.913912,-8.0061331],[-34.9140224,-8.0061037],[-34.9141807,-8.0060213],[-34.9146701,-8.0057173],[-34.9147337,-8.0056797],[-34.9149758,-8.005555],[-34.9150578,-8.0055034],[-34.9152026,-8.0054131],[-34.9158141,-8.0049828],[-34.9162113,-8.0046872],[-34.9163103,-8.0046136],[-34.9164122,-8.0045381],[-34.9173484,-8.0038168],[-34.9174396,-8.0037462],[-34.9176719,-8.0035665],[-34.9178097,-8.0034637],[-34.9179961,-8.0033256],[-34.9180591,-8.0032565],[-34.9181342,-8.0031874],[-34.9182951,-8.0030785],[-34.9190156,-8.0026213],[-34.9191427,-8.0025407]]}},{"type":"Feature","id":"way/162332889","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/162332889","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9340804,-7.9906279],[-34.9342516,-7.9908524],[-34.9343891,-7.9910051],[-34.9344367,-7.9910436],[-34.9345758,-7.9911322],[-34.9347372,-7.9912349],[-34.9349275,-7.9913464],[-34.9351013,-7.9914592],[-34.9351869,-7.9915143],[-34.9352474,-7.9915696],[-34.9352675,-7.9916061],[-34.935279,-7.9916705],[-34.9352829,-7.9917349],[-34.9352816,-7.9917927],[-34.9352482,-7.9918445],[-34.9351759,-7.9919564],[-34.9351101,-7.9920583],[-34.934706,-7.9927188],[-34.9346713,-7.9927755],[-34.9346472,-7.9928352],[-34.9346281,-7.9928944],[-34.9346106,-7.9929899]]}},{"type":"Feature","id":"way/162647068","properties":{"name":"Avenida Sul","id":"way/162647068","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9105868,-8.1176071],[-34.9103748,-8.116658],[-34.9101812,-8.1158808],[-34.9101513,-8.1157606]]}},{"type":"Feature","id":"way/162651294","properties":{"name":"Rua Jornalista Cleófas de Oliveira","id":"way/162651294","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9134037,-8.116182],[-34.9133746,-8.1161728],[-34.9133431,-8.1161675],[-34.9133247,-8.1161652],[-34.913296,-8.1161661],[-34.9132761,-8.1161682],[-34.9132179,-8.1161805]]}},{"type":"Feature","id":"way/162737609","properties":{"name":"Rua Jornalista Edson Regis","id":"way/162737609","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9352269,-8.1091524],[-34.935149,-8.1092369],[-34.9348082,-8.109628],[-34.9344796,-8.1100277],[-34.9343398,-8.1102002],[-34.9342791,-8.1102706],[-34.9341543,-8.1104143],[-34.9339123,-8.1106928],[-34.9334846,-8.1112172],[-34.9329776,-8.1118254],[-34.9324961,-8.1123777],[-34.9320649,-8.1128683],[-34.9313991,-8.1136257],[-34.9310363,-8.1140344],[-34.9306816,-8.1144339],[-34.9303711,-8.1148022],[-34.9301693,-8.115035],[-34.9300519,-8.1151681],[-34.9300244,-8.1152003],[-34.9296436,-8.1156298],[-34.9292453,-8.1160766],[-34.9288895,-8.1165109]]}},{"type":"Feature","id":"way/162967847","properties":{"name":"Rua Francisco de Paula Machado","id":"way/162967847","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9255141,-8.053939],[-34.9253353,-8.0539812],[-34.925175,-8.0540284],[-34.9249223,-8.0541204],[-34.9244776,-8.0542373],[-34.9242794,-8.0542966],[-34.9240931,-8.0543739],[-34.9235252,-8.054698],[-34.9231425,-8.0549241]]}},{"type":"Feature","id":"way/163774408","properties":{"name":"Avenida Senador Robert Kennedy","id":"way/163774408","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9209592,-8.1193341],[-34.9210247,-8.1194402]]}},{"type":"Feature","id":"way/166080506","properties":{"name":"Rua Doutor Miguel Vieira Ferreira","id":"way/166080506","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9330577,-8.0512389],[-34.9337272,-8.0508693],[-34.9338003,-8.0508481],[-34.9338781,-8.0508474],[-34.9340276,-8.050874],[-34.9345145,-8.0510043],[-34.9347541,-8.0510711],[-34.9349489,-8.0511291],[-34.9350602,-8.0511667],[-34.9351694,-8.0511979],[-34.9356752,-8.0513142],[-34.9362908,-8.0514802],[-34.9366763,-8.0515977],[-34.9370223,-8.0516959],[-34.9373829,-8.0517882],[-34.9377278,-8.0518901],[-34.9379885,-8.0519787],[-34.9380147,-8.0519886]]}},{"type":"Feature","id":"way/172246559","properties":{"name":"Rua Compositor Vinícius de Morais","id":"way/172246559","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8942465,-8.003457],[-34.8943326,-8.0034253],[-34.8943523,-8.0034192],[-34.8945888,-8.0033456],[-34.8947484,-8.0032951],[-34.8949587,-8.0032301],[-34.8951813,-8.0031616],[-34.8954173,-8.0030839],[-34.8957515,-8.0029737],[-34.8961201,-8.0028435],[-34.8963051,-8.0027492],[-34.8970021,-8.0021646]]}},{"type":"Feature","id":"way/174870096","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/174870096","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8786819,-8.0390473],[-34.8785836,-8.0390005],[-34.878211,-8.0388225],[-34.8779393,-8.0386898],[-34.8774578,-8.0384713],[-34.8772406,-8.0383711],[-34.8766626,-8.0381022],[-34.8766145,-8.0380803],[-34.8753161,-8.0374834],[-34.8749728,-8.0373194],[-34.8747421,-8.0372198],[-34.8746616,-8.0371919]]}},{"type":"Feature","id":"way/174870303","properties":{"name":"Rua Professor Francisco da Trindade","id":"way/174870303","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.880541,-8.0353673],[-34.880093,-8.0352396],[-34.8792199,-8.0349907],[-34.8788508,-8.0348792],[-34.8784807,-8.0347779]]}},{"type":"Feature","id":"way/174870305","properties":{"name":"Rua Professor Francisco da Trindade","id":"way/174870305","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8784807,-8.0347779],[-34.8782226,-8.034697],[-34.878123,-8.0346681],[-34.8773673,-8.0344351],[-34.8768476,-8.0342698],[-34.8764245,-8.0341382],[-34.8758689,-8.0339643],[-34.8753174,-8.0337857]]}},{"type":"Feature","id":"way/174871099","properties":{"name":"Rua Hermílio Gomes","id":"way/174871099","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8753174,-8.0337857],[-34.8756017,-8.0330615],[-34.8757345,-8.0326576],[-34.8757622,-8.0325768],[-34.8758519,-8.0323155],[-34.8759319,-8.0320465],[-34.87602,-8.03179]]}},{"type":"Feature","id":"way/174871800","properties":{"name":"Rua Marquês de Abrantes","id":"way/174871800","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8761931,-8.0298192],[-34.876478,-8.0298862],[-34.8769564,-8.0299509],[-34.8772306,-8.0299909],[-34.8773891,-8.0300175],[-34.8776357,-8.0300686],[-34.8778613,-8.0301002],[-34.8784497,-8.0301828],[-34.8789931,-8.0302741],[-34.8796869,-8.0303696],[-34.8802104,-8.0304329],[-34.8805228,-8.0304761],[-34.8809924,-8.0305547],[-34.8811309,-8.0305776],[-34.8816042,-8.0306559]]}},{"type":"Feature","id":"way/186977356","properties":{"name":"Rua José dos Santos","id":"way/186977356","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9457677,-8.0597382],[-34.9455041,-8.0597985],[-34.9446691,-8.0600461],[-34.9446381,-8.0600552],[-34.9440243,-8.0602346],[-34.9435426,-8.0603754],[-34.9425502,-8.0606887]]}},{"type":"Feature","id":"way/186977578","properties":{"name":"Rua Antônio Curado","id":"way/186977578","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9422062,-8.0582299],[-34.9420815,-8.0574647],[-34.9420714,-8.0573851],[-34.9420695,-8.0573711],[-34.9419719,-8.0566353],[-34.941963,-8.0566018],[-34.9418835,-8.056082],[-34.9418342,-8.0557704],[-34.9417077,-8.0549079],[-34.9417062,-8.0548893],[-34.9416609,-8.0544856],[-34.9415916,-8.0540445],[-34.9415537,-8.0537989],[-34.9415427,-8.0536907],[-34.9415359,-8.0536385],[-34.941493,-8.0533835],[-34.9414789,-8.0533024],[-34.9413332,-8.0524622],[-34.9412039,-8.051591],[-34.9410845,-8.050663]]}},{"type":"Feature","id":"way/186977811","properties":{"name":"Rua Manoel Estevão da Costa","id":"way/186977811","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9410845,-8.050663],[-34.9410175,-8.0502782],[-34.9409055,-8.0495583],[-34.9408179,-8.0488894],[-34.9407471,-8.0483441],[-34.9406746,-8.0478309],[-34.9405916,-8.0474327]]}},{"type":"Feature","id":"way/188156693","properties":{"name":"Rua Japaratuba","id":"way/188156693","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9213997,-8.0190605],[-34.9211632,-8.0190484],[-34.9210953,-8.019047],[-34.9210631,-8.0190497],[-34.9210457,-8.019058],[-34.9208982,-8.0191183],[-34.9207126,-8.019205],[-34.9205469,-8.0192923],[-34.9201801,-8.0194885],[-34.9200236,-8.0195557],[-34.9198529,-8.01963],[-34.9197648,-8.0196673],[-34.919621,-8.0197255],[-34.9194787,-8.0197868],[-34.9192432,-8.0198968],[-34.919195,-8.0199243],[-34.9191706,-8.0199383],[-34.9190175,-8.0200374],[-34.9188598,-8.0201381]]}},{"type":"Feature","id":"way/191989770","properties":{"name":"Rua Vinte e Um de Abril","id":"way/191989770","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9238936,-8.0730783],[-34.9237284,-8.0732307],[-34.9234872,-8.0734634],[-34.9233198,-8.0736249],[-34.9231305,-8.0738186],[-34.9229655,-8.0739666],[-34.9228623,-8.0740436],[-34.9227282,-8.0741332],[-34.922552,-8.0742261],[-34.9225116,-8.0742474]]}},{"type":"Feature","id":"way/191989771","properties":{"name":"Rua Vinte e Um de Abril","id":"way/191989771","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9225116,-8.0742474],[-34.9222098,-8.0743576],[-34.9220352,-8.0744141],[-34.9217746,-8.0744984],[-34.9214876,-8.0745907],[-34.9212751,-8.0746604],[-34.9206702,-8.0748489],[-34.9205415,-8.0748848]]}},{"type":"Feature","id":"way/192005246","properties":{"name":"Rua Comendador Franco Ferreira","id":"way/192005246","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9283838,-8.0711589],[-34.9282847,-8.070753]]}},{"type":"Feature","id":"way/192028747","properties":{"name":"Avenida Engenheiro Abdias de Carvalho - Pista Lateral","id":"way/192028747","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9268429,-8.0601754],[-34.9270609,-8.0602557]]}},{"type":"Feature","id":"way/192030053","properties":{"name":"Ladeira da Cohab","id":"way/192030053","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9460624,-8.1185912],[-34.9453902,-8.1183788],[-34.9450083,-8.1182722],[-34.9449585,-8.1182611],[-34.9449022,-8.1182564],[-34.9448201,-8.1182604],[-34.94481,-8.1182615],[-34.9447724,-8.1182654],[-34.9447165,-8.1182785],[-34.9446396,-8.1183068],[-34.9445863,-8.1183343],[-34.9444628,-8.118411],[-34.9443518,-8.1184911],[-34.9443183,-8.1185153],[-34.9440508,-8.1187569],[-34.943799,-8.1190061],[-34.94375,-8.1190685],[-34.9437158,-8.1191243],[-34.9436869,-8.1191873],[-34.943634,-8.1193539],[-34.9435453,-8.1196371]]}},{"type":"Feature","id":"way/192031387","properties":{"name":"Avenida Pernambuco","id":"way/192031387","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9472845,-8.1153265],[-34.9471482,-8.1158164],[-34.947132,-8.1158746],[-34.9470391,-8.1162082],[-34.9470209,-8.1162738],[-34.9469379,-8.1165721],[-34.9468465,-8.1169005],[-34.9467425,-8.1172742],[-34.946647,-8.1176175],[-34.9466321,-8.1176712],[-34.9465997,-8.1177873],[-34.9464955,-8.1181619],[-34.9464587,-8.1182941],[-34.9464097,-8.1184266]]}},{"type":"Feature","id":"way/192032178","properties":{"name":"Ladeira da Cohab","id":"way/192032178","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9460624,-8.1185912],[-34.9461612,-8.1185845],[-34.9462021,-8.1185704],[-34.9462419,-8.1185499],[-34.9462575,-8.1185421],[-34.9462686,-8.1185367],[-34.9462815,-8.1185291],[-34.9462948,-8.1185193],[-34.9463255,-8.1184992],[-34.9463654,-8.1184694],[-34.9464097,-8.1184266]]}},{"type":"Feature","id":"way/192032747","properties":{"name":"Avenida Engenho Serra Verde","id":"way/192032747","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9521369,-8.1108296],[-34.9520705,-8.1111683],[-34.9520466,-8.1112903],[-34.9519904,-8.1115719],[-34.9519309,-8.1118809]]}},{"type":"Feature","id":"way/195010589","properties":{"name":"Rua Emiliano Braga","id":"way/195010589","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9448657,-8.038683],[-34.945364,-8.0384222],[-34.9458445,-8.0381575]]}},{"type":"Feature","id":"way/195010591","properties":{"name":"Rua General Polidoro","id":"way/195010591","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9455041,-8.0370374],[-34.9455741,-8.0371615],[-34.9456277,-8.0373588],[-34.9458445,-8.0381575]]}},{"type":"Feature","id":"way/195057093","properties":{"name":"Rua Itacoatiara","id":"way/195057093","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9156352,-8.0206356],[-34.9155823,-8.0206404],[-34.9154883,-8.0206642],[-34.9151617,-8.0207478],[-34.9151254,-8.0207571],[-34.9150939,-8.020763],[-34.9150282,-8.0207664],[-34.9149679,-8.0207544],[-34.9148901,-8.0207219],[-34.9148237,-8.0206834],[-34.9147668,-8.0206422],[-34.9147331,-8.0206156],[-34.9146918,-8.0205649],[-34.9146526,-8.0204389],[-34.9146332,-8.0203531],[-34.9146074,-8.0202268],[-34.9145846,-8.0201264],[-34.9145538,-8.020034],[-34.9145121,-8.0199741],[-34.9144624,-8.0199283],[-34.9144034,-8.0199013],[-34.914284,-8.0198693],[-34.9142326,-8.0198558],[-34.9141607,-8.0198374],[-34.9141124,-8.0198294],[-34.9140401,-8.0198201],[-34.9139662,-8.0198181],[-34.9138985,-8.0198238],[-34.9138502,-8.019829],[-34.9137847,-8.019841],[-34.9137456,-8.0198561],[-34.9137213,-8.0198757]]}},{"type":"Feature","id":"way/195057167","properties":{"name":"Rua Deputado Mário Monteiro","id":"way/195057167","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9119375,-8.024103],[-34.9120154,-8.0242118],[-34.9122831,-8.0245241],[-34.912359,-8.0245709],[-34.9126623,-8.0246787],[-34.9127562,-8.024714],[-34.912895,-8.0247787]]}},{"type":"Feature","id":"way/195058253","properties":{"name":"Rua Japaratuba","id":"way/195058253","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9188598,-8.0201381],[-34.918741,-8.020218],[-34.9187082,-8.0202405],[-34.9185373,-8.0203577],[-34.918548,-8.0203609],[-34.9183092,-8.0205017],[-34.918153,-8.0205957],[-34.9181134,-8.0206209],[-34.918094,-8.0206435],[-34.9180866,-8.0206734],[-34.9180866,-8.0207239],[-34.918155,-8.0209589],[-34.9181972,-8.0211095]]}},{"type":"Feature","id":"way/197960452","properties":{"name":"Rua Jerônimo de Albuquerque","id":"way/197960452","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9184561,-8.0334556],[-34.9183748,-8.0333109],[-34.9180355,-8.0327248],[-34.9176703,-8.0320882],[-34.9175372,-8.0318581],[-34.9174753,-8.0317522],[-34.9170309,-8.0309812]]}},{"type":"Feature","id":"way/197960564","properties":{"name":"Rua de Casa Forte","id":"way/197960564","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9187798,-8.0330751],[-34.9192915,-8.0327829],[-34.9197143,-8.0325072]]}},{"type":"Feature","id":"way/197960569","properties":{"name":"Rua de Casa Forte","id":"way/197960569","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9184561,-8.0334556],[-34.9186417,-8.0333598],[-34.9187331,-8.0333125]]}},{"type":"Feature","id":"way/198058614","properties":{"name":"Rua da Harmonia","id":"way/198058614","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9152662,-8.0315351],[-34.9152455,-8.0314763],[-34.9149425,-8.0306162],[-34.9149049,-8.0304936],[-34.9148154,-8.0302259],[-34.914497,-8.0293086],[-34.9144385,-8.0291365],[-34.9143481,-8.0288709],[-34.9138886,-8.027541],[-34.9138656,-8.0274744]]}},{"type":"Feature","id":"way/198109060","properties":{"name":"Rua Doutor João Santos Filho","id":"way/198109060","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9134996,-8.0364268],[-34.9135594,-8.0363446],[-34.9135803,-8.0362834],[-34.9135831,-8.0362562],[-34.9135801,-8.0362252],[-34.9135593,-8.0361379]]}},{"type":"Feature","id":"way/198196114","properties":{"name":"Rua Silvino Lopes","id":"way/198196114","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.916935,-8.0335014],[-34.9170279,-8.0334316],[-34.9173059,-8.0332385],[-34.9180355,-8.0327248]]}},{"type":"Feature","id":"way/198196286","properties":{"name":"Rua Doutor Samuel Lins","id":"way/198196286","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9156127,-8.0323405],[-34.9156554,-8.0323731],[-34.9157502,-8.0324462],[-34.9164892,-8.0330443]]}},{"type":"Feature","id":"way/198246703","properties":{"name":"Rua Ambrósio Machado","id":"way/198246703","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9360981,-8.046882],[-34.9361161,-8.0469811],[-34.9361338,-8.0470687]]}},{"type":"Feature","id":"way/198246704","properties":{"name":"Rua Ambrósio Machado","id":"way/198246704","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9360205,-8.0470588],[-34.9360049,-8.0468819]]}},{"type":"Feature","id":"way/198968502","properties":{"name":"Rua Ademar Pires Travasso","id":"way/198968502","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9380261,-8.0442668],[-34.937563,-8.0444225],[-34.9374783,-8.0444546],[-34.9374224,-8.0444713],[-34.9373716,-8.0444864],[-34.937061,-8.0446558],[-34.9353862,-8.0455617]]}},{"type":"Feature","id":"way/198968986","properties":{"name":"Rua do Bom Pastor","id":"way/198968986","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9404681,-8.0469306],[-34.9405236,-8.0471323]]}},{"type":"Feature","id":"way/198968987","properties":{"name":"Rua do Bom Pastor","id":"way/198968987","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9405236,-8.0471323],[-34.9405286,-8.0471526],[-34.9405349,-8.0471778],[-34.9405916,-8.0474327]]}},{"type":"Feature","id":"way/198968988","properties":{"name":"Rua Mauricéia","id":"way/198968988","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9404133,-8.0467569],[-34.9407058,-8.0466491],[-34.9420347,-8.046156]]}},{"type":"Feature","id":"way/198989347","properties":{"name":"Rua Emiliano Braga","id":"way/198989347","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9405103,-8.0410803],[-34.9410693,-8.0407655],[-34.9416432,-8.0404634]]}},{"type":"Feature","id":"way/198989505","properties":{"name":"Estrada do Barbalho","id":"way/198989505","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9340625,-8.0290821],[-34.9339829,-8.029075],[-34.9339432,-8.0290714],[-34.9331641,-8.0291007],[-34.9329796,-8.029106]]}},{"type":"Feature","id":"way/198989547","properties":{"name":"Rua São Mateus","id":"way/198989547","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9340625,-8.0290821],[-34.9341075,-8.0294146],[-34.9341371,-8.0296002],[-34.9341496,-8.0296727],[-34.9341874,-8.029959],[-34.9342272,-8.0302359],[-34.9342408,-8.0303102],[-34.9342797,-8.0305313],[-34.9343211,-8.0308255],[-34.934379,-8.031183],[-34.934443,-8.0315549],[-34.9344552,-8.0316384],[-34.9344628,-8.0316927],[-34.9345681,-8.0323117],[-34.9345883,-8.0324277]]}},{"type":"Feature","id":"way/198990835","properties":{"name":"Rua Gaspar Perez","id":"way/198990835","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9401866,-8.0399931],[-34.9403469,-8.0405213],[-34.9405103,-8.0410803],[-34.9408119,-8.0421112],[-34.9408587,-8.0422477],[-34.9409159,-8.0424306],[-34.9409835,-8.0426617],[-34.9411071,-8.0430604],[-34.9413132,-8.0438262],[-34.9414656,-8.0443438],[-34.9415293,-8.0445602],[-34.9416763,-8.0450502],[-34.9417632,-8.0453373],[-34.9420347,-8.046156]]}},{"type":"Feature","id":"way/198990897","properties":{"name":"Rua Miguel Ângelo","id":"way/198990897","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9399495,-8.0421943],[-34.9399722,-8.0422185],[-34.9399831,-8.0422431],[-34.9399982,-8.0422752],[-34.9400747,-8.0424624],[-34.9402048,-8.0429258],[-34.9404032,-8.0435141],[-34.9406285,-8.0441515]]}},{"type":"Feature","id":"way/199434199","properties":{"name":"Rua Paula Batista","id":"way/199434199","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9161663,-8.0267162],[-34.9161285,-8.0266343],[-34.9160304,-8.0264519],[-34.915441,-8.0255919],[-34.9154013,-8.0255291],[-34.9153765,-8.0254758],[-34.9153199,-8.0253369],[-34.9151622,-8.0249352]]}},{"type":"Feature","id":"way/199434203","properties":{"name":"Rua Paula Batista","id":"way/199434203","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9148244,-8.0238086],[-34.9147556,-8.0237072]]}},{"type":"Feature","id":"way/199697128","properties":{"name":"Rua Xavantes","id":"way/199697128","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9183672,-8.0230837],[-34.9182969,-8.023107],[-34.9173007,-8.0234365],[-34.9166611,-8.0236612]]}},{"type":"Feature","id":"way/199698447","properties":{"name":"Rua Pedro Allain","id":"way/199698447","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9175508,-8.0213438],[-34.9175777,-8.0214078],[-34.9176639,-8.0215845],[-34.9177647,-8.0217967],[-34.9178065,-8.0218848],[-34.9180256,-8.0223685],[-34.9180496,-8.0224216],[-34.9180641,-8.0224578],[-34.9183242,-8.0229949],[-34.9183672,-8.0230837]]}},{"type":"Feature","id":"way/199698617","properties":{"name":"Rua Pedro Allain","id":"way/199698617","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9184927,-8.0234248],[-34.918465,-8.0232878],[-34.9184485,-8.0232454],[-34.9184211,-8.0231988]]}},{"type":"Feature","id":"way/199699061","properties":{"name":"Rua Rev Antônio Queiroz","id":"way/199699061","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9154306,-8.0233673],[-34.9155866,-8.0233251],[-34.9164241,-8.0230989]]}},{"type":"Feature","id":"way/199703491","properties":{"name":"Rua Paula Batista","id":"way/199703491","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9147556,-8.0237072],[-34.9147236,-8.0236974],[-34.9146608,-8.02368]]}},{"type":"Feature","id":"way/199703493","properties":{"name":"Praça do Trabalho","id":"way/199703493","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9144261,-8.0227677],[-34.9145362,-8.0229593],[-34.9147003,-8.0232529],[-34.9147387,-8.0233162],[-34.9148304,-8.0234628],[-34.9148358,-8.023496],[-34.9148324,-8.0235286],[-34.9148224,-8.0235631],[-34.9147989,-8.0235916],[-34.9147265,-8.0236375]]}},{"type":"Feature","id":"way/199706753","properties":{"name":"Rua Coronel João Batista do Rego Barros","id":"way/199706753","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9342057,-8.0211526],[-34.9339621,-8.020486]]}},{"type":"Feature","id":"way/199869537","properties":{"name":"Rua Antônio Valdevino da Costa","id":"way/199869537","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9262281,-8.0603219],[-34.9266237,-8.0602572]]}},{"type":"Feature","id":"way/199875826","properties":{"name":"Rua Doutora Antônia Dias","id":"way/199875826","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9280494,-8.0604016],[-34.9284599,-8.0602781]]}},{"type":"Feature","id":"way/199879695","properties":{"name":"Rua Tamboril","id":"way/199879695","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9291861,-8.0593953],[-34.9296776,-8.0591193],[-34.9298581,-8.0590278],[-34.9304685,-8.0586757],[-34.931204,-8.0582801]]}},{"type":"Feature","id":"way/199881222","properties":{"name":"Avenida Inácio Monteiro","id":"way/199881222","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9330577,-8.0512389],[-34.9333799,-8.0517989],[-34.9337083,-8.0523841],[-34.933998,-8.0529494],[-34.9343001,-8.053526]]}},{"type":"Feature","id":"way/199881559","properties":{"name":"Avenida Inácio Monteiro","id":"way/199881559","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9305904,-8.0468151],[-34.9308224,-8.0472376],[-34.931147,-8.0478046],[-34.9314635,-8.0483716],[-34.9317867,-8.0489638],[-34.9321058,-8.0495322],[-34.9322428,-8.0497751],[-34.932421,-8.0500912],[-34.9327368,-8.0506695],[-34.9328542,-8.0508567],[-34.9330577,-8.0512389]]}},{"type":"Feature","id":"way/199890276","properties":{"name":"Rua Professor Joaquim Xavier de Brito","id":"way/199890276","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9361441,-8.0471166],[-34.9361445,-8.0471456],[-34.9361105,-8.0473071],[-34.9359872,-8.0477556],[-34.9356514,-8.0490064],[-34.9356105,-8.0491589],[-34.9351182,-8.0509771],[-34.9350602,-8.0511667],[-34.9347337,-8.0522949]]}},{"type":"Feature","id":"way/199890280","properties":{"name":"Rua Professor Joaquim Xavier de Brito","id":"way/199890280","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9343001,-8.053526],[-34.9344804,-8.0527632],[-34.9346084,-8.0522627],[-34.9348975,-8.0512988],[-34.9349489,-8.0511291],[-34.935497,-8.0491222],[-34.935859,-8.0477435],[-34.9359989,-8.0472016],[-34.9360003,-8.0471169]]}},{"type":"Feature","id":"way/200856096","properties":{"name":"Rua Padre Roma","id":"way/200856096","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9100489,-8.0329382],[-34.9097423,-8.0329139],[-34.9093721,-8.0328641],[-34.9086305,-8.0327791],[-34.9085379,-8.0327745],[-34.9083949,-8.0327622]]}},{"type":"Feature","id":"way/200856098","properties":{"name":"Rua Padre Roma","id":"way/200856098","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.907282,-8.0325967],[-34.907602,-8.0326491],[-34.9078195,-8.0326653],[-34.9078627,-8.0326576],[-34.9079083,-8.0326264],[-34.9079224,-8.0326083]]}},{"type":"Feature","id":"way/200856105","properties":{"name":"Rua Padre Roma","id":"way/200856105","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.910303,-8.0328702],[-34.9102395,-8.0328542],[-34.9101955,-8.0328535],[-34.9101417,-8.0328701],[-34.9101052,-8.0328974],[-34.9100489,-8.0329382]]}},{"type":"Feature","id":"way/201513222","properties":{"name":"Estrada do Encanamento","id":"way/201513222","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9190051,-8.0303563],[-34.9187515,-8.0304312],[-34.9185099,-8.0305066],[-34.9183734,-8.0305495],[-34.9180824,-8.0306409],[-34.9178378,-8.0307178],[-34.9176575,-8.0307744],[-34.9170309,-8.0309812],[-34.9162069,-8.0312377],[-34.9154898,-8.0314695],[-34.9152978,-8.0315258],[-34.9152662,-8.0315351]]}},{"type":"Feature","id":"way/201513485","properties":{"name":"Estrada do Encanamento","id":"way/201513485","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9215531,-8.0295164],[-34.9209333,-8.0297246],[-34.920877,-8.0297473],[-34.9208459,-8.0297573],[-34.9206219,-8.0298288],[-34.9203461,-8.0299169],[-34.9199577,-8.0300409],[-34.9194525,-8.0302055],[-34.9190051,-8.0303563]]}},{"type":"Feature","id":"way/201513567","properties":{"name":"Estrada do Arraial","id":"way/201513567","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9138656,-8.0274744],[-34.914232,-8.0273408],[-34.9145886,-8.0272104],[-34.9151475,-8.0270233],[-34.9155482,-8.0268932],[-34.9160949,-8.0267361],[-34.9161663,-8.0267162]]}},{"type":"Feature","id":"way/201513568","properties":{"name":"Estrada do Arraial","id":"way/201513568","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9161663,-8.0267162],[-34.9162789,-8.0267033],[-34.9164211,-8.0266883],[-34.9166935,-8.0266586],[-34.9170152,-8.0266491],[-34.9172921,-8.0266817],[-34.9174539,-8.0267056],[-34.917592,-8.026723],[-34.9176233,-8.0267289],[-34.9177568,-8.0267491]]}},{"type":"Feature","id":"way/201513608","properties":{"name":"Estrada do Arraial","id":"way/201513608","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9177568,-8.0267491],[-34.9178248,-8.0267763],[-34.9179519,-8.0268313],[-34.9181938,-8.0269895],[-34.918943,-8.0274663],[-34.9190138,-8.0275],[-34.9195001,-8.0276955],[-34.919863,-8.0278127],[-34.920021,-8.0278792],[-34.9200789,-8.0279067],[-34.9201218,-8.0279279]]}},{"type":"Feature","id":"way/201514523","properties":{"name":"Praça do Monteiro","id":"way/201514523","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9289622,-8.0278227],[-34.9289044,-8.0278374],[-34.9282682,-8.0279791],[-34.9282133,-8.0279912]]}},{"type":"Feature","id":"way/202051331","properties":{"name":"Rua Fernando Fink Filho","id":"way/202051331","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9180071,-8.044836],[-34.9179203,-8.0448563],[-34.9178073,-8.0448855],[-34.9176481,-8.0449197],[-34.9175408,-8.0449363],[-34.9174449,-8.0449489],[-34.917355,-8.0449556],[-34.9172156,-8.0449536],[-34.9171076,-8.0449403],[-34.9169326,-8.0449111],[-34.9167857,-8.0448765],[-34.9166375,-8.044838]]}},{"type":"Feature","id":"way/202051332","properties":{"name":"Rua Fernando Fink Filho","id":"way/202051332","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9181265,-8.0448054],[-34.9180071,-8.044836]]}},{"type":"Feature","id":"way/202051912","properties":{"name":"Rua Professor Estevão Francisco da Costa","id":"way/202051912","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9186344,-8.0471917],[-34.9185272,-8.0469162],[-34.9184594,-8.0467011],[-34.9184132,-8.0465278],[-34.9184004,-8.0464289],[-34.9184031,-8.0463087]]}},{"type":"Feature","id":"way/202233890","properties":{"name":"Avenida Nossa Senhora da Saúde","id":"way/202233890","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9291792,-8.0442857],[-34.9289075,-8.0437881],[-34.9287977,-8.0435851],[-34.928578,-8.0432246],[-34.928319,-8.0427859]]}},{"type":"Feature","id":"way/202233953","properties":{"name":"Avenida Nossa Senhora da Saúde","id":"way/202233953","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.928319,-8.0427859],[-34.9282428,-8.0426496],[-34.9279333,-8.0420961],[-34.9278658,-8.0419753]]}},{"type":"Feature","id":"way/202234360","properties":{"name":"Rua Pereira Coutinho Filho","id":"way/202234360","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9317397,-8.0361016],[-34.9321246,-8.0373592],[-34.932279,-8.0378833]]}},{"type":"Feature","id":"way/202234462","properties":{"name":"Rua Leal de Barros","id":"way/202234462","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9345883,-8.0324277],[-34.9329173,-8.0326577],[-34.9325191,-8.032706],[-34.9323353,-8.0327342],[-34.9320406,-8.0328086],[-34.9315873,-8.032923],[-34.9314707,-8.0329524],[-34.9308279,-8.0331146],[-34.9302832,-8.0332521],[-34.9295645,-8.0333554],[-34.9294886,-8.0333663],[-34.929158,-8.0334141],[-34.9289533,-8.0334436],[-34.9288778,-8.0334545],[-34.9286822,-8.0334827],[-34.9283974,-8.0335238]]}},{"type":"Feature","id":"way/202234487","properties":{"name":"Rua Doutor José Anastacio da Silva Guimarães","id":"way/202234487","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9283974,-8.0335238],[-34.9285726,-8.03421],[-34.9287213,-8.0348098],[-34.9288872,-8.0354483],[-34.9290032,-8.0360226],[-34.9290146,-8.0360684],[-34.929083,-8.0364011],[-34.9291473,-8.0366683],[-34.9291522,-8.0366872]]}},{"type":"Feature","id":"way/202234499","properties":{"name":"Rua Doutor José Anastacio da Silva Guimarães","id":"way/202234499","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9291769,-8.0367815],[-34.9291852,-8.0368114],[-34.9293057,-8.0373596],[-34.9294008,-8.0377921],[-34.9294196,-8.0379966],[-34.9292533,-8.0384295]]}},{"type":"Feature","id":"way/202234715","properties":{"name":"Rua Pereira Coutinho Filho","id":"way/202234715","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9308279,-8.0331146],[-34.9311019,-8.034024],[-34.9317397,-8.0361016]]}},{"type":"Feature","id":"way/203054011","properties":{"name":"Rua General Vargas","id":"way/203054011","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9443038,-8.0516679],[-34.944216,-8.0506325],[-34.944198,-8.05036],[-34.9441672,-8.0498934]]}},{"type":"Feature","id":"way/203054049","properties":{"name":"Rua General Vargas","id":"way/203054049","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9441479,-8.0496328],[-34.9441381,-8.04947]]}},{"type":"Feature","id":"way/203054050","properties":{"name":"Rua General Vargas","id":"way/203054050","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9441381,-8.04947],[-34.9440968,-8.048956],[-34.9440039,-8.0478084],[-34.9439354,-8.0471447],[-34.9438724,-8.0463023]]}},{"type":"Feature","id":"way/203054177","properties":{"name":"Rua Bom Pastor","id":"way/203054177","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9400542,-8.0478122],[-34.9401605,-8.0474329],[-34.9401787,-8.047346],[-34.9401739,-8.0471811]]}},{"type":"Feature","id":"way/204066990","properties":{"name":"Rua Desembargador Oscar Coutinho","id":"way/204066990","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9323353,-8.0327342],[-34.9322706,-8.0323212],[-34.9321923,-8.0317131],[-34.9321313,-8.0314273],[-34.9320602,-8.0311731],[-34.9319164,-8.0306418],[-34.9318524,-8.0303445],[-34.9318141,-8.0301277],[-34.9316815,-8.0296152]]}},{"type":"Feature","id":"way/204067608","properties":{"name":"Avenida Jornalista Possidonio Cavalcanti Bastos","id":"way/204067608","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9321616,-8.0288337],[-34.9321367,-8.0289337],[-34.931788,-8.0294741],[-34.9316815,-8.0296152]]}},{"type":"Feature","id":"way/204067669","properties":{"name":"Rua Maria de Fátima Soares","id":"way/204067669","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9305216,-8.0310899],[-34.9305388,-8.0312366],[-34.9305451,-8.0313711],[-34.9305343,-8.0315366],[-34.9305272,-8.0316464],[-34.930539,-8.0318415],[-34.9305742,-8.0320289],[-34.9306796,-8.0325257],[-34.9307189,-8.0326877],[-34.9308279,-8.0331146]]}},{"type":"Feature","id":"way/204619792","properties":{"name":"Rua Acadêmico Hélio Ramos","id":"way/204619792","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9537926,-8.0463691],[-34.9538649,-8.0468014],[-34.9539762,-8.0472043],[-34.9539985,-8.0472841],[-34.9541887,-8.0479644],[-34.9546585,-8.0496718],[-34.9547105,-8.0498436],[-34.9550153,-8.0509395],[-34.9553505,-8.052145],[-34.9554483,-8.0524823]]}},{"type":"Feature","id":"way/204619823","properties":{"name":"Avenida Professor Luiz Freire","id":"way/204619823","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9565514,-8.0564068],[-34.9562105,-8.0564982],[-34.9562096,-8.0564986],[-34.9558196,-8.056624],[-34.9555387,-8.0567049],[-34.954624,-8.0569897],[-34.9546112,-8.0569935]]}},{"type":"Feature","id":"way/206614710","properties":{"name":"Rua Emiliano Braga","id":"way/206614710","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9441764,-8.039059],[-34.9445037,-8.0388863],[-34.9448657,-8.038683]]}},{"type":"Feature","id":"way/215516414","properties":{"name":"Rua dos Médicis","id":"way/215516414","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8933438,-8.060452],[-34.893131,-8.0601902],[-34.8927651,-8.0597346],[-34.8926935,-8.0595961],[-34.8926396,-8.0594398],[-34.892546,-8.059089]]}},{"type":"Feature","id":"way/219486587","properties":{"name":"Rua Manoel Apolinário","id":"way/219486587","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9105797,-8.0243937],[-34.9103257,-8.0232658]]}},{"type":"Feature","id":"way/219486588","properties":{"name":"Rua Cabo Epitácio Lucena","id":"way/219486588","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9113562,-8.0241881],[-34.9110855,-8.0230211]]}},{"type":"Feature","id":"way/222712037","properties":{"name":"Rua Doutor Benígno Vasconcelos","id":"way/222712037","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9526482,-8.1141402],[-34.9525597,-8.1144336],[-34.9525295,-8.1145757],[-34.9524973,-8.1147602],[-34.9524491,-8.1150935],[-34.9523371,-8.1158748],[-34.9522995,-8.1160905],[-34.9522559,-8.1162731],[-34.9522184,-8.1164078],[-34.9521898,-8.1165537],[-34.9521714,-8.116601],[-34.9519502,-8.1173319],[-34.951896,-8.11748],[-34.9518805,-8.1175238],[-34.9518344,-8.1176542],[-34.9517061,-8.1180469],[-34.9516367,-8.1182609],[-34.9516129,-8.1183223],[-34.9515753,-8.1184013],[-34.9515311,-8.1184813],[-34.951462,-8.1185892],[-34.9511063,-8.1190665],[-34.9509973,-8.1192046],[-34.9508968,-8.1193311],[-34.9508488,-8.1193914],[-34.9508361,-8.1194089],[-34.9507948,-8.1194661],[-34.950769,-8.1195272],[-34.9507519,-8.1195776],[-34.9507311,-8.1196566],[-34.950715,-8.1197456],[-34.9507003,-8.1198346],[-34.9506882,-8.1199374],[-34.9506782,-8.1200916],[-34.950656,-8.1204121],[-34.9506406,-8.1205969],[-34.9506158,-8.120896],[-34.9505855,-8.121247],[-34.9505762,-8.1213554],[-34.9505648,-8.1215005],[-34.9505622,-8.1215356],[-34.9505413,-8.1217995],[-34.9505045,-8.1222369],[-34.9504997,-8.1223245],[-34.950483,-8.122528],[-34.9504716,-8.1226976],[-34.9504379,-8.1230323],[-34.9504267,-8.123163],[-34.9503851,-8.1236675],[-34.9503494,-8.1240879],[-34.9503281,-8.1243243],[-34.9503276,-8.124334],[-34.9503154,-8.1245145],[-34.9503137,-8.124536],[-34.9502042,-8.1259219],[-34.950195,-8.1260215],[-34.9501924,-8.1260858],[-34.9501732,-8.1264257]]}},{"type":"Feature","id":"way/222712298","properties":{"name":"Avenida Queixeramobim","id":"way/222712298","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9540185,-8.1225],[-34.9540029,-8.1224485],[-34.953986,-8.1224092],[-34.9539655,-8.1223713],[-34.9539417,-8.1223378],[-34.9539029,-8.1222937],[-34.9538013,-8.1221965],[-34.9537728,-8.1221637],[-34.9537529,-8.1221375],[-34.9537406,-8.1221168],[-34.9537325,-8.1220979],[-34.9537286,-8.1220703],[-34.9537325,-8.1220428]]}},{"type":"Feature","id":"way/222720214","properties":{"name":"Avenida Engenho Muribara","id":"way/222720214","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9494416,-8.1152435],[-34.9496017,-8.1144106],[-34.9496269,-8.1142797],[-34.9496572,-8.1141218],[-34.9496789,-8.1140092],[-34.9497373,-8.1137056],[-34.9498697,-8.1130165],[-34.9499132,-8.1127905],[-34.9499459,-8.1126095],[-34.9499816,-8.1124344],[-34.9500818,-8.1119134],[-34.9501165,-8.1117327],[-34.9501523,-8.1115467],[-34.9501589,-8.1115121]]}},{"type":"Feature","id":"way/222720868","properties":{"name":"Avenida Santa Fé","id":"way/222720868","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9556644,-8.1153517],[-34.9556206,-8.1155084],[-34.9555618,-8.1157148],[-34.9554707,-8.1160249],[-34.9554045,-8.1162531],[-34.9553626,-8.1164092],[-34.955317,-8.1165546],[-34.9552534,-8.1167735],[-34.9552439,-8.1168035],[-34.9552003,-8.1169814],[-34.9550417,-8.1175062],[-34.9548644,-8.1181332],[-34.9547926,-8.1183681],[-34.9547477,-8.1185172],[-34.9546602,-8.1188182],[-34.9546484,-8.1188591],[-34.9546286,-8.1189186],[-34.954603,-8.1190149],[-34.9545038,-8.119357],[-34.9543371,-8.119932],[-34.9542327,-8.1202918],[-34.9541325,-8.1206311],[-34.9541208,-8.1206687],[-34.9540707,-8.1208502],[-34.9540262,-8.1210029],[-34.9540186,-8.1210291],[-34.9539125,-8.1213933],[-34.9539066,-8.1214166],[-34.9538136,-8.1217417],[-34.9537533,-8.1219502],[-34.9537424,-8.122],[-34.9537325,-8.1220428]]}},{"type":"Feature","id":"way/222816816","properties":{"name":"Avenida José Américo de Almeida","id":"way/222816816","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9308601,-8.0107015],[-34.9307607,-8.0107126],[-34.9307158,-8.0107269],[-34.9306776,-8.0107439],[-34.9306643,-8.0107538],[-34.9306333,-8.0107767],[-34.9306005,-8.0108077],[-34.9305659,-8.0108538],[-34.9305129,-8.0109379],[-34.9304529,-8.0110539],[-34.9302495,-8.011514],[-34.9298929,-8.012322],[-34.929657,-8.0128156],[-34.9295846,-8.0130215],[-34.9295649,-8.013087],[-34.9295081,-8.0132764],[-34.929495,-8.0134134],[-34.9295174,-8.0135567],[-34.9295336,-8.013639],[-34.929612,-8.0139301],[-34.9296392,-8.0140312],[-34.9298568,-8.0148392],[-34.9301252,-8.0158354],[-34.9302252,-8.0161611],[-34.9302456,-8.016203],[-34.9302889,-8.0162714]]}},{"type":"Feature","id":"way/222819855","properties":{"name":"Rua Alto José Bonifácio","id":"way/222819855","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9122768,-8.0072482],[-34.9122948,-8.0074082],[-34.9123279,-8.0079644]]}},{"type":"Feature","id":"way/222823623","properties":{"name":"Rua Cassiterita","id":"way/222823623","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9352874,-7.99367],[-34.9361878,-7.9931221],[-34.9362552,-7.9930769],[-34.9362981,-7.9930158],[-34.9363794,-7.9928886],[-34.9364289,-7.9928033],[-34.9365335,-7.9926446]]}},{"type":"Feature","id":"way/222825609","properties":{"name":"Rua Visconde Mamanguape","id":"way/222825609","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8828608,-8.0247006],[-34.8820344,-8.0242935],[-34.8812065,-8.023911],[-34.8807756,-8.0236851],[-34.8804213,-8.0234928],[-34.8788715,-8.0226616],[-34.878488,-8.022456]]}},{"type":"Feature","id":"way/223088213","properties":{"name":"Rua Setúbal","id":"way/223088213","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9046869,-8.1410235],[-34.9045723,-8.140773],[-34.9045295,-8.1406679],[-34.9043329,-8.1401666]]}},{"type":"Feature","id":"way/223418529","properties":{"name":"Rua Visconde de Itaparica","id":"way/223418529","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9108185,-8.042566],[-34.9114843,-8.0427738]]}},{"type":"Feature","id":"way/223419656","properties":{"name":"Rua Marcos André","id":"way/223419656","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9086948,-8.041016],[-34.9087814,-8.0410269]]}},{"type":"Feature","id":"way/223535074","properties":{"name":"Rua Isaac Salazar","id":"way/223535074","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9062857,-8.0318284],[-34.905737,-8.0323011],[-34.905664,-8.0323819],[-34.9055117,-8.0325504],[-34.9054146,-8.0326679],[-34.9052764,-8.0329145],[-34.905195,-8.0330961],[-34.9051835,-8.0331293],[-34.9051309,-8.0332545],[-34.9050249,-8.0336118]]}},{"type":"Feature","id":"way/223668611","properties":{"name":"Avenida Armindo Moura","id":"way/223668611","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9092771,-8.1505528],[-34.9091599,-8.1505958]]}},{"type":"Feature","id":"way/223668612","properties":{"name":"Avenida Armindo Moura","id":"way/223668612","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9091599,-8.1505958],[-34.9091046,-8.150615]]}},{"type":"Feature","id":"way/224067520","properties":{"name":"Rua Cosmorama","id":"way/224067520","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9132418,-8.14666],[-34.9134249,-8.1471391],[-34.9135371,-8.1474286],[-34.9137472,-8.1479699]]}},{"type":"Feature","id":"way/232233972","properties":{"name":"Rua Doutor João Santos Filho","id":"way/232233972","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9110354,-8.036903],[-34.9110626,-8.0368984],[-34.9114239,-8.0368268],[-34.9115655,-8.0367988],[-34.9118163,-8.036755],[-34.9121906,-8.0366827],[-34.912574,-8.0366169],[-34.9131413,-8.036502],[-34.9134996,-8.0364268]]}},{"type":"Feature","id":"way/238008117","properties":{"name":"Rua Escritor Joaquim Noberto da Silva","id":"way/238008117","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9876607,-8.0386813],[-34.9879215,-8.0388085],[-34.987974,-8.0388341],[-34.9883236,-8.0390085],[-34.9885517,-8.0391322],[-34.9892074,-8.0394879],[-34.989607,-8.0397202],[-34.9901006,-8.0400011],[-34.9908536,-8.040424]]}},{"type":"Feature","id":"way/241530800","properties":{"name":"Estrada do Arraial","id":"way/241530800","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9237337,-8.0281332],[-34.9240355,-8.0279152],[-34.9244384,-8.0276724],[-34.9244821,-8.0276483],[-34.9245715,-8.0276251],[-34.9246172,-8.0276132],[-34.9249633,-8.0275765],[-34.9254243,-8.0275443],[-34.9254638,-8.0275415],[-34.9257263,-8.0275197],[-34.9259704,-8.0274716],[-34.926185,-8.0274164],[-34.9263687,-8.0273933],[-34.9264477,-8.0273904],[-34.9265267,-8.0274153],[-34.9266217,-8.0274602],[-34.9267789,-8.0275333]]}},{"type":"Feature","id":"way/241710312","properties":{"name":"Rua Ferreira Lopes","id":"way/241710312","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9129694,-8.0322678],[-34.9129347,-8.0322177],[-34.9123024,-8.0313059],[-34.91198,-8.0308332],[-34.9118793,-8.0306982],[-34.9118149,-8.0306119],[-34.9117613,-8.0305535],[-34.9116956,-8.030499],[-34.9113564,-8.0302807],[-34.9112899,-8.0302367],[-34.9111806,-8.0301578],[-34.9111028,-8.0300847],[-34.9109799,-8.0299524],[-34.9108863,-8.0298516]]}},{"type":"Feature","id":"way/241818221","properties":{"name":"Rua Figueira Filho","id":"way/241818221","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9119656,-8.0340925],[-34.911674,-8.0336742],[-34.9114575,-8.0333834],[-34.9113905,-8.0332851],[-34.9113463,-8.0331974],[-34.9113053,-8.0330992],[-34.9112033,-8.0328318]]}},{"type":"Feature","id":"way/242420407","properties":{"name":"Rua Alvenópolis","id":"way/242420407","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.943928,-8.0800165],[-34.9439498,-8.0799849],[-34.9439833,-8.0799736],[-34.9440651,-8.079957],[-34.944299,-8.0799267],[-34.9445591,-8.0798962],[-34.9448439,-8.0798107],[-34.945451,-8.0795125],[-34.9455799,-8.0794445],[-34.9456899,-8.079402],[-34.9461053,-8.0793158],[-34.9467408,-8.0792257],[-34.9470849,-8.0791551],[-34.9472939,-8.0791273],[-34.9474146,-8.0791112],[-34.9475916,-8.0791098],[-34.9476828,-8.0791444],[-34.9477793,-8.0792201],[-34.9485423,-8.0799151]]}},{"type":"Feature","id":"way/242552660","properties":{"name":"Avenida Professor José dos Anjos","id":"way/242552660","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8755468,-8.0202844],[-34.8757842,-8.0204237],[-34.8762083,-8.0207134],[-34.8764258,-8.0208444],[-34.8766808,-8.0209939],[-34.8769396,-8.0211425],[-34.8772009,-8.0212947],[-34.8774823,-8.0214569],[-34.8777442,-8.021604],[-34.877999,-8.0217426],[-34.8783133,-8.0219232]]}},{"type":"Feature","id":"way/242552953","properties":{"name":"Avenida Professor José dos Anjos","id":"way/242552953","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8786502,-8.0221094],[-34.8787994,-8.0221955],[-34.8790781,-8.0223539],[-34.8793767,-8.0225104],[-34.8794231,-8.0225291],[-34.8795251,-8.0225837]]}},{"type":"Feature","id":"way/242552958","properties":{"name":"Rua Jerônimo Vilela","id":"way/242552958","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8786215,-8.0221764],[-34.8786502,-8.0221094]]}},{"type":"Feature","id":"way/242552959","properties":{"name":"Rua Jerônimo Vilela","id":"way/242552959","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.878488,-8.022456],[-34.8785139,-8.0223991]]}},{"type":"Feature","id":"way/242552960","properties":{"name":"Rua Jerônimo Vilela","id":"way/242552960","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8785139,-8.0223991],[-34.8786215,-8.0221764]]}},{"type":"Feature","id":"way/242959949","properties":{"name":"Travessa do Bandeira","id":"way/242959949","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8916187,-8.0750519],[-34.8919806,-8.0739227],[-34.8920668,-8.0736277]]}},{"type":"Feature","id":"way/243358111","properties":{"name":"Rua do Pombal","id":"way/243358111","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8835691,-8.0505012],[-34.883437,-8.050325],[-34.8833455,-8.050203],[-34.8832599,-8.0500879],[-34.8831689,-8.049965],[-34.8829923,-8.0497273],[-34.8829221,-8.0496309],[-34.8826852,-8.0493208],[-34.8823993,-8.0489141]]}},{"type":"Feature","id":"way/244904005","properties":{"name":"Rua Santa Terezinha","id":"way/244904005","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9484237,-8.0820742],[-34.9479017,-8.0831583]]}},{"type":"Feature","id":"way/246172562","properties":{"name":"Rua Pio IX","id":"way/246172562","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9117284,-8.0435825],[-34.9117063,-8.0434397],[-34.9116687,-8.0433003],[-34.9115749,-8.0430772],[-34.9115185,-8.0429272],[-34.9114843,-8.0427738]]}},{"type":"Feature","id":"way/247441640","properties":{"name":"Rua Elvira Carreira de Oliveira","id":"way/247441640","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8949599,-8.0652289],[-34.8947333,-8.0656989],[-34.8946904,-8.0658131],[-34.8946669,-8.0659831],[-34.8946648,-8.0661831]]}},{"type":"Feature","id":"way/247443467","properties":{"name":"Túnel Chico Science","id":"way/247443467","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9013778,-8.0620852],[-34.9013105,-8.0615919],[-34.9012734,-8.061283]]}},{"type":"Feature","id":"way/248028930","properties":{"name":"Avenida Inácio de Barros Barreto","id":"way/248028930","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9596608,-8.0535868],[-34.9594899,-8.0536021],[-34.9592431,-8.0536247],[-34.9589521,-8.0536738],[-34.9587315,-8.0537256],[-34.958191,-8.0538611],[-34.9575828,-8.0540191],[-34.9570913,-8.0541572],[-34.9565649,-8.0542986],[-34.9560009,-8.0544582]]}},{"type":"Feature","id":"way/248029602","properties":{"name":"Rua Bernardo Sayão","id":"way/248029602","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9563083,-8.0555356],[-34.9568392,-8.0553436],[-34.9573481,-8.0552042],[-34.9578711,-8.0550588],[-34.9583821,-8.0549207],[-34.9588414,-8.0547979],[-34.9593041,-8.054677]]}},{"type":"Feature","id":"way/248030054","properties":{"name":"Rua Eduardo Dubeux","id":"way/248030054","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9577435,-8.0570413],[-34.9574567,-8.0566608],[-34.9571457,-8.0562254]]}},{"type":"Feature","id":"way/248030947","properties":{"name":"Rua Belém de São Francisco","id":"way/248030947","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9585166,-8.0575318],[-34.9583826,-8.0568627],[-34.9582446,-8.0563721],[-34.9581239,-8.0559133],[-34.9578711,-8.0550588],[-34.9577223,-8.0545403],[-34.9575828,-8.0540191],[-34.9573686,-8.053297]]}},{"type":"Feature","id":"way/248065090","properties":{"name":"Rua Azeredo Coutinho","id":"way/248065090","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9593009,-8.0497752],[-34.9588434,-8.0499133],[-34.9582658,-8.0500779]]}},{"type":"Feature","id":"way/248083330","properties":{"name":"Rua Francisco Lacerda","id":"way/248083330","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9585102,-8.0513693],[-34.958409,-8.050902],[-34.9583821,-8.0507857],[-34.9583419,-8.0506622],[-34.9582788,-8.0505055],[-34.9581876,-8.0502406],[-34.9581826,-8.0502014],[-34.9581923,-8.0501662],[-34.9582346,-8.0500965],[-34.9582658,-8.0500779]]}},{"type":"Feature","id":"way/250012847","properties":{"id":"way/250012847","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9452487,-8.0163554],[-34.9451436,-8.0166627],[-34.9451299,-8.0166956],[-34.9448348,-8.0175776],[-34.9446854,-8.0180825],[-34.9446116,-8.0183507],[-34.9444695,-8.0188262],[-34.9443702,-8.019105],[-34.944267,-8.0194317],[-34.9442469,-8.0194995],[-34.9440993,-8.0199842],[-34.9440564,-8.0200891],[-34.9440068,-8.0201787],[-34.9439465,-8.0202378],[-34.9438915,-8.0202531],[-34.943811,-8.0202551],[-34.9437325,-8.0202411],[-34.9436414,-8.0202073],[-34.9435515,-8.0201309],[-34.9434717,-8.0200326],[-34.9434368,-8.0199875],[-34.943406,-8.0199304],[-34.9434114,-8.0198454],[-34.9434301,-8.0197843],[-34.9436084,-8.0192559],[-34.9436119,-8.0191552],[-34.9435978,-8.0189608],[-34.9436206,-8.0188547],[-34.943668,-8.0187247],[-34.9437057,-8.0186741],[-34.9437697,-8.0186448],[-34.9438714,-8.0186448]]}},{"type":"Feature","id":"way/250696581","properties":{"name":"Rua Doutora Antônia Dias","id":"way/250696581","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9280494,-8.0604016],[-34.9279568,-8.0606094]]}},{"type":"Feature","id":"way/250696582","properties":{"name":"Rua Doutora Antônia Dias","id":"way/250696582","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9284599,-8.0602781],[-34.9289277,-8.0601266],[-34.9294036,-8.059965]]}},{"type":"Feature","id":"way/251680266","properties":{"name":"Ponte da Torre","id":"way/251680266","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9041963,-8.0455356],[-34.904233,-8.0455192],[-34.9042954,-8.0454721],[-34.904341,-8.0454203],[-34.9044228,-8.0453347]]}},{"type":"Feature","id":"way/255536652","properties":{"name":"Rua Urubici","id":"way/255536652","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8963544,-8.0730426],[-34.8961897,-8.0729959],[-34.8958894,-8.0729107]]}},{"type":"Feature","id":"way/257938682","properties":{"name":"Rua Marcos André","id":"way/257938682","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9080643,-8.0409061],[-34.9083563,-8.0409559]]}},{"type":"Feature","id":"way/262267980","properties":{"name":"Rua da Aurora","id":"way/262267980","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8808718,-8.0608531],[-34.8808238,-8.0607787]]}},{"type":"Feature","id":"way/262267981","properties":{"name":"Rua da Aurora","id":"way/262267981","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8816055,-8.0619912],[-34.8815842,-8.0619591],[-34.8810219,-8.0610862],[-34.8808996,-8.0608963],[-34.8808718,-8.0608531]]}},{"type":"Feature","id":"way/283996611","properties":{"name":"Rua do Brum","id":"way/283996611","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8716517,-8.0584344],[-34.8715537,-8.0577272],[-34.8715322,-8.0575846],[-34.87147,-8.057142],[-34.8713425,-8.0562691],[-34.8713026,-8.0559962],[-34.8711137,-8.054485],[-34.8710819,-8.0543529],[-34.8710588,-8.0542414],[-34.8710412,-8.0541265]]}},{"type":"Feature","id":"way/283996612","properties":{"name":"Travessa Tiradentes","id":"way/283996612","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8717463,-8.0591351],[-34.8717356,-8.0591381],[-34.8709396,-8.0593618],[-34.8705612,-8.0594601]]}},{"type":"Feature","id":"way/283996614","properties":{"name":"Rua Bernardo Vieira de Melo","id":"way/283996614","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8709396,-8.0593618],[-34.8708693,-8.0589136],[-34.8708306,-8.0586362],[-34.870782,-8.0582834],[-34.8707384,-8.0578826]]}},{"type":"Feature","id":"way/283996615","properties":{"name":"Rua do Moinho","id":"way/283996615","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.870782,-8.0582834],[-34.8702947,-8.0584],[-34.8700668,-8.0584664],[-34.8696834,-8.0586016]]}},{"type":"Feature","id":"way/283996616","properties":{"name":"Rua de São Jorge","id":"way/283996616","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8705612,-8.0594601],[-34.8702947,-8.0584],[-34.8702544,-8.0581794],[-34.8702284,-8.057948]]}},{"type":"Feature","id":"way/283996617","properties":{"name":"Rua de São Jorge","id":"way/283996617","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8702284,-8.057948],[-34.8702179,-8.0578792],[-34.8702018,-8.0577862],[-34.870134,-8.0573252],[-34.870074,-8.056501],[-34.8700861,-8.0562622],[-34.8701616,-8.0562711],[-34.8701901,-8.0562648],[-34.8702172,-8.0562536],[-34.8702427,-8.0562253],[-34.8703205,-8.0560248]]}},{"type":"Feature","id":"way/283996618","properties":{"name":"Rua do Ocidente","id":"way/283996618","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.87147,-8.057142],[-34.8714406,-8.0571464],[-34.8706655,-8.0572677],[-34.870134,-8.0573252]]}},{"type":"Feature","id":"way/283996620","properties":{"name":"Avenida Barbosa Lima","id":"way/283996620","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8733336,-8.0615277],[-34.872654,-8.0619458],[-34.8722093,-8.0622155],[-34.8719365,-8.0623854],[-34.8716493,-8.0625578],[-34.8716038,-8.0625851],[-34.8715909,-8.062595],[-34.8715197,-8.0626498],[-34.8712638,-8.0628317]]}},{"type":"Feature","id":"way/284811573","properties":{"name":"Rua Vital de Oliveira","id":"way/284811573","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.870391,-8.0606709],[-34.8708416,-8.0605152]]}},{"type":"Feature","id":"way/291664951","properties":{"name":"Passarela de Integração Metrô/Aeroporto","id":"way/291664951","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9175384,-8.1324681],[-34.9174281,-8.1324307],[-34.917358,-8.1324084],[-34.9160796,-8.1323252],[-34.9152935,-8.1325711],[-34.9144563,-8.1328329],[-34.9144492,-8.1328474],[-34.9144394,-8.1328497]]}},{"type":"Feature","id":"way/294900080","properties":{"name":"Rua Doutor Joaquim dos Santos Souto","id":"way/294900080","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9023715,-8.0651963],[-34.9023339,-8.0651996],[-34.9012802,-8.065292]]}},{"type":"Feature","id":"way/305933492","properties":{"name":"Rua Deputado Mário Monteiro","id":"way/305933492","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9118908,-8.024021],[-34.9119375,-8.024103]]}},{"type":"Feature","id":"way/305934826","properties":{"name":"Avenida Professor José dos Anjos","id":"way/305934826","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.904337,-8.0263775],[-34.9042511,-8.0264028],[-34.9036845,-8.0265423],[-34.9035577,-8.0265656],[-34.9033348,-8.0265928],[-34.9030093,-8.0266112],[-34.9027136,-8.0265903],[-34.9019551,-8.0265497],[-34.9016284,-8.0265403],[-34.9015393,-8.0265404],[-34.9013358,-8.0265347],[-34.9007586,-8.0265238],[-34.899348,-8.0264806],[-34.8991841,-8.0264839],[-34.898898,-8.0265322]]}},{"type":"Feature","id":"way/305934846","properties":{"name":"Rua Marechal Deodoro","id":"way/305934846","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8875737,-8.0399222],[-34.8875038,-8.0398471]]}},{"type":"Feature","id":"way/306532474","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/306532474","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9127835,-8.1011464],[-34.9127512,-8.1009641],[-34.912685,-8.1006084],[-34.9126757,-8.1005478],[-34.9126012,-8.100063],[-34.9125618,-8.0998062]]}},{"type":"Feature","id":"way/306858407","properties":{"name":"Acesso Bom Preço","id":"way/306858407","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8938267,-8.027769],[-34.8938416,-8.0276549],[-34.8938401,-8.0275662],[-34.893824,-8.027537],[-34.8937972,-8.0275111],[-34.8937409,-8.0274882],[-34.893653,-8.0274686],[-34.8935651,-8.0274489],[-34.8933923,-8.0274102],[-34.8932381,-8.0273757],[-34.8931558,-8.0273605]]}},{"type":"Feature","id":"way/307186021","properties":{"name":"Rua Itacari","id":"way/307186021","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9127108,-8.1086528],[-34.9133927,-8.1085306],[-34.9134516,-8.10852],[-34.9135694,-8.1084997],[-34.9142266,-8.1083862],[-34.9149899,-8.1082513],[-34.9157609,-8.1080886],[-34.9158335,-8.1080602],[-34.9158832,-8.1080255],[-34.9159304,-8.1079868],[-34.9159903,-8.1079377]]}},{"type":"Feature","id":"way/311596116","properties":{"name":"Avenida Santos Dumont","id":"way/311596116","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8950474,-8.0311654],[-34.8950733,-8.0311843],[-34.8951506,-8.0312]]}},{"type":"Feature","id":"way/313482025","properties":{"name":"Rua Córrego do Bartolomeu","id":"way/313482025","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9110679,-8.019356],[-34.9111657,-8.019521],[-34.911406,-8.0199723],[-34.9115088,-8.0201528],[-34.9115343,-8.0201975],[-34.9115895,-8.0203217],[-34.9116258,-8.0204928],[-34.9116347,-8.0205582],[-34.9116422,-8.0206645],[-34.9116359,-8.0208531],[-34.9116297,-8.0210382],[-34.9116119,-8.0215713],[-34.9116065,-8.0218852],[-34.9116073,-8.0219163],[-34.9116064,-8.0224622],[-34.9116072,-8.0225161],[-34.9116118,-8.0226381],[-34.9116198,-8.02273],[-34.9116245,-8.0227849],[-34.9116384,-8.0229037],[-34.9116565,-8.0229855],[-34.9117029,-8.0231901],[-34.9117321,-8.0233184],[-34.9118681,-8.0239177],[-34.9118908,-8.024021]]}},{"type":"Feature","id":"way/313482028","properties":{"name":"Praça do Trabalho","id":"way/313482028","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9147265,-8.0236375],[-34.9146608,-8.02368],[-34.9144555,-8.0233784],[-34.9142904,-8.0230823],[-34.9141953,-8.022921]]}},{"type":"Feature","id":"way/314754232","properties":{"name":"Rua Ministro João Alberto","id":"way/314754232","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9446009,-8.0353195],[-34.9444467,-8.034771],[-34.9444856,-8.0340234],[-34.9445017,-8.0333767],[-34.9445231,-8.0326616]]}},{"type":"Feature","id":"way/314754239","properties":{"name":"Avenida Nossa Senhora da Saúde","id":"way/314754239","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.929276,-8.0444574],[-34.9295547,-8.0449434],[-34.9298496,-8.0454496],[-34.9298805,-8.0455025]]}},{"type":"Feature","id":"way/314754298","properties":{"name":"Rua Carlos Gomes","id":"way/314754298","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9130998,-8.0624566],[-34.9131313,-8.0625844]]}},{"type":"Feature","id":"way/314850308","properties":{"name":"Rua Padre Roma","id":"way/314850308","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9083949,-8.0327622],[-34.9080981,-8.0327194],[-34.9079546,-8.0327048]]}},{"type":"Feature","id":"way/315073865","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/315073865","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8926502,-8.0488122],[-34.8919629,-8.0479572],[-34.8915419,-8.0474096],[-34.8909531,-8.0466427],[-34.8902447,-8.0457205],[-34.8901986,-8.0456763],[-34.8901475,-8.045657],[-34.8901184,-8.0456606],[-34.8900903,-8.0456712],[-34.8900628,-8.0456868],[-34.8900343,-8.0457068],[-34.8900086,-8.0457423],[-34.8900014,-8.0457629],[-34.8899916,-8.0458038],[-34.8899818,-8.0458444]]}},{"type":"Feature","id":"way/315073866","properties":{"name":"Rua Doutor Leopoldo Lins","id":"way/315073866","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8926502,-8.0488122],[-34.8927432,-8.0487586]]}},{"type":"Feature","id":"way/315073914","properties":{"name":"Praça Miguel de Cervantes","id":"way/315073914","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8936801,-8.0673402],[-34.8931817,-8.0662875]]}},{"type":"Feature","id":"way/315669175","properties":{"name":"Rua Salvador de Sá","id":"way/315669175","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8951506,-8.0312],[-34.8953366,-8.0311958],[-34.8955202,-8.0312001],[-34.8956583,-8.0312034],[-34.8978947,-8.0312583]]}},{"type":"Feature","id":"way/316156841","properties":{"name":"Rua Doutor José Mariano","id":"way/316156841","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8816595,-8.0620738],[-34.8816286,-8.0620269],[-34.8816055,-8.0619912]]}},{"type":"Feature","id":"way/316156842","properties":{"name":"Rua do Hospício","id":"way/316156842","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.884044,-8.0608576],[-34.8840645,-8.0609094],[-34.8842856,-8.0614682],[-34.884443,-8.0617512],[-34.8845167,-8.06188],[-34.884634,-8.0620144],[-34.8848739,-8.0622389],[-34.885172,-8.062514],[-34.8852191,-8.0625491],[-34.8852826,-8.0625629],[-34.8853521,-8.0625567]]}},{"type":"Feature","id":"way/316212658","properties":{"name":"Rua do Riachuelo","id":"way/316212658","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8814317,-8.0605075],[-34.8809775,-8.0607874],[-34.8808892,-8.0608422],[-34.8808718,-8.0608531]]}},{"type":"Feature","id":"way/316307685","properties":{"name":"Rua Francisco Alves","id":"way/316307685","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8911282,-8.0685321],[-34.8923732,-8.0679486],[-34.8936801,-8.0673402]]}},{"type":"Feature","id":"way/316587817","properties":{"name":"Rua do Futuro","id":"way/316587817","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9039909,-8.0360153],[-34.9039219,-8.0360987],[-34.9037978,-8.0362344]]}},{"type":"Feature","id":"way/316609865","properties":{"name":"Estrada do Arraial","id":"way/316609865","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9074391,-8.0298835],[-34.9077022,-8.0297194],[-34.9079169,-8.0295856],[-34.9082298,-8.0293803],[-34.9085218,-8.0292135],[-34.9085351,-8.0292066],[-34.908728,-8.0291069],[-34.9088774,-8.0290307],[-34.9092854,-8.0288717],[-34.9093691,-8.0288406],[-34.9095057,-8.0287924],[-34.909994,-8.0286145],[-34.9103533,-8.0285166],[-34.9108484,-8.0283764],[-34.9108708,-8.0283708],[-34.9110427,-8.0283244],[-34.9111239,-8.0283036],[-34.9111831,-8.0282875],[-34.9112428,-8.0282699],[-34.9115498,-8.0281792],[-34.9117264,-8.028127],[-34.912028,-8.0280471],[-34.9121021,-8.0280277],[-34.9121498,-8.0280165],[-34.9127887,-8.0278254],[-34.9130744,-8.027743],[-34.9135229,-8.0275907],[-34.9137618,-8.0275096],[-34.9138656,-8.0274744]]}},{"type":"Feature","id":"way/316609895","properties":{"name":"Rua General Abreu e Lima","id":"way/316609895","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9002492,-8.0350646],[-34.9002851,-8.0351275],[-34.9004036,-8.035335]]}},{"type":"Feature","id":"way/316609908","properties":{"name":"Rua Mem de Sá","id":"way/316609908","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8897473,-8.0296543],[-34.8897174,-8.029651]]}},{"type":"Feature","id":"way/316609909","properties":{"name":"Rua Mem de Sá","id":"way/316609909","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8917136,-8.0299709],[-34.8907448,-8.0298064],[-34.8906302,-8.0297867],[-34.8904548,-8.0297566]]}},{"type":"Feature","id":"way/316614634","properties":{"name":"Rua Marechal Deodoro","id":"way/316614634","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8839151,-8.0364386],[-34.884002,-8.0365126]]}},{"type":"Feature","id":"way/316614635","properties":{"name":"Rua Marechal Deodoro","id":"way/316614635","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.883225,-8.0357889],[-34.8835577,-8.036107],[-34.8837828,-8.036318],[-34.8839151,-8.0364386]]}},{"type":"Feature","id":"way/316614636","properties":{"name":"Rua Marechal Deodoro","id":"way/316614636","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8862536,-8.0386658],[-34.88581,-8.0382111],[-34.8848823,-8.0373272],[-34.884127,-8.0366203],[-34.8841059,-8.0366069],[-34.8840829,-8.0366013],[-34.8840535,-8.0366041]]}},{"type":"Feature","id":"way/316614641","properties":{"name":"Avenida Agamenon Magalhães - Pista Local","id":"way/316614641","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8827668,-8.0409647],[-34.8816521,-8.0404486],[-34.8814208,-8.0403344]]}},{"type":"Feature","id":"way/316676558","properties":{"name":"Avenida João de Barros","id":"way/316676558","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8897939,-8.048202],[-34.8898002,-8.0483541],[-34.8898575,-8.0486304],[-34.889921,-8.0489368],[-34.8899364,-8.0490591],[-34.8899797,-8.0494034],[-34.8899974,-8.0496183],[-34.890002,-8.0497217],[-34.8900172,-8.0501348],[-34.890018,-8.0502118]]}},{"type":"Feature","id":"way/316676594","properties":{"name":"Rua Floriano Peixoto","id":"way/316676594","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8827609,-8.0666898],[-34.8828451,-8.067013],[-34.8829028,-8.0672143],[-34.8829105,-8.067235],[-34.8829538,-8.0673508]]}},{"type":"Feature","id":"way/316707902","properties":{"name":"Avenida João de Barros","id":"way/316707902","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.889955,-8.0531971],[-34.8899094,-8.0534474],[-34.8898231,-8.0538553],[-34.8897815,-8.0542561],[-34.8897574,-8.054434],[-34.8897038,-8.0545879],[-34.8896169,-8.0547753]]}},{"type":"Feature","id":"way/316707910","properties":{"name":"Rua Barão de São Borja","id":"way/316707910","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8899684,-8.0604173],[-34.8901853,-8.0604098],[-34.8902839,-8.060413],[-34.8908525,-8.0604339],[-34.8912307,-8.0604783],[-34.8913178,-8.0605017],[-34.891466,-8.0605794]]}},{"type":"Feature","id":"way/316707911","properties":{"name":"Rua Barão de São Borja","id":"way/316707911","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.891466,-8.0605794],[-34.8920558,-8.0611287]]}},{"type":"Feature","id":"way/316707912","properties":{"name":"Rua Bispo Cardoso Ayres","id":"way/316707912","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8868787,-8.0576239],[-34.8863282,-8.0567248],[-34.8863008,-8.0566816]]}},{"type":"Feature","id":"way/316707918","properties":{"name":"Rua José de Alencar","id":"way/316707918","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.890752,-8.0639099],[-34.8900812,-8.0632093]]}},{"type":"Feature","id":"way/316707919","properties":{"name":"Rua João Fernandes Vieira","id":"way/316707919","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8913493,-8.0544488],[-34.8911121,-8.0548057],[-34.8902018,-8.0561357],[-34.8901747,-8.0561713],[-34.8901507,-8.0561993],[-34.8901205,-8.0562189],[-34.8900873,-8.0562309],[-34.8899718,-8.0562396],[-34.8899179,-8.0562436],[-34.889876,-8.0562468]]}},{"type":"Feature","id":"way/316707920","properties":{"name":"Rua João Fernandes Vieira","id":"way/316707920","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8922978,-8.0525787],[-34.8922533,-8.0526789],[-34.8922332,-8.0527242],[-34.8920946,-8.0530365],[-34.8919009,-8.0534082],[-34.8915264,-8.0541072],[-34.8913493,-8.0544488]]}},{"type":"Feature","id":"way/316707924","properties":{"name":"Rua Visconde de Goiana","id":"way/316707924","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8907598,-8.0626712],[-34.8905641,-8.0628167],[-34.8900812,-8.0632093]]}},{"type":"Feature","id":"way/316740710","properties":{"name":"Rua Gomes Taborda","id":"way/316740710","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9239672,-8.0554399],[-34.9245334,-8.0552615],[-34.9248999,-8.0551212],[-34.9253205,-8.0549809],[-34.925923,-8.0547737],[-34.9265632,-8.0545519],[-34.9271651,-8.0543575],[-34.9273189,-8.0543076],[-34.9278682,-8.0541291]]}},{"type":"Feature","id":"way/316740718","properties":{"name":"Rua Gomes Taborda","id":"way/316740718","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9192996,-8.0567133],[-34.9194743,-8.0566625],[-34.9196027,-8.0566257],[-34.9199848,-8.0565103],[-34.920234,-8.0564518],[-34.9205786,-8.0563551],[-34.9207437,-8.056312],[-34.9213897,-8.0561337]]}},{"type":"Feature","id":"way/316740724","properties":{"name":"Rua Isaac Markman","id":"way/316740724","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9220154,-8.0641267],[-34.9228018,-8.0638346]]}},{"type":"Feature","id":"way/316740736","properties":{"name":"Rua Vinte e Um de Abril","id":"way/316740736","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9173771,-8.0752854],[-34.9170948,-8.0753597]]}},{"type":"Feature","id":"way/316740738","properties":{"name":"Rua Vinte e Um de Abril","id":"way/316740738","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9170948,-8.0753597],[-34.9167731,-8.0754438],[-34.9165096,-8.0755044],[-34.9161721,-8.075582],[-34.9159684,-8.0756297],[-34.9157051,-8.0756994],[-34.9155648,-8.0757367],[-34.9150949,-8.0758474],[-34.9150559,-8.0758566],[-34.9149743,-8.0758758],[-34.9144637,-8.0760272],[-34.9141619,-8.0761375],[-34.9139973,-8.0761934],[-34.9134551,-8.0763774],[-34.9130567,-8.0764818],[-34.9129827,-8.0764954],[-34.9129577,-8.0765],[-34.9128418,-8.0765161],[-34.9126397,-8.0765442],[-34.9123024,-8.0765874],[-34.9122155,-8.0765959],[-34.9120273,-8.076609],[-34.9117736,-8.0766332],[-34.9109375,-8.0767449],[-34.9106613,-8.0767743]]}},{"type":"Feature","id":"way/316740741","properties":{"name":"Rua Vinte e Um de Abril","id":"way/316740741","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9241904,-8.0729113],[-34.9240632,-8.0729658],[-34.9239653,-8.0730255],[-34.9238936,-8.0730783]]}},{"type":"Feature","id":"way/316989359","properties":{"name":"Rua Senador Alberto Pasqualini","id":"way/316989359","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9340807,-8.0796085],[-34.9346101,-8.079783],[-34.934842,-8.0798454],[-34.9352266,-8.079945]]}},{"type":"Feature","id":"way/316989360","properties":{"name":"Rua Senador Alberto Pasqualini","id":"way/316989360","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9352266,-8.079945],[-34.9355672,-8.0801336],[-34.9358784,-8.0802982],[-34.9361104,-8.0804151],[-34.9364792,-8.0806169],[-34.9370827,-8.0809395],[-34.9373456,-8.0810763],[-34.9379389,-8.0813926]]}},{"type":"Feature","id":"way/317021043","properties":{"name":"Avenida Professor Luiz Freire","id":"way/317021043","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9546112,-8.0569935],[-34.9521903,-8.0577384],[-34.9519563,-8.0578183],[-34.9517697,-8.0578744],[-34.9511989,-8.0580458],[-34.9508593,-8.0581458],[-34.9506861,-8.0581989],[-34.9501568,-8.0583599],[-34.949862,-8.0584561],[-34.94969,-8.0585122],[-34.9495481,-8.0585527],[-34.949368,-8.0586069],[-34.9491004,-8.0586859],[-34.9490105,-8.0587124],[-34.9489169,-8.0587377],[-34.9487955,-8.0587709],[-34.9479598,-8.0590282],[-34.9475936,-8.0591346],[-34.9472455,-8.0592358],[-34.9471184,-8.0592727],[-34.9465181,-8.0594614],[-34.9460598,-8.0595905]]}},{"type":"Feature","id":"way/317078451","properties":{"name":"Avenida do Forte","id":"way/317078451","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9311251,-8.0581332],[-34.930593,-8.0571428],[-34.9301135,-8.0562483],[-34.9300829,-8.0560926],[-34.9300896,-8.0558733],[-34.9300973,-8.0558268],[-34.9301017,-8.0556716],[-34.9300735,-8.0555605],[-34.9300045,-8.0554218],[-34.9298313,-8.0551133],[-34.9296929,-8.0548653],[-34.9294303,-8.0543811],[-34.929176,-8.0539331],[-34.9289458,-8.0535453],[-34.9286302,-8.0529601],[-34.9283089,-8.0523861],[-34.9279897,-8.0518196],[-34.9279398,-8.0517409],[-34.9276623,-8.0512368],[-34.9273442,-8.0506537],[-34.9272092,-8.0504061],[-34.9270226,-8.0500727],[-34.9269393,-8.0499173],[-34.9268502,-8.0497667],[-34.9267042,-8.0495121],[-34.9263844,-8.0489169],[-34.9258147,-8.0479217]]}},{"type":"Feature","id":"way/317078459","properties":{"name":"Rua Doutor Miguel Vieira Ferreira","id":"way/317078459","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9383379,-8.0521732],[-34.9384964,-8.0523514]]}},{"type":"Feature","id":"way/317078460","properties":{"name":"Rua Doutor Miguel Vieira Ferreira","id":"way/317078460","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9380147,-8.0519886],[-34.9381047,-8.0520188],[-34.9382049,-8.0520741],[-34.9383379,-8.0521732]]}},{"type":"Feature","id":"way/317078461","properties":{"name":"Rua Eduardo Dubeux","id":"way/317078461","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9571457,-8.0562254],[-34.9568392,-8.0553436],[-34.9566152,-8.0544902],[-34.9565649,-8.0542986],[-34.9562896,-8.0533879]]}},{"type":"Feature","id":"way/317078463","properties":{"name":"Rua General Vargas","id":"way/317078463","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9441672,-8.0498934],[-34.9441567,-8.0497531],[-34.9441479,-8.0496328]]}},{"type":"Feature","id":"way/317078468","properties":{"name":"Rua Lindolfo Color","id":"way/317078468","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9429179,-8.0520245],[-34.9423699,-8.0521691],[-34.9413332,-8.0524622]]}},{"type":"Feature","id":"way/317078469","properties":{"name":"Rua Lindolfo Color","id":"way/317078469","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9443038,-8.0516679],[-34.9441164,-8.0517171],[-34.9437158,-8.0518269],[-34.9429179,-8.0520245]]}},{"type":"Feature","id":"way/317078470","properties":{"name":"Rua Doutor Miguel Vieira Ferreira","id":"way/317078470","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9392506,-8.0530231],[-34.939131,-8.0530362],[-34.9390287,-8.0530194],[-34.9389371,-8.0529804],[-34.9388991,-8.0529472],[-34.938833,-8.0528865],[-34.9387617,-8.0527926],[-34.9386925,-8.05266],[-34.9386233,-8.0525409],[-34.9384964,-8.0523514]]}},{"type":"Feature","id":"way/317078471","properties":{"name":"Rua Mauricéia","id":"way/317078471","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9438724,-8.0463023],[-34.9439545,-8.0463112],[-34.9446874,-8.0464043]]}},{"type":"Feature","id":"way/317078477","properties":{"name":"Rua Bom Pastor","id":"way/317078477","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9395676,-8.0494241],[-34.9398576,-8.0484583],[-34.9400542,-8.0478122]]}},{"type":"Feature","id":"way/317181017","properties":{"name":"Rua Ministro João Alberto","id":"way/317181017","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9454112,-8.0368916],[-34.9454436,-8.0369381]]}},{"type":"Feature","id":"way/317189750","properties":{"name":"Rua Alegre","id":"way/317189750","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8930888,-8.0211775],[-34.8930473,-8.0210535],[-34.8929229,-8.02071],[-34.8928108,-8.0204271],[-34.8925696,-8.0197845],[-34.8924572,-8.0194595]]}},{"type":"Feature","id":"way/317189755","properties":{"name":"Rua São Bento","id":"way/317189755","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8969261,-8.0237758],[-34.8967978,-8.0237557],[-34.8965127,-8.0236928],[-34.8962705,-8.0236394],[-34.8957163,-8.0235299],[-34.8954447,-8.0234671],[-34.8950224,-8.0233694],[-34.8941127,-8.0232068],[-34.8938826,-8.0231294]]}},{"type":"Feature","id":"way/317208212","properties":{"name":"Rua Souza Bandeira","id":"way/317208212","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9176836,-8.0483424],[-34.9175535,-8.0479586],[-34.9174207,-8.0475735]]}},{"type":"Feature","id":"way/317261156","properties":{"name":"Estrada do Arraial","id":"way/317261156","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9203278,-8.02803],[-34.9204049,-8.0280735],[-34.9209187,-8.0283636],[-34.9211914,-8.0284931]]}},{"type":"Feature","id":"way/317261158","properties":{"name":"Estrada do Encanamento","id":"way/317261158","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9225041,-8.0292236],[-34.9219353,-8.0294068],[-34.9215531,-8.0295164]]}},{"type":"Feature","id":"way/317261159","properties":{"name":"Estrada do Encanamento","id":"way/317261159","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9152662,-8.0315351],[-34.9151366,-8.0315798],[-34.9150919,-8.0315952],[-34.9149614,-8.0316331],[-34.9147469,-8.0316968],[-34.9146966,-8.0317116],[-34.9146665,-8.0317204],[-34.914597,-8.0317454],[-34.9145342,-8.0317663],[-34.9140473,-8.0319243],[-34.913816,-8.0319965],[-34.9136357,-8.0320527],[-34.913547,-8.0320804]]}},{"type":"Feature","id":"way/317261160","properties":{"name":"Estrada do Encanamento","id":"way/317261160","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9129694,-8.0322678],[-34.9124883,-8.0324251],[-34.911911,-8.032614],[-34.911818,-8.0326444],[-34.9112033,-8.0328318],[-34.9105651,-8.0330448]]}},{"type":"Feature","id":"way/317261176","properties":{"name":"Rua Doutor Samuel Lins","id":"way/317261176","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9173497,-8.0340367],[-34.916935,-8.0335014]]}},{"type":"Feature","id":"way/317261179","properties":{"name":"Rua Ferreira Lopes","id":"way/317261179","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9108863,-8.0298516],[-34.9103533,-8.0285166]]}},{"type":"Feature","id":"way/317261185","properties":{"name":"Rua Guerra de Holanda","id":"way/317261185","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9242898,-8.0294137],[-34.9243754,-8.0296672],[-34.9244282,-8.0298016],[-34.9244622,-8.0298716],[-34.9245087,-8.0299344],[-34.9249493,-8.030352]]}},{"type":"Feature","id":"way/317261194","properties":{"name":"Rua da Harmonia","id":"way/317261194","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9152662,-8.0315351],[-34.9152962,-8.0316119],[-34.915498,-8.032128],[-34.9156127,-8.0323405]]}},{"type":"Feature","id":"way/317313979","properties":{"name":"Avenida Sebastião Salazar","id":"way/317313979","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8882352,-8.0105518],[-34.8881082,-8.0104743],[-34.8879594,-8.0103933],[-34.887659,-8.0102353],[-34.8874216,-8.0101304],[-34.8871681,-8.0100401],[-34.8868503,-8.009975],[-34.8865123,-8.0099498],[-34.8862151,-8.0099642],[-34.8860121,-8.0099976],[-34.8857237,-8.01006],[-34.8854944,-8.0101317],[-34.8853,-8.010218],[-34.8850437,-8.0103563],[-34.884797,-8.0105341]]}},{"type":"Feature","id":"way/317314009","properties":{"name":"Rua Doutor Alberto Wanderley","id":"way/317314009","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8882887,-8.0093536],[-34.8883298,-8.0089311],[-34.888352,-8.008878]]}},{"type":"Feature","id":"way/317314015","properties":{"name":"Avenida Cidade de Monteiro","id":"way/317314015","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.887917,-8.0085927],[-34.8879848,-8.0085978],[-34.8880291,-8.0085978],[-34.8880693,-8.0085793],[-34.8881051,-8.0085452],[-34.8881196,-8.0084976],[-34.8881316,-8.0084487]]}},{"type":"Feature","id":"way/317402241","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/317402241","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9191427,-8.0025407],[-34.9194084,-8.002377],[-34.9198079,-8.002183],[-34.9200779,-8.0020552],[-34.9203938,-8.0019203],[-34.9206979,-8.0017905],[-34.9210778,-8.0016283],[-34.9213073,-8.0014848],[-34.9215648,-8.0012909],[-34.9219,-8.0009688],[-34.9220315,-8.000842],[-34.9221586,-8.0007456],[-34.9222557,-8.0006951],[-34.922335,-8.0006558],[-34.9223873,-8.0006314]]}},{"type":"Feature","id":"way/317402246","properties":{"name":"Rotatória do Açude de Apipucos","id":"way/317402246","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9330433,-8.0183795],[-34.9330709,-8.0183656],[-34.9331256,-8.0183658],[-34.9331628,-8.0184024],[-34.9331712,-8.0184484],[-34.9331587,-8.0184902],[-34.9331426,-8.0185195],[-34.9331151,-8.0185415],[-34.9330803,-8.0185433],[-34.9330568,-8.018537],[-34.9330274,-8.0185219],[-34.9330144,-8.0184897],[-34.9330143,-8.0184526],[-34.9330218,-8.0184156],[-34.9330433,-8.0183795]]}},{"type":"Feature","id":"way/317402247","properties":{"name":"Rua Coronel João Batista do Rego Barros","id":"way/317402247","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9305556,-8.0162456],[-34.9309397,-8.0165668],[-34.9309517,-8.0165771]]}},{"type":"Feature","id":"way/318003837","properties":{"name":"Avenida General San Martin","id":"way/318003837","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9295584,-8.0733378],[-34.9296281,-8.0735132],[-34.9299547,-8.0742342],[-34.9302267,-8.0749344],[-34.9302652,-8.0750587],[-34.9302777,-8.0751337]]}},{"type":"Feature","id":"way/318121911","properties":{"name":"Avenida Professor José dos Anjos","id":"way/318121911","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8830176,-8.024272],[-34.88416,-8.0247736],[-34.8850022,-8.0252343],[-34.8850851,-8.0252784],[-34.8853627,-8.0254259],[-34.8856232,-8.0255643],[-34.8859061,-8.0257489],[-34.886133,-8.0259313],[-34.8869018,-8.0264474],[-34.887542,-8.0268625],[-34.887991,-8.0270938]]}},{"type":"Feature","id":"way/318205720","properties":{"name":"Rua Amaro Coutinho","id":"way/318205720","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8951537,-8.0332536],[-34.8952054,-8.0332119],[-34.895269,-8.0331614],[-34.8954997,-8.0330044],[-34.8959068,-8.032754],[-34.8959693,-8.0327156]]}},{"type":"Feature","id":"way/318227908","properties":{"name":"Rua da Aurora","id":"way/318227908","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8808238,-8.0607787],[-34.8800797,-8.0596237],[-34.8800539,-8.0595836],[-34.8800006,-8.0595009]]}},{"type":"Feature","id":"way/318738696","properties":{"name":"Rua Carlos Gomes","id":"way/318738696","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9119362,-8.0589791],[-34.9121373,-8.0592288],[-34.9121496,-8.0592533],[-34.9121921,-8.0593584],[-34.9122845,-8.0595868],[-34.9124446,-8.060189],[-34.9124928,-8.0603444],[-34.912582,-8.0606207],[-34.9126446,-8.0608436],[-34.9127071,-8.0610469],[-34.9127626,-8.061257],[-34.9128396,-8.0615024],[-34.9129399,-8.0618548],[-34.9130317,-8.0622003],[-34.9130843,-8.0623953],[-34.9130998,-8.0624566]]}},{"type":"Feature","id":"way/318869508","properties":{"name":"Avenida Afonso Olindense","id":"way/318869508","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9557636,-8.031368],[-34.9557832,-8.0314238],[-34.9558117,-8.031533],[-34.9558333,-8.0316311],[-34.9558447,-8.031746],[-34.9558407,-8.0318748],[-34.9558273,-8.0320408],[-34.9558172,-8.0320895],[-34.955779,-8.0322732],[-34.9557187,-8.0325208],[-34.9556731,-8.0326424],[-34.9555872,-8.0328017],[-34.9554852,-8.0329315],[-34.9553001,-8.0331986]]}},{"type":"Feature","id":"way/318895501","properties":{"name":"Rua Couto Magalhães","id":"way/318895501","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.894455,-8.0304295],[-34.8945263,-8.0304262],[-34.8947515,-8.0304189]]}},{"type":"Feature","id":"way/318895503","properties":{"name":"Avenida Professor José dos Anjos","id":"way/318895503","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8951757,-8.0282599],[-34.8950578,-8.0282521]]}},{"type":"Feature","id":"way/318895504","properties":{"name":"Avenida Professor José dos Anjos","id":"way/318895504","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.894797,-8.0282372],[-34.8943027,-8.0281972],[-34.8940742,-8.0281661],[-34.8935263,-8.0281154],[-34.8931684,-8.0280943],[-34.8931174,-8.0280915],[-34.8929106,-8.0280789]]}},{"type":"Feature","id":"way/319293361","properties":{"name":"Rua General Edson Amâncio Ramalho","id":"way/319293361","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9015918,-8.1271073],[-34.9015539,-8.1267079],[-34.901532,-8.1262675],[-34.9014707,-8.1254445],[-34.9014624,-8.125322],[-34.9014293,-8.1248617],[-34.9014125,-8.1246031],[-34.901411,-8.124581],[-34.9014042,-8.124483],[-34.9013989,-8.1244213],[-34.9013698,-8.1239332],[-34.9013315,-8.1234962],[-34.9013248,-8.1234306],[-34.901318,-8.1233628],[-34.9013119,-8.1232926],[-34.9012018,-8.1220431],[-34.901175,-8.1215465],[-34.901174,-8.1215332],[-34.901159,-8.1213724]]}},{"type":"Feature","id":"way/319293365","properties":{"name":"Avenida Pinheiros","id":"way/319293365","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9155941,-8.0905499],[-34.9162073,-8.0906098],[-34.9165678,-8.0906947],[-34.9167569,-8.0907624],[-34.9170721,-8.0909589],[-34.9172303,-8.0911143],[-34.9173966,-8.091344],[-34.9176423,-8.0919505],[-34.9178671,-8.0925146],[-34.9180423,-8.0930081]]}},{"type":"Feature","id":"way/319318739","properties":{"name":"Ponte Buarque de Macedo","id":"way/319318739","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8764167,-8.0616331],[-34.8765324,-8.0616035]]}},{"type":"Feature","id":"way/319318740","properties":{"name":"Ponte Conde Maurício de Nassau","id":"way/319318740","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8745145,-8.0637775],[-34.8745087,-8.0637768],[-34.874436,-8.0637652]]}},{"type":"Feature","id":"way/319318741","properties":{"name":"Ponte Conde Maurício de Nassau","id":"way/319318741","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8761431,-8.0640692],[-34.8745145,-8.0637775]]}},{"type":"Feature","id":"way/319318746","properties":{"name":"Ponte Princesa Isabel","id":"way/319318746","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8787932,-8.060271],[-34.8787695,-8.0602847]]}},{"type":"Feature","id":"way/319318748","properties":{"name":"Ponte da Boa Vista","id":"way/319318748","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8825186,-8.0634095],[-34.8823824,-8.0634517]]}},{"type":"Feature","id":"way/319318749","properties":{"name":"Ponte da Boa Vista","id":"way/319318749","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8823824,-8.0634517],[-34.8810822,-8.063806]]}},{"type":"Feature","id":"way/319318752","properties":{"name":"Rua Nova","id":"way/319318752","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8803481,-8.0640381],[-34.8793667,-8.064307],[-34.8791896,-8.0643545],[-34.8787819,-8.0644703],[-34.8786958,-8.0644763],[-34.8786482,-8.064471],[-34.8786132,-8.0644661]]}},{"type":"Feature","id":"way/319476043","properties":{"name":"Avenida Dantas Barreto","id":"way/319476043","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8834029,-8.0712793],[-34.8840813,-8.072108],[-34.8841302,-8.0721678],[-34.8841674,-8.0722132]]}},{"type":"Feature","id":"way/319476046","properties":{"name":"Avenida Dantas Barreto","id":"way/319476046","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8834029,-8.0712793],[-34.8825242,-8.0701955],[-34.8824441,-8.0700988]]}},{"type":"Feature","id":"way/320212004","properties":{"name":"Rua Barão de São Borja","id":"way/320212004","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8879481,-8.0619834],[-34.887979,-8.0619641],[-34.8881363,-8.0618528],[-34.8888196,-8.0613097],[-34.8890298,-8.0611509],[-34.8895688,-8.0607379],[-34.8899241,-8.060451],[-34.8899684,-8.0604173]]}},{"type":"Feature","id":"way/320212005","properties":{"name":"Rua Doutor Carlos Chagas","id":"way/320212005","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8896203,-8.0477566],[-34.889721,-8.0478139],[-34.8897562,-8.0478504],[-34.8898089,-8.0479263]]}},{"type":"Feature","id":"way/320810719","properties":{"name":"Rua Pampulha","id":"way/320810719","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9159701,-8.1093237],[-34.9152183,-8.1094537],[-34.9144602,-8.1095773],[-34.913682,-8.1097144]]}},{"type":"Feature","id":"way/328629872","properties":{"name":"Avenida Queixeramobim","id":"way/328629872","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9541087,-8.1222004],[-34.9540234,-8.1221757],[-34.9539658,-8.1221511],[-34.9538902,-8.1221214],[-34.9538274,-8.1220932],[-34.9537435,-8.1220498],[-34.9537325,-8.1220428]]}},{"type":"Feature","id":"way/339199758","properties":{"name":"Avenida República Árabe Unida","id":"way/339199758","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8885884,-8.0872606],[-34.8886261,-8.0872188],[-34.8886559,-8.0871796],[-34.8888275,-8.0869543]]}},{"type":"Feature","id":"way/358981364","properties":{"name":"Rua do Apolo","id":"way/358981364","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8731726,-8.0625725],[-34.8731449,-8.0625207],[-34.8731217,-8.06249],[-34.8731013,-8.0624603],[-34.8729263,-8.0622485]]}},{"type":"Feature","id":"way/359667808","properties":{"name":"Avenida General Mac Artur","id":"way/359667808","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9016075,-8.1126356],[-34.9016642,-8.1126088]]}},{"type":"Feature","id":"way/365099345","properties":{"name":"Rua Primavera","id":"way/365099345","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8720657,-8.0559111],[-34.8713026,-8.0559962],[-34.8712737,-8.056],[-34.8705778,-8.0560911]]}},{"type":"Feature","id":"way/365099346","properties":{"name":"Avenida Militar","id":"way/365099346","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8699893,-8.0551324],[-34.8700482,-8.0551358],[-34.8700836,-8.0551361],[-34.8701273,-8.0551368],[-34.8701833,-8.0551362],[-34.8702263,-8.055122],[-34.8702665,-8.0550944],[-34.8703205,-8.0550316],[-34.8704056,-8.0549327],[-34.8704807,-8.0548676],[-34.8705448,-8.0548118],[-34.8706461,-8.054736]]}},{"type":"Feature","id":"way/365099351","properties":{"name":"Travessa do Amorim","id":"way/365099351","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8734122,-8.0654182],[-34.8727246,-8.0653145],[-34.8724124,-8.0652643]]}},{"type":"Feature","id":"way/365099352","properties":{"name":"Rua dos Arrecifes","id":"way/365099352","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8727724,-8.0650246],[-34.8724515,-8.0649633],[-34.872362,-8.0649424],[-34.8723265,-8.064932],[-34.8722611,-8.0649801]]}},{"type":"Feature","id":"way/365099353","properties":{"name":"Rua Edgar Werneck","id":"way/365099353","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8702284,-8.057948],[-34.8707384,-8.0578826]]}},{"type":"Feature","id":"way/365099354","properties":{"name":"Rua de São Jorge","id":"way/365099354","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8700861,-8.0562622],[-34.870072,-8.0562406],[-34.870064,-8.0562084],[-34.8700761,-8.0561374],[-34.870117,-8.0560026],[-34.8701331,-8.055982]]}},{"type":"Feature","id":"way/365099355","properties":{"name":"Rua da Assembleia","id":"way/365099355","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8725005,-8.0641865],[-34.8725683,-8.0638536]]}},{"type":"Feature","id":"way/366223352","properties":{"name":"Rua da Assembleia","id":"way/366223352","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8723265,-8.064932],[-34.8723369,-8.0648883],[-34.8723476,-8.0648455],[-34.87236,-8.0648061],[-34.8723696,-8.0647602],[-34.8724232,-8.0645132],[-34.8725005,-8.0641865]]}},{"type":"Feature","id":"way/366223353","properties":{"name":"Rua Tomazina","id":"way/366223353","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8725005,-8.0641865],[-34.8726989,-8.0642217],[-34.8729041,-8.0642542],[-34.8731815,-8.064254],[-34.873574,-8.0642516]]}},{"type":"Feature","id":"way/366223354","properties":{"name":"Rua da Guia","id":"way/366223354","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8714395,-8.0606439],[-34.8715317,-8.0609454],[-34.871591,-8.0611393],[-34.871639,-8.0612652]]}},{"type":"Feature","id":"way/366223355","properties":{"name":"Rua Barão Rodrigues Mendes","id":"way/366223355","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.871639,-8.0612652],[-34.8713731,-8.0613733],[-34.8711011,-8.0614839]]}},{"type":"Feature","id":"way/366223356","properties":{"name":"Rua do Bom Jesus","id":"way/366223356","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8711011,-8.0614839],[-34.8714938,-8.0623488],[-34.8715843,-8.0625431],[-34.8716038,-8.0625851],[-34.8716148,-8.0626007],[-34.8716376,-8.062633],[-34.871657,-8.0626554],[-34.871679,-8.0626768],[-34.8719385,-8.0629298],[-34.872259,-8.0632968],[-34.8723372,-8.0633798]]}},{"type":"Feature","id":"way/367047410","properties":{"name":"Travessa do Apolo","id":"way/367047410","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8729263,-8.0622485],[-34.8729525,-8.0622329],[-34.8735512,-8.0618769]]}},{"type":"Feature","id":"way/367047411","properties":{"name":"Rua Itaiópolis","id":"way/367047411","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8723687,-8.0624918],[-34.8728786,-8.0621987]]}},{"type":"Feature","id":"way/367047412","properties":{"name":"Rua do Apolo","id":"way/367047412","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8729263,-8.0622485],[-34.8728786,-8.0621987],[-34.8727553,-8.0620719],[-34.872729,-8.0620403],[-34.8726922,-8.0619962],[-34.872654,-8.0619458],[-34.8726071,-8.0618774],[-34.8723472,-8.0614781],[-34.872188,-8.0612433],[-34.8720995,-8.0611112],[-34.8720531,-8.0610369],[-34.8719653,-8.060912],[-34.8719106,-8.0608295],[-34.8718748,-8.0607594],[-34.8718446,-8.0606775],[-34.8718031,-8.0605382]]}},{"type":"Feature","id":"way/367047413","properties":{"name":"Praça do Arsenal","id":"way/367047413","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8709795,-8.0609831],[-34.8709537,-8.0609913],[-34.8705504,-8.0611197]]}},{"type":"Feature","id":"way/367047414","properties":{"name":"Rua da Guia","id":"way/367047414","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.871639,-8.0612652],[-34.871674,-8.0613333],[-34.8719538,-8.0617959],[-34.8720993,-8.062039],[-34.8721886,-8.0621857],[-34.8722093,-8.0622155],[-34.8722159,-8.0622266],[-34.8722214,-8.0622367],[-34.8722797,-8.0623387],[-34.8723687,-8.0624918]]}},{"type":"Feature","id":"way/367047415","properties":{"name":"Rua do Bom Jesus","id":"way/367047415","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8711011,-8.0614839],[-34.8710901,-8.0614391],[-34.8710783,-8.0613909],[-34.8710424,-8.0612447],[-34.8710114,-8.0611157],[-34.8709992,-8.0610652],[-34.8709795,-8.0609831]]}},{"type":"Feature","id":"way/367517837","properties":{"name":"Rua Benfica","id":"way/367517837","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9014048,-8.0624831],[-34.9014488,-8.0624524],[-34.9014786,-8.0624287],[-34.9015072,-8.062407],[-34.9015257,-8.0623912],[-34.9015565,-8.0623713],[-34.9018277,-8.0622366],[-34.9018566,-8.0622346],[-34.901913,-8.0622273]]}},{"type":"Feature","id":"way/367517838","properties":{"name":"Rua Doutor José Mariano","id":"way/367517838","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8825186,-8.0634095],[-34.8824843,-8.0633562],[-34.8820056,-8.0626132],[-34.8818853,-8.0624264],[-34.8817297,-8.0621849],[-34.881708,-8.0621512],[-34.8816595,-8.0620738]]}},{"type":"Feature","id":"way/367541709","properties":{"name":"Rua Vigário Tenório","id":"way/367541709","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.874436,-8.0637652],[-34.8742741,-8.0639952],[-34.8742405,-8.0640112],[-34.8742023,-8.0640192],[-34.873852,-8.0640044],[-34.8736061,-8.0639714]]}},{"type":"Feature","id":"way/367630237","properties":{"name":"Beco do Estudante","id":"way/367630237","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8876826,-8.057153],[-34.888387,-8.058372]]}},{"type":"Feature","id":"way/367645794","properties":{"name":"Rua Paulino Câmara","id":"way/367645794","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8838766,-8.0470779],[-34.8830294,-8.0477104]]}},{"type":"Feature","id":"way/367994064","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/367994064","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9106925,-8.0909488],[-34.9108955,-8.0918377],[-34.9110003,-8.0923119],[-34.9111048,-8.0927816]]}},{"type":"Feature","id":"way/367994067","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/367994067","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9168943,-8.0956384],[-34.9169287,-8.0957917],[-34.9170304,-8.0962449],[-34.9171894,-8.0969129]]}},{"type":"Feature","id":"way/367994070","properties":{"name":"Rua Padre Carlos Leôncio","id":"way/367994070","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9147419,-8.0967744],[-34.9146995,-8.0965529]]}},{"type":"Feature","id":"way/368075236","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/368075236","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8898546,-8.044284],[-34.8892427,-8.0439396],[-34.8876612,-8.0432149],[-34.8868391,-8.0428481]]}},{"type":"Feature","id":"way/369013591","properties":{"name":"Avenida João de Barros","id":"way/369013591","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8899818,-8.0458444],[-34.8899493,-8.0462412],[-34.8899257,-8.0465293],[-34.8898645,-8.0471835],[-34.8898089,-8.0479263]]}},{"type":"Feature","id":"way/369014580","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/369014580","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9132063,-8.0923026],[-34.9124211,-8.0924946],[-34.9117693,-8.0926359],[-34.9111048,-8.0927816]]}},{"type":"Feature","id":"way/369612034","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/369612034","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8746616,-8.0371919],[-34.8745607,-8.0374086],[-34.8745241,-8.0374901]]}},{"type":"Feature","id":"way/369613413","properties":{"name":"Avenida Agostinho Gomes","id":"way/369613413","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.89234,-8.0724161],[-34.8930051,-8.0724066],[-34.8932396,-8.0723913],[-34.8934047,-8.0723879]]}},{"type":"Feature","id":"way/371666445","properties":{"name":"Rua Padre Roma","id":"way/371666445","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9054715,-8.034135],[-34.9055935,-8.0340779],[-34.9056619,-8.0340792],[-34.9057183,-8.0341031],[-34.9057773,-8.0341562],[-34.9058149,-8.0341964],[-34.905867,-8.0342596]]}},{"type":"Feature","id":"way/372986496","properties":{"name":"Rua Édson Alvares","id":"way/372986496","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9183748,-8.0333109],[-34.9181027,-8.033493],[-34.9178852,-8.0336463],[-34.917756,-8.0337373],[-34.9175971,-8.0338544],[-34.9173497,-8.0340367]]}},{"type":"Feature","id":"way/374136668","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/374136668","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8691637,-8.0499312],[-34.8693099,-8.0498774],[-34.8693797,-8.0498356],[-34.8694674,-8.0497571]]}},{"type":"Feature","id":"way/374136672","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/374136672","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8692416,-8.0560574],[-34.8692925,-8.0559737],[-34.8693274,-8.0558861],[-34.8693556,-8.0556948],[-34.8693652,-8.0554458],[-34.8693757,-8.0551717],[-34.8693918,-8.0547813],[-34.8694092,-8.0545276],[-34.8695058,-8.0532144],[-34.8695299,-8.0529461],[-34.8695527,-8.052735],[-34.8695822,-8.0524668],[-34.8696479,-8.0515651],[-34.8697136,-8.0507312],[-34.8697096,-8.050471],[-34.8696788,-8.0503661],[-34.8695929,-8.0502293],[-34.8694588,-8.0500978],[-34.8693253,-8.0500171],[-34.8691637,-8.0499312]]}},{"type":"Feature","id":"way/374136677","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/374136677","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8681177,-8.0528466],[-34.8687327,-8.0528883],[-34.8690096,-8.0529092],[-34.8695299,-8.0529461],[-34.8696265,-8.0529568]]}},{"type":"Feature","id":"way/374136679","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/374136679","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.869546,-8.0498389],[-34.8696949,-8.0501855],[-34.8697633,-8.0503886],[-34.8697767,-8.0505241],[-34.8697477,-8.0512042],[-34.869668,-8.0525876],[-34.8696587,-8.0527005],[-34.8696372,-8.0528572],[-34.8696265,-8.0529568],[-34.8696037,-8.0532223],[-34.8695031,-8.0546565],[-34.8694924,-8.0547839],[-34.8694503,-8.0554545],[-34.8694454,-8.0555541],[-34.8694186,-8.0558051],[-34.8694059,-8.0558841],[-34.8693797,-8.0559581],[-34.8693529,-8.0559986],[-34.8693083,-8.0560305],[-34.8692416,-8.0560574]]}},{"type":"Feature","id":"way/374136680","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/374136680","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8681713,-8.0474968],[-34.8677743,-8.0466147],[-34.8676913,-8.0464302],[-34.8676443,-8.0463611],[-34.8675732,-8.0463266],[-34.8674753,-8.0463425],[-34.8673426,-8.0464063],[-34.8673211,-8.0464501],[-34.8673144,-8.0465178],[-34.8678133,-8.047628]]}},{"type":"Feature","id":"way/374136681","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/374136681","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8692416,-8.0560574],[-34.8690461,-8.0561268],[-34.8689687,-8.0561556],[-34.8688272,-8.0562087],[-34.8687313,-8.0562492],[-34.8685757,-8.056305],[-34.8684604,-8.0563488],[-34.8684181,-8.0563349],[-34.8683906,-8.056303],[-34.8683544,-8.0562054],[-34.8679648,-8.0550229],[-34.8679353,-8.0548583],[-34.8679353,-8.0547282],[-34.8679434,-8.0546432],[-34.8679742,-8.0543431],[-34.8681177,-8.0528466],[-34.8681365,-8.0526753],[-34.8681472,-8.0525743],[-34.8682129,-8.0517179],[-34.8682403,-8.0504765],[-34.8682939,-8.0499719],[-34.8683154,-8.0498229],[-34.8683047,-8.0497329],[-34.8682242,-8.0494938],[-34.8676395,-8.0482137],[-34.8675376,-8.0479747],[-34.8674652,-8.0477875],[-34.8675483,-8.047741],[-34.8676658,-8.0476864],[-34.8678133,-8.047628],[-34.8681713,-8.0474968]]}},{"type":"Feature","id":"way/374136682","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/374136682","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8691637,-8.0499312],[-34.8683154,-8.0498229]]}},{"type":"Feature","id":"way/374690787","properties":{"name":"Rua Paula Batista","id":"way/374690787","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9151622,-8.0249352],[-34.9149945,-8.0244027],[-34.9148568,-8.023887]]}},{"type":"Feature","id":"way/374896669","properties":{"name":"Rua Sebastião Alves","id":"way/374896669","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9069198,-8.0325188],[-34.9062857,-8.0318284],[-34.9060467,-8.0315772],[-34.9059222,-8.0314464],[-34.9055403,-8.0310451],[-34.905474,-8.0309766]]}},{"type":"Feature","id":"way/374896671","properties":{"name":"Rua Padre Roma","id":"way/374896671","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9071993,-8.032805],[-34.907282,-8.0325967]]}},{"type":"Feature","id":"way/374897775","properties":{"name":"Rua General Abreu e Lima","id":"way/374897775","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8986017,-8.0324213],[-34.8983588,-8.0320399]]}},{"type":"Feature","id":"way/375748427","properties":{"name":"Avenida Beira Rio","id":"way/375748427","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9050879,-8.0432406],[-34.9051282,-8.0430055],[-34.9051443,-8.0428409],[-34.905159,-8.0425925],[-34.9051684,-8.04208],[-34.9051698,-8.0416643],[-34.9051939,-8.0413961],[-34.9052234,-8.0411823],[-34.9052864,-8.0409366],[-34.9054071,-8.0406166],[-34.9054688,-8.0405011],[-34.9054983,-8.0404785],[-34.9055332,-8.0404639],[-34.9055815,-8.0404586]]}},{"type":"Feature","id":"way/377679152","properties":{"name":"Rua General Labatut","id":"way/377679152","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9026292,-8.00009],[-34.9027179,-8.0000313],[-34.9028663,-7.9999404],[-34.903034,-7.9998336],[-34.9032034,-7.9997266],[-34.9033829,-7.9995944]]}},{"type":"Feature","id":"way/377688669","properties":{"name":"Rua Monte Pavão","id":"way/377688669","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9315916,-8.0129804],[-34.9315677,-8.012976],[-34.9314487,-8.0129365],[-34.9312797,-8.012878],[-34.9311214,-8.0128138],[-34.9310598,-8.0127745],[-34.9310088,-8.0127147],[-34.9309216,-8.0126217],[-34.9305421,-8.0121875],[-34.9303342,-8.0119431]]}},{"type":"Feature","id":"way/377690565","properties":{"name":"Rua Cancuele","id":"way/377690565","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9230614,-8.0221289],[-34.9230158,-8.021939],[-34.9230011,-8.0218699],[-34.9229964,-8.0218049],[-34.9229972,-8.0216141],[-34.9229658,-8.0215197],[-34.9228636,-8.0211594],[-34.9228542,-8.0211302],[-34.9228462,-8.021115],[-34.9228371,-8.0211043],[-34.9228241,-8.0210964],[-34.922808,-8.0210966]]}},{"type":"Feature","id":"way/378796315","properties":{"name":"Ciclovia do Pier do Ciclista","id":"way/378796315","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8757405,-8.07128],[-34.875929,-8.0713551],[-34.8758539,-8.0715144],[-34.8773953,-8.0721327],[-34.8774236,-8.0721441],[-34.8774471,-8.0721518],[-34.8774478,-8.0721733],[-34.8774263,-8.0721759],[-34.8774069,-8.0721571],[-34.8773953,-8.0721327]]}},{"type":"Feature","id":"way/378796328","properties":{"name":"Rua Vinte e Um de Abril","id":"way/378796328","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9283838,-8.0711589],[-34.9281467,-8.0712493],[-34.9279625,-8.0713196],[-34.9277271,-8.0714069],[-34.9274918,-8.0714942],[-34.9271364,-8.0716297],[-34.926789,-8.0717684],[-34.9264857,-8.0718878],[-34.9264256,-8.0719114],[-34.9263116,-8.0719563],[-34.9260373,-8.0720532],[-34.9258643,-8.0721236],[-34.9258269,-8.0721385]]}},{"type":"Feature","id":"way/378796334","properties":{"name":"Rua Marquês de Abrantes","id":"way/378796334","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8839166,-8.0313038],[-34.8843044,-8.0314523],[-34.8845697,-8.0315853],[-34.8852405,-8.0319217]]}},{"type":"Feature","id":"way/378796337","properties":{"name":"Avenida República Árabe Unida","id":"way/378796337","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8890005,-8.086787],[-34.8894319,-8.0863399],[-34.8899925,-8.0857252],[-34.8900357,-8.0856794]]}},{"type":"Feature","id":"way/378796340","properties":{"name":"Rua José Veloso","id":"way/378796340","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9273381,-8.0656712],[-34.9270032,-8.0658357],[-34.9269608,-8.0658546]]}},{"type":"Feature","id":"way/378796343","properties":{"name":"Rua Comendador Franco Ferreira","id":"way/378796343","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9269608,-8.0658546],[-34.9268509,-8.0654896]]}},{"type":"Feature","id":"way/378796344","properties":{"name":"Rua Visconde de Pelotas","id":"way/378796344","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9091945,-8.076991],[-34.909253,-8.0772551],[-34.9093116,-8.0775597]]}},{"type":"Feature","id":"way/378796346","properties":{"name":"Rua Marquês de Abrantes","id":"way/378796346","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8816042,-8.0306559],[-34.8820181,-8.0307389],[-34.8824955,-8.0308403],[-34.8829463,-8.0309457],[-34.8839166,-8.0313038]]}},{"type":"Feature","id":"way/378952991","properties":{"name":"Estrada do Encanamento","id":"way/378952991","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.913547,-8.0320804],[-34.9130369,-8.0322459],[-34.9129694,-8.0322678]]}},{"type":"Feature","id":"way/379236486","properties":{"name":"Rua Eugênio Samico","id":"way/379236486","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9162378,-8.0226623],[-34.9159484,-8.0228816],[-34.9156579,-8.0231249],[-34.9156198,-8.0231645],[-34.9155755,-8.0232164],[-34.9154306,-8.0233673]]}},{"type":"Feature","id":"way/379437828","properties":{"name":"Rua do Bom Pastor","id":"way/379437828","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.940428,-8.0468016],[-34.9404583,-8.0468919],[-34.9404681,-8.0469306]]}},{"type":"Feature","id":"way/379623676","properties":{"name":"Rua Mauricéia","id":"way/379623676","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9420347,-8.046156],[-34.9421521,-8.0461527],[-34.9422788,-8.04616],[-34.9424075,-8.0461739],[-34.9430077,-8.0462211],[-34.9438724,-8.0463023]]}},{"type":"Feature","id":"way/379647570","properties":{"name":"Rua Laurindo Rodrigues Campelo","id":"way/379647570","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9415499,-8.0482547],[-34.9411543,-8.0483039],[-34.9407471,-8.0483441]]}},{"type":"Feature","id":"way/382147744","properties":{"name":"Avenida Professor José dos Anjos","id":"way/382147744","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8980577,-8.0268476],[-34.8979292,-8.0269027],[-34.8977494,-8.0269799],[-34.897288,-8.0272057],[-34.8966262,-8.027557],[-34.8960996,-8.0278385],[-34.8958015,-8.0279859],[-34.8955044,-8.0281167],[-34.8953212,-8.0281965],[-34.8951757,-8.0282599]]}},{"type":"Feature","id":"way/382147746","properties":{"name":"Avenida Professor José dos Anjos","id":"way/382147746","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8929603,-8.0277595],[-34.8938182,-8.0278344],[-34.8944776,-8.0278728],[-34.8949771,-8.0279122],[-34.895111,-8.0279141],[-34.8951283,-8.0279111],[-34.895148,-8.0279076],[-34.8952521,-8.0278828],[-34.8953782,-8.0278321],[-34.8955789,-8.0277516],[-34.8959002,-8.027569]]}},{"type":"Feature","id":"way/382147747","properties":{"name":"Avenida Professor José dos Anjos","id":"way/382147747","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8891988,-8.0278325],[-34.889169,-8.0278304],[-34.8891486,-8.0278285],[-34.8888154,-8.0277901],[-34.8885136,-8.0277342],[-34.8882826,-8.0276766],[-34.8880251,-8.0275962],[-34.887722,-8.02745],[-34.8873659,-8.0272427],[-34.8865516,-8.0266961],[-34.8862386,-8.0264716],[-34.8860329,-8.0263241],[-34.8856131,-8.0260427],[-34.8851873,-8.0257736],[-34.8848737,-8.0256096],[-34.883499,-8.0249814],[-34.8831132,-8.0248104],[-34.8829244,-8.0247313],[-34.8828608,-8.0247006]]}},{"type":"Feature","id":"way/383703855","properties":{"name":"Rua Bione","id":"way/383703855","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8716517,-8.0584344],[-34.8716624,-8.0584318],[-34.8718262,-8.0583994],[-34.8718422,-8.0583962],[-34.8723991,-8.0583054]]}},{"type":"Feature","id":"way/383703856","properties":{"name":"Rua Bione","id":"way/383703856","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8716517,-8.0584344],[-34.871632,-8.0584387],[-34.8714116,-8.0584873],[-34.8711109,-8.0585607],[-34.8708306,-8.0586362]]}},{"type":"Feature","id":"way/383703857","properties":{"name":"Rua do Brum","id":"way/383703857","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8717463,-8.0591351],[-34.8717393,-8.0590913],[-34.8716517,-8.0584344]]}},{"type":"Feature","id":"way/383928633","properties":{"name":"Rua Doutor João Vieira de Menezes","id":"way/383928633","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8785663,-8.0515989],[-34.8786286,-8.0515546],[-34.8791118,-8.0512109],[-34.8793498,-8.0510414],[-34.8794361,-8.0509799]]}},{"type":"Feature","id":"way/385480476","properties":{"name":"Rua Barão de Igarassu","id":"way/385480476","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8756433,-8.0441487],[-34.8756582,-8.0441756],[-34.8758653,-8.0445114],[-34.8760372,-8.0447569],[-34.8764403,-8.0453009]]}},{"type":"Feature","id":"way/385480480","properties":{"name":"Rua Buarque de Macedo","id":"way/385480480","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.877022,-8.0449064],[-34.8773794,-8.0451846],[-34.877536,-8.0453],[-34.8778377,-8.0455445],[-34.87805,-8.0457141],[-34.8783118,-8.0459296],[-34.8786254,-8.0461945],[-34.878634,-8.0462018]]}},{"type":"Feature","id":"way/385480539","properties":{"name":"Rua Leão Falcão","id":"way/385480539","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8764403,-8.0453009],[-34.8761798,-8.0454947],[-34.8759937,-8.0456268],[-34.8757245,-8.0458087]]}},{"type":"Feature","id":"way/385586307","properties":{"id":"way/385586307","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8690461,-8.0561268],[-34.86856,-8.0546964]]}},{"type":"Feature","id":"way/385586308","properties":{"id":"way/385586308","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8687327,-8.0528883],[-34.8686078,-8.0547028]]}},{"type":"Feature","id":"way/385586309","properties":{"id":"way/385586309","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8690064,-8.0570059],[-34.869322,-8.0578845],[-34.8695182,-8.0584825],[-34.8695237,-8.0585297],[-34.869513,-8.0585615],[-34.8694896,-8.0585893],[-34.8692467,-8.0586682]]}},{"type":"Feature","id":"way/385586310","properties":{"id":"way/385586310","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8684604,-8.0563488],[-34.8692467,-8.0586682],[-34.8695773,-8.0596796]]}},{"type":"Feature","id":"way/385586311","properties":{"id":"way/385586311","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8679434,-8.0546432],[-34.86856,-8.0546964],[-34.8686078,-8.0547028],[-34.8693918,-8.0547813],[-34.8694924,-8.0547839]]}},{"type":"Feature","id":"way/389036486","properties":{"id":"way/389036486","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8682129,-8.0517179],[-34.8682934,-8.0517803],[-34.8683243,-8.0518115],[-34.8683377,-8.051844],[-34.8683424,-8.0519018],[-34.8683239,-8.0521117]]}},{"type":"Feature","id":"way/389036490","properties":{"id":"way/389036490","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8690096,-8.0529092],[-34.8689418,-8.0527516],[-34.8688962,-8.0526972],[-34.8688359,-8.052658],[-34.8687695,-8.0526381],[-34.8685992,-8.0526208]]}},{"type":"Feature","id":"way/394440710","properties":{"name":"Via Mangue - Pista Leste","id":"way/394440710","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8916162,-8.0888534],[-34.8915488,-8.0887296],[-34.8914925,-8.0886519],[-34.8914513,-8.0886011],[-34.8913741,-8.0885311],[-34.8913168,-8.0884843],[-34.8912374,-8.0884358],[-34.891121,-8.0883884],[-34.891003,-8.0883525],[-34.8908555,-8.0883399],[-34.8906979,-8.0883366],[-34.89037,-8.0883286],[-34.8902218,-8.0883187],[-34.8901206,-8.0883094],[-34.8899948,-8.0882961],[-34.8899298,-8.0882861]]}},{"type":"Feature","id":"way/394453156","properties":{"id":"way/394453156","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9169612,-8.1311252],[-34.9169849,-8.1311082],[-34.9170003,-8.131077],[-34.9170734,-8.1308102],[-34.9170964,-8.1307872],[-34.9171244,-8.1307783],[-34.9177238,-8.1308918],[-34.9177453,-8.1309184],[-34.917752,-8.1309595],[-34.9176349,-8.1313745]]}},{"type":"Feature","id":"way/394895328","properties":{"name":"Rua Itacoatiara","id":"way/394895328","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9168614,-8.0202576],[-34.9167267,-8.0202991],[-34.9161579,-8.0205],[-34.9159195,-8.0205891],[-34.9158652,-8.0206063],[-34.915794,-8.0206223],[-34.9157302,-8.0206229],[-34.9156352,-8.0206356]]}},{"type":"Feature","id":"way/430125553","properties":{"name":"Rua Conceição de Macabu","id":"way/430125553","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8958507,-8.0729966],[-34.8958484,-8.0729831],[-34.8958501,-8.0729629],[-34.8958544,-8.0729504],[-34.8958623,-8.0729389],[-34.8958894,-8.0729107]]}},{"type":"Feature","id":"way/436084863","properties":{"name":"Rua da Soledade","id":"way/436084863","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.889947,-8.0574605],[-34.8899482,-8.0565708],[-34.8899388,-8.0564351],[-34.8899093,-8.0563118],[-34.889876,-8.0562468]]}},{"type":"Feature","id":"way/443276363","properties":{"name":"Rua Primeiro de Março","id":"way/443276363","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8768645,-8.0641842],[-34.8774731,-8.0642833]]}},{"type":"Feature","id":"way/443630585","properties":{"name":"Rua Quitério Inácio de Melo","id":"way/443630585","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.90886,-8.0823314],[-34.9088383,-8.0824811],[-34.908839,-8.0825614],[-34.9088498,-8.0826707]]}},{"type":"Feature","id":"way/447007106","properties":{"name":"Avenida Engenho Muribeca","id":"way/447007106","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9503697,-8.1104157],[-34.9504793,-8.1104396],[-34.9510422,-8.1105461],[-34.9510754,-8.110551],[-34.9514063,-8.1106092],[-34.9517421,-8.1106773],[-34.9520694,-8.1107436],[-34.9520851,-8.1107504],[-34.9520989,-8.1107586],[-34.9521141,-8.11077],[-34.9521238,-8.1107838],[-34.9521284,-8.1107954],[-34.9521369,-8.1108296]]}},{"type":"Feature","id":"way/460423889","properties":{"name":"Rua Ministro João Alberto","id":"way/460423889","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9446009,-8.0353195],[-34.944866,-8.0360651]]}},{"type":"Feature","id":"way/460423890","properties":{"name":"Avenida Historiador Jordão Emerenciano","id":"way/460423890","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9430763,-8.0368621],[-34.9430732,-8.0366829],[-34.943071,-8.0365329],[-34.9430588,-8.0362975],[-34.9430528,-8.0361504]]}},{"type":"Feature","id":"way/466073067","properties":{"name":"Travessa José Frigueiro","id":"way/466073067","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9412361,-8.0477588],[-34.9413199,-8.0478982],[-34.9414084,-8.0480469],[-34.9415499,-8.0482547],[-34.9417021,-8.0483995],[-34.9418999,-8.0486],[-34.942034,-8.0487002],[-34.9420716,-8.0487201],[-34.9425356,-8.0489764]]}},{"type":"Feature","id":"way/466701030","properties":{"name":"Via Mangue - Pista Leste","id":"way/466701030","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.890802,-8.1045606],[-34.8905598,-8.1043438],[-34.8901259,-8.1039594],[-34.8898537,-8.1037178],[-34.8896525,-8.1035405],[-34.8895211,-8.1033892],[-34.8894124,-8.1032312],[-34.8893246,-8.1030572],[-34.8892716,-8.1028787],[-34.8892348,-8.1026802],[-34.8892099,-8.1024266],[-34.889159,-8.1018849],[-34.8891335,-8.1015795],[-34.88911,-8.1013026],[-34.8890933,-8.1011121],[-34.8890765,-8.1009123],[-34.8890698,-8.1007589],[-34.8890872,-8.1005585],[-34.8891174,-8.1004244],[-34.8891536,-8.1003035],[-34.8891962,-8.1002023],[-34.8892703,-8.1000649],[-34.8893863,-8.0998963],[-34.8894582,-8.0997986],[-34.8894778,-8.0997724]]}},{"type":"Feature","id":"way/466704803","properties":{"name":"Rua General Edson Amâncio Ramalho","id":"way/466704803","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9001352,-8.1133554],[-34.9000865,-8.1129438],[-34.9000452,-8.1123682]]}},{"type":"Feature","id":"way/466704806","properties":{"name":"Rua Professor Arnaldo Carneiro Leao","id":"way/466704806","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9004267,-8.1131989],[-34.9004489,-8.1133748],[-34.9006599,-8.1150069],[-34.9006727,-8.1152494],[-34.9006724,-8.1152795]]}},{"type":"Feature","id":"way/466704807","properties":{"name":"Rua Antônio Falcão","id":"way/466704807","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9004267,-8.1131989],[-34.9006082,-8.1131148],[-34.9012292,-8.1127905],[-34.9016075,-8.1126356]]}},{"type":"Feature","id":"way/475061530","properties":{"name":"Rua Antonio Valdevino Costa","id":"way/475061530","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.927464,-8.0594339],[-34.9271992,-8.0585847],[-34.9270096,-8.0580571],[-34.9270023,-8.0580067],[-34.9269976,-8.0579376],[-34.9269862,-8.0577471],[-34.9269858,-8.0576478],[-34.9269851,-8.0574852]]}},{"type":"Feature","id":"way/475326170","properties":{"name":"Rotatória de Água Fria","id":"way/475326170","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8971594,-8.0238745],[-34.8971808,-8.0238476],[-34.8972121,-8.0238328],[-34.8972467,-8.0238332],[-34.8972744,-8.0238461],[-34.8972947,-8.0238687],[-34.8973027,-8.0238879],[-34.8973051,-8.0239085],[-34.8973018,-8.0239289],[-34.897293,-8.0239478],[-34.8972673,-8.0239722]]}},{"type":"Feature","id":"way/475653479","properties":{"name":"Rua Coronel João Batista do Rego Barros","id":"way/475653479","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9339621,-8.020486],[-34.9333591,-8.0190286]]}},{"type":"Feature","id":"way/475657190","properties":{"name":"Rua Padre Lemos","id":"way/475657190","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.917819,-8.026392],[-34.9177926,-8.0266209],[-34.9177843,-8.0266637],[-34.9177568,-8.0267491]]}},{"type":"Feature","id":"way/475660023","properties":{"name":"Rua Neto de Mendonça","id":"way/475660023","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9019927,-8.035937],[-34.9004102,-8.0353374],[-34.9004036,-8.035335]]}},{"type":"Feature","id":"way/476044500","properties":{"id":"way/476044500","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9279844,-8.0585802],[-34.9271992,-8.0585847],[-34.9263471,-8.0585802]]}},{"type":"Feature","id":"way/476044503","properties":{"id":"way/476044503","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9274351,-8.057648],[-34.9274247,-8.05752],[-34.9274046,-8.0573919],[-34.9273925,-8.0573328],[-34.9273738,-8.0572983],[-34.9273107,-8.0572372],[-34.927294,-8.0572136],[-34.9272869,-8.0571987],[-34.9272832,-8.0571588],[-34.9272735,-8.0571223],[-34.9272668,-8.0570997],[-34.927247,-8.0570423],[-34.9272343,-8.0570322],[-34.9272217,-8.0570244],[-34.9271994,-8.0570234],[-34.9266073,-8.0572141],[-34.926029,-8.0574194],[-34.9260149,-8.05743],[-34.9259995,-8.0574476],[-34.9259991,-8.0575286],[-34.9260202,-8.0576518],[-34.9260475,-8.0577474],[-34.9261919,-8.0582545]]}},{"type":"Feature","id":"way/476044505","properties":{"id":"way/476044505","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9269858,-8.0576478],[-34.9274351,-8.057648],[-34.9274385,-8.057808]]}},{"type":"Feature","id":"way/476044508","properties":{"id":"way/476044508","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9278095,-8.0594555],[-34.9280228,-8.0594544]]}},{"type":"Feature","id":"way/476044510","properties":{"id":"way/476044510","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.927464,-8.0594339],[-34.9266194,-8.0594153]]}},{"type":"Feature","id":"way/477384561","properties":{"name":"Rua Cristalina","id":"way/477384561","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9213958,-7.9619058],[-34.9213775,-7.9620524],[-34.9213523,-7.9621858],[-34.9213498,-7.962199],[-34.921316,-7.9624895]]}},{"type":"Feature","id":"way/477384562","properties":{"name":"Avenida Padre Mosca de Carvalho","id":"way/477384562","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9243683,-7.9627631],[-34.9243905,-7.9629059],[-34.9244079,-7.9630919],[-34.9244351,-7.963235],[-34.9245011,-7.9633834],[-34.9246252,-7.9635634],[-34.9246454,-7.9636035],[-34.9246533,-7.9636431],[-34.924648,-7.9637022],[-34.9246272,-7.9640103],[-34.9246071,-7.9643058],[-34.9245809,-7.9645376],[-34.9245621,-7.9646272],[-34.924548,-7.9647162],[-34.9245124,-7.9648148],[-34.9244716,-7.9648726],[-34.924429,-7.9649387],[-34.924375,-7.9650237],[-34.9243422,-7.9650795],[-34.9243207,-7.9651552],[-34.9242963,-7.9654615],[-34.9242796,-7.9656474],[-34.9242716,-7.9657712],[-34.9242714,-7.9657737],[-34.9242476,-7.9660809]]}},{"type":"Feature","id":"way/477384565","properties":{"name":"Rua Doutor Sinésio Medeiros Corrêa","id":"way/477384565","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9243207,-7.9651552],[-34.9234355,-7.965102]]}},{"type":"Feature","id":"way/477384567","properties":{"name":"Rua Folclorista Luís da Câmara Cascudo","id":"way/477384567","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9244716,-7.9648726],[-34.9234669,-7.964804]]}},{"type":"Feature","id":"way/477384568","properties":{"name":"Rua Bartolomeu Marquês","id":"way/477384568","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9246071,-7.9643058],[-34.9235885,-7.9642128]]}},{"type":"Feature","id":"way/477384569","properties":{"name":"Rua Ubirajara Justiniano Réis","id":"way/477384569","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9246272,-7.9640103],[-34.923612,-7.963912]]}},{"type":"Feature","id":"way/477384570","properties":{"name":"Rua Doutor Pedro Camelo","id":"way/477384570","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.924648,-7.9637022],[-34.9236307,-7.9636225]]}},{"type":"Feature","id":"way/477384571","properties":{"name":"Rua Reitor Geraldo Lafaiete","id":"way/477384571","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9244079,-7.9630919],[-34.9236693,-7.9630299]]}},{"type":"Feature","id":"way/477384572","properties":{"name":"Rua Desembargador Guerra Barreto","id":"way/477384572","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9245011,-7.9633834],[-34.9236502,-7.9633216]]}},{"type":"Feature","id":"way/477384573","properties":{"name":"Avenida Padre Mosca de Carvalho","id":"way/477384573","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9231246,-7.9647687],[-34.9232438,-7.9643457],[-34.9232854,-7.9641916],[-34.9233364,-7.9640369],[-34.9233739,-7.9638502],[-34.9233967,-7.9636895],[-34.9234074,-7.9635753],[-34.9234222,-7.9631569],[-34.9234309,-7.9630553],[-34.9234524,-7.9629537],[-34.9234892,-7.9628654],[-34.9236254,-7.9625872],[-34.9236549,-7.9625201],[-34.923681,-7.9624397],[-34.9236869,-7.9623872],[-34.9237417,-7.9619028]]}},{"type":"Feature","id":"way/477384575","properties":{"name":"Rua Léa Pabst Craveiro","id":"way/477384575","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9249852,-7.9662323],[-34.9250571,-7.9653967]]}},{"type":"Feature","id":"way/477384576","properties":{"name":"Rua Roque Paes Barreto","id":"way/477384576","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9252953,-7.9661316],[-34.9253595,-7.9655037]]}},{"type":"Feature","id":"way/477384577","properties":{"name":"Rua Enéas Jorge Andrade","id":"way/477384577","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9246868,-7.9662436],[-34.9247538,-7.9654038]]}},{"type":"Feature","id":"way/479255492","properties":{"name":"Rua Doutor Fernando Allain","id":"way/479255492","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8886899,-8.0422721],[-34.8882845,-8.0426391],[-34.8876612,-8.0432149]]}},{"type":"Feature","id":"way/479907708","properties":{"name":"Acesso Embarque TIP","id":"way/479907708","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9837265,-8.063794],[-34.9835382,-8.0637928],[-34.9833784,-8.0637797]]}},{"type":"Feature","id":"way/491692395","properties":{"name":"Avenida do Forte","id":"way/491692395","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9311251,-8.0581332],[-34.931204,-8.0582801]]}},{"type":"Feature","id":"way/524171989","properties":{"name":"Rua Albertina Ferreira","id":"way/524171989","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9131306,-7.9487181],[-34.9127564,-7.9485375],[-34.9123862,-7.9483794],[-34.9121435,-7.9482732],[-34.9118739,-7.948131],[-34.9116674,-7.9480314],[-34.9113724,-7.947888],[-34.911025,-7.9477366],[-34.9109023,-7.9476821],[-34.9107843,-7.9476429],[-34.9107622,-7.9476237],[-34.9107501,-7.9475958],[-34.9107508,-7.9475526],[-34.9107682,-7.9473892],[-34.910791,-7.9470492],[-34.9108118,-7.9467318]]}},{"type":"Feature","id":"way/524172025","properties":{"name":"Estrada Munbeca","id":"way/524172025","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9235389,-7.9513613],[-34.9236408,-7.9512231],[-34.9237695,-7.9510106],[-34.9238554,-7.9509017],[-34.923941,-7.9508027],[-34.9239897,-7.9506809],[-34.924007,-7.9506265],[-34.924054,-7.9504786],[-34.924127,-7.9502339],[-34.9241563,-7.9500446],[-34.9240746,-7.9497195],[-34.9240398,-7.9495681],[-34.9240283,-7.9494638],[-34.9239471,-7.9492574],[-34.9239191,-7.9491838],[-34.9239177,-7.9491126],[-34.9239236,-7.9489399],[-34.9239533,-7.9487527],[-34.9240056,-7.9485428],[-34.9240324,-7.9484073],[-34.9240552,-7.9482851],[-34.9241141,-7.9480327],[-34.9241642,-7.9478346],[-34.9241936,-7.9477185],[-34.9242219,-7.9475267],[-34.924243,-7.9474193],[-34.9242221,-7.9473211]]}},{"type":"Feature","id":"way/525727298","properties":{"name":"Travessa Doutor José Anastacio da Silva Guimarães","id":"way/525727298","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9284422,-8.0399371],[-34.9284352,-8.0391027],[-34.9284212,-8.038745],[-34.9284234,-8.0385298],[-34.9284238,-8.0384922],[-34.9284386,-8.0384438],[-34.9284681,-8.0384013],[-34.9285056,-8.0383747]]}},{"type":"Feature","id":"way/538392025","properties":{"name":"Rua Professor Estevão Francisco da Costa","id":"way/538392025","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9184567,-8.046204],[-34.9184903,-8.0462854],[-34.9185406,-8.0464169],[-34.9185962,-8.0465882],[-34.9186499,-8.0467489],[-34.9187719,-8.047122]]}},{"type":"Feature","id":"way/538805604","properties":{"name":"Rua Marquês de Maricá","id":"way/538805604","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9180826,-8.0474726],[-34.9182033,-8.0474181],[-34.9183548,-8.0473444],[-34.918378,-8.0473332],[-34.9184521,-8.0472973],[-34.9186344,-8.0471917]]}},{"type":"Feature","id":"way/544322360","properties":{"id":"way/544322360","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9521071,-8.0826736],[-34.9518637,-8.0825077],[-34.9517637,-8.0824293],[-34.9516806,-8.0823404],[-34.951637,-8.0822853],[-34.9515552,-8.0822036],[-34.9515022,-8.0821585],[-34.9514426,-8.0820947],[-34.9514131,-8.0820409],[-34.9514131,-8.0820091],[-34.9514337,-8.0819842]]}},{"type":"Feature","id":"way/545920137","properties":{"name":"Travessa Itanage","id":"way/545920137","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9201692,-8.1062437],[-34.9205491,-8.1058287]]}},{"type":"Feature","id":"way/550526690","properties":{"name":"Avenida Central","id":"way/550526690","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8954522,-8.0729326],[-34.8952818,-8.0728709],[-34.8952127,-8.0728446],[-34.8951484,-8.0728207]]}},{"type":"Feature","id":"way/553605195","properties":{"name":"Rua Benfica","id":"way/553605195","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.90187,-8.0621674],[-34.9017648,-8.0622376],[-34.9017124,-8.0622655],[-34.9016633,-8.0622778]]}},{"type":"Feature","id":"way/556366266","properties":{"name":"Rua Itaimbé","id":"way/556366266","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9222455,-8.110242],[-34.9221939,-8.1102306],[-34.9221233,-8.1102149],[-34.9220442,-8.1101651],[-34.9219483,-8.1100901],[-34.9215071,-8.1097017],[-34.9212824,-8.1095063]]}},{"type":"Feature","id":"way/556377315","properties":{"name":"Primeira Travessa Xavier Sobrinho","id":"way/556377315","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9214686,-8.0591166],[-34.920974,-8.0592383]]}},{"type":"Feature","id":"way/556377316","properties":{"name":"Segunda Travessa Xavier Sobrinho","id":"way/556377316","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9210712,-8.0595766],[-34.9215625,-8.0594386]]}},{"type":"Feature","id":"way/559810681","properties":{"name":"Passarela da Estação Shopping","id":"way/559810681","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9105826,-8.1157442],[-34.9105176,-8.1154866],[-34.9105176,-8.1154767],[-34.9105208,-8.1154699],[-34.9105285,-8.1154649],[-34.9105389,-8.1154616],[-34.9106185,-8.115443]]}},{"type":"Feature","id":"way/559810682","properties":{"name":"Passarela da Estação Shopping","id":"way/559810682","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9101513,-8.1157606],[-34.9101335,-8.1155565],[-34.9101355,-8.1155393],[-34.910157,-8.1155227],[-34.9101771,-8.1155207],[-34.9101986,-8.1155266],[-34.9102126,-8.1155446]]}},{"type":"Feature","id":"way/559810683","properties":{"name":"Passarela da Estação Shopping","id":"way/559810683","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9102126,-8.1155446],[-34.9102777,-8.1158327],[-34.9102777,-8.1158453],[-34.9102663,-8.1158552],[-34.910258,-8.1158563],[-34.9102509,-8.1158572],[-34.9102401,-8.1158513],[-34.9102341,-8.1158386],[-34.9101751,-8.1155625],[-34.9101744,-8.1155499],[-34.9101771,-8.1155373],[-34.9101831,-8.1155306],[-34.9101902,-8.1155263],[-34.9101996,-8.115525],[-34.9102082,-8.1155264],[-34.9102161,-8.115531],[-34.9102216,-8.1155398],[-34.9102248,-8.1155492],[-34.9102762,-8.1157774],[-34.9102812,-8.1157847],[-34.9102879,-8.115787],[-34.9102986,-8.1157864],[-34.9104565,-8.1157509],[-34.9105745,-8.1157236],[-34.9105819,-8.11572],[-34.9105846,-8.1157133],[-34.9105853,-8.1157064],[-34.910584,-8.1156984],[-34.9105216,-8.1154508],[-34.9105249,-8.1154402],[-34.9105357,-8.1154369],[-34.9105477,-8.1154389],[-34.9105545,-8.1154475],[-34.9106255,-8.1157429],[-34.9106228,-8.1157548],[-34.9106197,-8.1157579],[-34.9106155,-8.1157621],[-34.9106047,-8.1157648],[-34.9105955,-8.1157628],[-34.9105883,-8.1157587],[-34.910586,-8.1157548],[-34.9105826,-8.1157442]]}},{"type":"Feature","id":"way/561062041","properties":{"name":"Travessa Arlinda Pereira de Santana","id":"way/561062041","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.915509,-7.9531889],[-34.9154973,-7.9531245],[-34.9154822,-7.9530767],[-34.9154456,-7.9530381],[-34.9153886,-7.9530003],[-34.9150966,-7.9528628],[-34.9148525,-7.9527413],[-34.9145146,-7.9525606]]}},{"type":"Feature","id":"way/561311148","properties":{"name":"Rua Manoel Laurentino","id":"way/561311148","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9121435,-7.9482732],[-34.9121006,-7.9483781],[-34.9120469,-7.9485096],[-34.9120251,-7.9485557],[-34.9119671,-7.9487035],[-34.9118907,-7.9488848]]}},{"type":"Feature","id":"way/561311149","properties":{"name":"Travessa da Pitanga","id":"way/561311149","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9123527,-7.9494041],[-34.9120003,-7.9492431],[-34.9119735,-7.9492391]]}},{"type":"Feature","id":"way/561311150","properties":{"name":"Rua Gilson Inácio da Silva","id":"way/561311150","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9120003,-7.9492431],[-34.9123862,-7.9483794]]}},{"type":"Feature","id":"way/562089910","properties":{"name":"Rua Gilson Inácio da Silva","id":"way/562089910","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9118223,-7.9495317],[-34.9119427,-7.949262],[-34.9119551,-7.9492448],[-34.9119735,-7.9492391]]}},{"type":"Feature","id":"way/566179177","properties":{"name":"Rua Marquês do Paraná","id":"way/566179177","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8881829,-8.0407164],[-34.8880238,-8.0404836],[-34.8878823,-8.040292]]}},{"type":"Feature","id":"way/567786012","properties":{"name":"Ponte Joaquim Cardoso","id":"way/567786012","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.891198,-8.0707406],[-34.8908025,-8.0709242],[-34.8908141,-8.069643],[-34.8912984,-8.0693952]]}},{"type":"Feature","id":"way/573299100","properties":{"id":"way/573299100","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9370577,-7.9934356],[-34.9369647,-7.9932502],[-34.9368123,-7.9930313],[-34.9367045,-7.9928655],[-34.9366616,-7.9928211]]}},{"type":"Feature","id":"way/573299105","properties":{"name":"Avenida da Recuperação","id":"way/573299105","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.93656,-7.9927974],[-34.9364524,-7.9928837],[-34.9364242,-7.9929435],[-34.9364313,-7.9930124],[-34.9364959,-7.9930895],[-34.9365563,-7.9931374],[-34.936739,-7.9932528],[-34.9369856,-7.9933942],[-34.9370577,-7.9934356]]}},{"type":"Feature","id":"way/573648855","properties":{"name":"Rua Artur Lima Cavalcante","id":"way/573648855","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8740938,-8.0452709],[-34.8740253,-8.0453728],[-34.8739948,-8.0454472],[-34.8739814,-8.0455149],[-34.8739804,-8.0455903],[-34.8739824,-8.045663],[-34.8740058,-8.0457443],[-34.874049,-8.0457549],[-34.874206,-8.0460258],[-34.8745043,-8.0464478],[-34.8747198,-8.0467489],[-34.8749123,-8.0469997],[-34.875009,-8.0471333],[-34.875052,-8.0472001],[-34.8751126,-8.047294],[-34.8751575,-8.0474187],[-34.8751764,-8.0475659],[-34.8751585,-8.047705],[-34.8751277,-8.0477949],[-34.8750734,-8.0478925],[-34.8750152,-8.04797],[-34.8749429,-8.0480436],[-34.8747925,-8.0481679],[-34.8740474,-8.0487709],[-34.8738657,-8.048921],[-34.8737584,-8.0490272],[-34.8736937,-8.0491311],[-34.8736481,-8.0492271],[-34.8736313,-8.0493204],[-34.8736337,-8.0494236],[-34.8736461,-8.0495302],[-34.8736823,-8.0496487],[-34.8737292,-8.0497383],[-34.8737963,-8.0498296],[-34.8738564,-8.0499165]]}},{"type":"Feature","id":"way/573648860","properties":{"name":"Rua do Hospício","id":"way/573648860","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8834217,-8.0586766],[-34.8835455,-8.0591316]]}},{"type":"Feature","id":"way/573648911","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/573648911","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9351976,-8.0426669],[-34.9350442,-8.0427649],[-34.933859,-8.0434522],[-34.933568,-8.0436114],[-34.9326091,-8.044137],[-34.9320216,-8.044459],[-34.9314282,-8.0447843],[-34.9310882,-8.0449707]]}},{"type":"Feature","id":"way/574217818","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/574217818","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9091046,-8.150615],[-34.9091603,-8.1507485],[-34.9096524,-8.1519642],[-34.9098487,-8.152403],[-34.9101512,-8.1530136],[-34.9103902,-8.1534876],[-34.9106294,-8.1539219],[-34.9108467,-8.1543222]]}},{"type":"Feature","id":"way/574217819","properties":{"name":"Avenida Armindo Moura","id":"way/574217819","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9091046,-8.150615],[-34.9090726,-8.1506269],[-34.9090554,-8.1506333],[-34.9085399,-8.1508187],[-34.9083029,-8.1509118],[-34.9078144,-8.1511016]]}},{"type":"Feature","id":"way/577320872","properties":{"name":"Avenida Prefeito Antonio Pereira","id":"way/577320872","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9845923,-8.0636577],[-34.9843624,-8.0636903],[-34.9837265,-8.063794]]}},{"type":"Feature","id":"way/579464185","properties":{"name":"Rua do Riachuelo","id":"way/579464185","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8835455,-8.0591316],[-34.8833446,-8.0592617],[-34.8833158,-8.0592802],[-34.8825793,-8.059757],[-34.8820297,-8.0601153],[-34.881955,-8.060166],[-34.8816667,-8.0603549],[-34.8816156,-8.0603883],[-34.881534,-8.0604396],[-34.8814317,-8.0605075]]}},{"type":"Feature","id":"way/579464186","properties":{"name":"Rua do Hospício","id":"way/579464186","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8835455,-8.0591316],[-34.8836733,-8.0596288],[-34.8839269,-8.0605039],[-34.8839525,-8.0605924],[-34.8839682,-8.0606446],[-34.883984,-8.0606968],[-34.8839937,-8.0607289]]}},{"type":"Feature","id":"way/579464227","properties":{"name":"Rua Bernardo Vieira de Melo","id":"way/579464227","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8705778,-8.0560911],[-34.8706322,-8.0554259],[-34.8706803,-8.0549407],[-34.8706779,-8.0548394],[-34.8706461,-8.054736]]}},{"type":"Feature","id":"way/579464228","properties":{"name":"Rua do Pilar","id":"way/579464228","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8705778,-8.0560911],[-34.8705464,-8.0560867],[-34.8704893,-8.0560794],[-34.8703205,-8.0560248],[-34.8701874,-8.0559767],[-34.8701599,-8.0559734],[-34.8701331,-8.055982]]}},{"type":"Feature","id":"way/579464229","properties":{"name":"Rua Bernardo Vieira de Melo","id":"way/579464229","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8707384,-8.0578826],[-34.8707208,-8.0577599],[-34.8706963,-8.0575754],[-34.8706655,-8.0572677],[-34.8706127,-8.0565616],[-34.8705987,-8.0563722],[-34.8705778,-8.0560911]]}},{"type":"Feature","id":"way/579464230","properties":{"name":"Rua Edgar Werneck","id":"way/579464230","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8707384,-8.0578826],[-34.8707785,-8.0578671],[-34.8708333,-8.0578514],[-34.8715273,-8.0577318],[-34.8715537,-8.0577272]]}},{"type":"Feature","id":"way/581704793","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/581704793","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.921027,-8.0504315],[-34.9214261,-8.0502111],[-34.9217003,-8.0500592],[-34.9247583,-8.0483667],[-34.9250244,-8.0482194],[-34.9278311,-8.0466663]]}},{"type":"Feature","id":"way/581704797","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/581704797","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9210666,-8.0505018],[-34.9189281,-8.051703]]}},{"type":"Feature","id":"way/581704800","properties":{"name":"Avenida Dantas Barreto","id":"way/581704800","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.879066,-8.0658588],[-34.8791083,-8.0659516],[-34.8792784,-8.0663396],[-34.8794212,-8.0666291],[-34.8796418,-8.0669584],[-34.8798038,-8.0671085],[-34.8799514,-8.0672453],[-34.8802067,-8.0675154],[-34.8802897,-8.0675977]]}},{"type":"Feature","id":"way/582585081","properties":{"name":"Rua Pedro Afonso","id":"way/582585081","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8794361,-8.0509799],[-34.8795256,-8.0509191],[-34.8806067,-8.050185]]}},{"type":"Feature","id":"way/585473147","properties":{"name":"Rua General Edson Amâncio Ramalho","id":"way/585473147","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9008624,-8.1175106],[-34.9008532,-8.1174635],[-34.9006623,-8.116483],[-34.9004585,-8.1155158],[-34.9004524,-8.1154863],[-34.9004351,-8.1154034]]}},{"type":"Feature","id":"way/585473219","properties":{"name":"Rua Félix de Brito Melo","id":"way/585473219","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8965818,-8.1173705],[-34.896487,-8.1174236]]}},{"type":"Feature","id":"way/585473222","properties":{"name":"Rua Félix de Brito Melo","id":"way/585473222","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8956419,-8.1178778],[-34.895559,-8.1179152],[-34.8947498,-8.1183143]]}},{"type":"Feature","id":"way/585473305","properties":{"name":"Rua Antônio Falcão","id":"way/585473305","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8954637,-8.1157803],[-34.8955469,-8.1157416],[-34.8955696,-8.115731]]}},{"type":"Feature","id":"way/589445951","properties":{"name":"Rua Professor Antônio Coelho","id":"way/589445951","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9467511,-8.046419],[-34.946634,-8.0461181],[-34.946535,-8.0458724],[-34.9464228,-8.0455513],[-34.9463054,-8.0452572],[-34.9460821,-8.04469],[-34.9458219,-8.0440235],[-34.9457375,-8.043769],[-34.945651,-8.0434982],[-34.94559,-8.0431702],[-34.9455182,-8.0428108]]}},{"type":"Feature","id":"way/596236969","properties":{"name":"Avenida José Américo de Almeida","id":"way/596236969","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9321008,-8.0089232],[-34.9320884,-8.0089664],[-34.9320807,-8.0089893],[-34.9320726,-8.0090075],[-34.9320584,-8.0090329],[-34.9320281,-8.009071],[-34.9310494,-8.0102338],[-34.9310328,-8.0102614],[-34.9310267,-8.0102855],[-34.9310215,-8.0103157],[-34.931024,-8.0103545],[-34.9310569,-8.0104504]]}},{"type":"Feature","id":"way/596236970","properties":{"name":"Avenida José Américo de Almeida","id":"way/596236970","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9301194,-8.01638],[-34.9301205,-8.0163095],[-34.9301193,-8.0162847],[-34.9301168,-8.0162595],[-34.9299305,-8.0156243],[-34.9294209,-8.0136536],[-34.9294022,-8.013562],[-34.9293921,-8.0134498],[-34.9293985,-8.0133342],[-34.9294075,-8.0132506],[-34.9294176,-8.0131749],[-34.929427,-8.0131217],[-34.9294471,-8.0130553],[-34.9294739,-8.0129836],[-34.9295609,-8.0127827],[-34.9299782,-8.0118635],[-34.9303396,-8.0110401],[-34.9304181,-8.0108747],[-34.9304623,-8.010801],[-34.9304985,-8.0107572],[-34.9307276,-8.0104898]]}},{"type":"Feature","id":"way/596236971","properties":{"name":"Praça Zumbi dos Palmares","id":"way/596236971","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.931074,-8.0105602],[-34.9310557,-8.0106133],[-34.9310213,-8.0106579],[-34.9309745,-8.0106894],[-34.93092,-8.0107047]]}},{"type":"Feature","id":"way/596236973","properties":{"name":"Avenida José Américo de Almeida","id":"way/596236973","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9320253,-8.0089336],[-34.932041,-8.0089297],[-34.93206,-8.0089275],[-34.9321008,-8.0089232]]}},{"type":"Feature","id":"way/597951717","properties":{"name":"Avenida da Redenção","id":"way/597951717","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9378766,-7.9943839],[-34.9375301,-7.9939643],[-34.9372158,-7.9936013],[-34.9370869,-7.9934666],[-34.9370577,-7.9934356]]}},{"type":"Feature","id":"way/597951718","properties":{"name":"Avenida da Redenção","id":"way/597951718","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9385002,-7.9951673],[-34.937945,-7.994467],[-34.9378766,-7.9943839]]}},{"type":"Feature","id":"way/598232856","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/598232856","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8917679,-8.0707708],[-34.8917884,-8.070731],[-34.8918124,-8.0707125],[-34.8918445,-8.0706982],[-34.8918828,-8.0707005],[-34.8919022,-8.0707125],[-34.8919146,-8.0707384],[-34.8919178,-8.07075],[-34.891973,-8.0709529]]}},{"type":"Feature","id":"way/607122239","properties":{"name":"Avenida Luiz de Lacerda","id":"way/607122239","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9429214,-8.0375233],[-34.9429269,-8.0374392]]}},{"type":"Feature","id":"way/607122243","properties":{"name":"Avenida Historiador Jordão Emerenciano","id":"way/607122243","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9430528,-8.0361504],[-34.9429681,-8.0359748],[-34.9429365,-8.0359114],[-34.9428839,-8.0358069],[-34.9427965,-8.0356687],[-34.9427179,-8.0355253],[-34.9426458,-8.0353872],[-34.9425804,-8.0352488],[-34.9425195,-8.0351144],[-34.9424831,-8.0350044],[-34.9424622,-8.0348813],[-34.9424522,-8.0347663],[-34.942456,-8.0344656],[-34.9424682,-8.0343597],[-34.9424959,-8.0342254],[-34.9425501,-8.0340555],[-34.942631,-8.0338899],[-34.9427505,-8.0336934],[-34.9428916,-8.0334952],[-34.9430585,-8.0333075],[-34.943521,-8.0330976],[-34.9437077,-8.0330129],[-34.9438539,-8.0329226],[-34.943984,-8.0328044],[-34.9441044,-8.0326603]]}},{"type":"Feature","id":"way/607122248","properties":{"name":"Avenida Historiador Jordão Emerenciano","id":"way/607122248","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9442126,-8.0326659],[-34.9440256,-8.0328535],[-34.9438915,-8.0329903],[-34.9437346,-8.0330713],[-34.9431505,-8.0333709],[-34.9430256,-8.0334759],[-34.942946,-8.0335655],[-34.9428954,-8.0336377],[-34.9428257,-8.0337429],[-34.9427217,-8.0339275],[-34.9426644,-8.0340635],[-34.9426258,-8.034179],[-34.9425948,-8.0342818],[-34.94257,-8.0343625],[-34.9425577,-8.0344259],[-34.9425579,-8.0346834],[-34.9425703,-8.0348879],[-34.9426146,-8.0350637],[-34.9426831,-8.0352357],[-34.9427643,-8.0353947],[-34.9428299,-8.0355102],[-34.9429244,-8.0356248],[-34.9429844,-8.0356852],[-34.9431237,-8.0358111],[-34.9431703,-8.0358495],[-34.9432218,-8.0358866],[-34.9432811,-8.0359242],[-34.9434009,-8.0360022]]}},{"type":"Feature","id":"way/607755761","properties":{"name":"Rua Castro Alves","id":"way/607755761","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8898307,-8.0377291],[-34.8900288,-8.0376077],[-34.8900802,-8.0375786],[-34.8902459,-8.0374731],[-34.890476,-8.0373288],[-34.8904995,-8.0373131]]}},{"type":"Feature","id":"way/607806640","properties":{"name":"Rua Castro Alves","id":"way/607806640","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8908294,-8.0371816],[-34.8908757,-8.0371725],[-34.890925,-8.0371694]]}},{"type":"Feature","id":"way/609330639","properties":{"name":"Rua Principal Priverde","id":"way/609330639","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9568229,-8.0162411],[-34.9569813,-8.0162884],[-34.9570651,-8.0163089],[-34.9571134,-8.0163561],[-34.9571382,-8.0164132],[-34.9571416,-8.0164849],[-34.9570068,-8.0176648],[-34.9567238,-8.0176376],[-34.9565515,-8.0176051],[-34.9563101,-8.0175938],[-34.9558689,-8.0175675]]}},{"type":"Feature","id":"way/609330640","properties":{"id":"way/609330640","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9580367,-8.0166023],[-34.9580184,-8.0165958],[-34.9580033,-8.0165837],[-34.957993,-8.0165674],[-34.9579887,-8.0165487],[-34.9579908,-8.0165295],[-34.9579991,-8.0165122],[-34.9580127,-8.0164984],[-34.9580301,-8.0164899],[-34.9580494,-8.0164875],[-34.958068,-8.0164913],[-34.9580844,-8.0165008],[-34.9580968,-8.016515],[-34.958104,-8.0165324],[-34.9581052,-8.0165511],[-34.9581002,-8.0165693],[-34.9580896,-8.0165849],[-34.9580745,-8.0165963],[-34.9580561,-8.0166025],[-34.9580367,-8.0166023]]}},{"type":"Feature","id":"way/609330641","properties":{"name":"Rua Direita Priverde","id":"way/609330641","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9580745,-8.0165963],[-34.9580795,-8.01663],[-34.9580762,-8.0166649],[-34.9579771,-8.0169052],[-34.9579389,-8.0170208],[-34.957904,-8.0171595],[-34.957898,-8.0172804],[-34.9579134,-8.0174192],[-34.9579597,-8.0175659],[-34.9580476,-8.0177686],[-34.9580741,-8.0178686],[-34.9580774,-8.0179901],[-34.9580443,-8.0180721],[-34.9579681,-8.0181295],[-34.9578986,-8.0181462],[-34.9578061,-8.0181363],[-34.9577243,-8.0181071],[-34.9576391,-8.0180519],[-34.9575419,-8.017959],[-34.9574594,-8.0178408],[-34.9574212,-8.0177917],[-34.9573555,-8.0177452],[-34.9572328,-8.017706],[-34.9570068,-8.0176648]]}},{"type":"Feature","id":"way/609808989","properties":{"name":"Rua do Futuro","id":"way/609808989","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9049123,-8.0349742],[-34.9047488,-8.0351943],[-34.9045555,-8.0354052],[-34.9042645,-8.0356913]]}},{"type":"Feature","id":"way/609810648","properties":{"name":"Rua da Coragem","id":"way/609810648","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8912491,-8.036025],[-34.8908294,-8.0357991]]}},{"type":"Feature","id":"way/614301188","properties":{"name":"Rua Presidente Honório Hermeto","id":"way/614301188","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9883694,-8.0372709],[-34.9880567,-8.03781],[-34.9879186,-8.0380537],[-34.9877831,-8.0382854],[-34.9877087,-8.0383917],[-34.9876463,-8.0384607],[-34.9876065,-8.0385178],[-34.9875925,-8.0385737],[-34.9875984,-8.0386105],[-34.9876162,-8.0386448],[-34.9876367,-8.0386661],[-34.9876607,-8.0386813]]}},{"type":"Feature","id":"way/616186914","properties":{"name":"Avenida General Mac Artur","id":"way/616186914","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9016642,-8.1126088],[-34.9019065,-8.1124957]]}},{"type":"Feature","id":"way/616186915","properties":{"name":"Avenida General Mac Artur","id":"way/616186915","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9019065,-8.1124957],[-34.9021486,-8.1123787],[-34.902282,-8.1123154],[-34.9034629,-8.1117442],[-34.9035737,-8.1116885],[-34.903814,-8.111565],[-34.9039025,-8.1115267],[-34.9042099,-8.1113935],[-34.9042446,-8.1113776],[-34.9044342,-8.1112884],[-34.9044443,-8.1112837],[-34.9052567,-8.1108837],[-34.9053682,-8.1108258],[-34.9057766,-8.1106356],[-34.9062074,-8.1104165],[-34.9063147,-8.1103619],[-34.9067266,-8.1101605],[-34.9073189,-8.1098813],[-34.907465,-8.1098158],[-34.9075646,-8.1097791],[-34.9082053,-8.1096426],[-34.9087727,-8.1095045]]}},{"type":"Feature","id":"way/616949864","properties":{"name":"Avenida Central","id":"way/616949864","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8955273,-8.0729543],[-34.8954522,-8.0729326]]}},{"type":"Feature","id":"way/616949867","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/616949867","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8957054,-8.0691644],[-34.8960038,-8.0689635],[-34.8963743,-8.0686811],[-34.89651,-8.0686297],[-34.8966939,-8.0685957],[-34.8968436,-8.0685857],[-34.896998,-8.068597],[-34.8970706,-8.0686082],[-34.8972259,-8.0686321]]}},{"type":"Feature","id":"way/617216867","properties":{"name":"Rua Compositor Vinícius de Morais","id":"way/617216867","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8942465,-8.003457],[-34.8940546,-8.003517],[-34.8932375,-8.0037265],[-34.8931088,-8.003758],[-34.8929897,-8.0037696],[-34.8927009,-8.0037703]]}},{"type":"Feature","id":"way/617216870","properties":{"name":"Rua Compositor Vinícius de Morais","id":"way/617216870","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8927009,-8.0037703],[-34.8922817,-8.0037779],[-34.8921807,-8.0037757],[-34.8920872,-8.0037787],[-34.8919298,-8.0037863],[-34.8917491,-8.0038058]]}},{"type":"Feature","id":"way/617661942","properties":{"name":"Ciclovia Norte","id":"way/617661942","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8838101,-8.0432213],[-34.8838387,-8.0431755],[-34.8839079,-8.0430647],[-34.8840326,-8.0429478],[-34.8841023,-8.0428654],[-34.8841453,-8.0428043],[-34.8841579,-8.0427741]]}},{"type":"Feature","id":"way/619555638","properties":{"name":"Rua da Moeda","id":"way/619555638","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8734175,-8.0646644],[-34.8733366,-8.0646223],[-34.8731285,-8.0645911],[-34.8730135,-8.0646025],[-34.8729658,-8.0645965],[-34.8728508,-8.0645795],[-34.8727539,-8.0645669],[-34.8727157,-8.0645888],[-34.8725259,-8.0645609],[-34.8724823,-8.0645218],[-34.8724599,-8.0645185],[-34.8724232,-8.0645132]]}},{"type":"Feature","id":"way/621872200","properties":{"name":"Rua Inajá","id":"way/621872200","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9674783,-8.0883619],[-34.9675427,-8.0881674]]}},{"type":"Feature","id":"way/624847912","properties":{"name":"Ponte Buarque de Macedo","id":"way/624847912","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8739315,-8.062358],[-34.8739631,-8.0623506],[-34.8739736,-8.0623481],[-34.8739789,-8.0623468]]}},{"type":"Feature","id":"way/624847913","properties":{"name":"Ciclovia Camilo Simões","id":"way/624847913","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.870948,-8.0356452],[-34.8711651,-8.0357951],[-34.8712471,-8.0358192],[-34.871355,-8.0358551],[-34.8714194,-8.0358659],[-34.8719952,-8.036133],[-34.8720669,-8.0361582],[-34.8721993,-8.0361967],[-34.8723159,-8.0362328],[-34.8724348,-8.0362842],[-34.8725548,-8.0363613],[-34.8728771,-8.0366081],[-34.8730204,-8.036685],[-34.8731152,-8.0367199],[-34.8732828,-8.0367584],[-34.8733411,-8.0367692],[-34.8733671,-8.0367749],[-34.8733803,-8.036784],[-34.8733855,-8.0367971],[-34.8733891,-8.0368102],[-34.8733903,-8.0368641],[-34.8733927,-8.0368859],[-34.8734003,-8.0369046],[-34.8734132,-8.0369172],[-34.8740705,-8.0372343],[-34.874113,-8.0373081]]}},{"type":"Feature","id":"way/624878408","properties":{"name":"Rua Emiliano Braga","id":"way/624878408","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9430873,-8.0396763],[-34.9433509,-8.0395319],[-34.9437513,-8.0393059],[-34.9441764,-8.039059]]}},{"type":"Feature","id":"way/624878409","properties":{"name":"Rua Professor Antônio Coelho","id":"way/624878409","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9446959,-8.0399426],[-34.9444158,-8.0394752],[-34.9441764,-8.039059]]}},{"type":"Feature","id":"way/624914191","properties":{"name":"Via Mangue - Pista Leste","id":"way/624914191","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8987839,-8.1092492],[-34.8980442,-8.1083871],[-34.8979015,-8.1082393],[-34.8976403,-8.1080179],[-34.8975156,-8.1079337],[-34.8974299,-8.1078791],[-34.8973826,-8.1078583],[-34.8970787,-8.1077487],[-34.8969139,-8.1077108],[-34.8967476,-8.107695],[-34.8966068,-8.1076896],[-34.8964513,-8.1077008],[-34.8957136,-8.1077759],[-34.8949351,-8.1078301],[-34.8947175,-8.1078307],[-34.8946391,-8.1078269],[-34.8944655,-8.1077783],[-34.8942614,-8.1077065]]}},{"type":"Feature","id":"way/624914195","properties":{"name":"Via Mangue - Pista Leste","id":"way/624914195","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.899509,-8.1103224],[-34.8992595,-8.109954],[-34.8990604,-8.1096552]]}},{"type":"Feature","id":"way/624914196","properties":{"name":"Rua Antônio Falcão","id":"way/624914196","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9003733,-8.1132259],[-34.900399,-8.1132144],[-34.9004267,-8.1131989]]}},{"type":"Feature","id":"way/624914197","properties":{"name":"Rua Antônio Falcão","id":"way/624914197","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9001661,-8.1133397],[-34.9003733,-8.1132259]]}},{"type":"Feature","id":"way/624914219","properties":{"name":"Acesso ao bicicletário","id":"way/624914219","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8969504,-8.0859195],[-34.8969178,-8.0859243],[-34.8969063,-8.0859264]]}},{"type":"Feature","id":"way/624914220","properties":{"name":"Acesso ao bicicletário","id":"way/624914220","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8969063,-8.0859264],[-34.8968897,-8.0859294],[-34.8968335,-8.0859396],[-34.8967958,-8.0859464],[-34.8967717,-8.0859508],[-34.8967281,-8.0859587]]}},{"type":"Feature","id":"way/624914221","properties":{"name":"Ciclovia Riomar","id":"way/624914221","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8967836,-8.0844933],[-34.8968691,-8.085261],[-34.896932,-8.0858107],[-34.896941,-8.0858792],[-34.8969443,-8.0858979],[-34.8969504,-8.0859195],[-34.8969555,-8.0859378],[-34.8969647,-8.0859585],[-34.896972,-8.0859749],[-34.8970329,-8.0860705]]}},{"type":"Feature","id":"way/624914222","properties":{"name":"Ciclovia Riomar","id":"way/624914222","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8970329,-8.0860705],[-34.8970462,-8.0860696],[-34.897059,-8.0860738],[-34.8970798,-8.0860997],[-34.8970805,-8.0861102],[-34.8970763,-8.0861188],[-34.8970665,-8.0861229],[-34.8970559,-8.0861206],[-34.8970336,-8.0860945],[-34.8970313,-8.0860832],[-34.8970329,-8.0860705]]}},{"type":"Feature","id":"way/624914223","properties":{"name":"Ciclovia Riomar","id":"way/624914223","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8955625,-8.0843],[-34.8956253,-8.0843108],[-34.8956518,-8.0843137],[-34.8956814,-8.084312],[-34.8964464,-8.0842381],[-34.8965027,-8.0842413],[-34.8965502,-8.0842532],[-34.8965954,-8.0842697],[-34.8966406,-8.0842942],[-34.8966637,-8.0843107],[-34.8966863,-8.084329],[-34.896705,-8.0843478],[-34.8967227,-8.0843683],[-34.8967467,-8.0844026],[-34.8967628,-8.0844352],[-34.8967836,-8.0844933]]}},{"type":"Feature","id":"way/624914224","properties":{"name":"Ciclovia Riomar","id":"way/624914224","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8938998,-8.0847929],[-34.8941102,-8.0846321],[-34.8941904,-8.0845766],[-34.8942786,-8.0845291],[-34.8943557,-8.0844963],[-34.8944389,-8.0844687],[-34.8944821,-8.0844549],[-34.8945275,-8.0844442],[-34.8945715,-8.0844369],[-34.8946146,-8.0844319],[-34.8947544,-8.0844164],[-34.8947789,-8.0844123],[-34.8947993,-8.0844056],[-34.8949717,-8.0843368],[-34.8949909,-8.0843304],[-34.8950067,-8.0843253],[-34.8950925,-8.0843044],[-34.895103,-8.0843022],[-34.8951118,-8.0843006],[-34.8951589,-8.0842915],[-34.8952202,-8.084284],[-34.8953304,-8.0842777],[-34.895443,-8.0842831],[-34.8955625,-8.0843]]}},{"type":"Feature","id":"way/624914225","properties":{"name":"Ciclovia Riomar","id":"way/624914225","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8936903,-8.0849422],[-34.8938998,-8.0847929]]}},{"type":"Feature","id":"way/624914227","properties":{"name":"Ciclovia Riomar","id":"way/624914227","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8917754,-8.0853848],[-34.8920158,-8.0854277],[-34.8920572,-8.0854414],[-34.8921399,-8.0854776],[-34.8921641,-8.0854869],[-34.8921917,-8.0854944],[-34.8922279,-8.0855018],[-34.8922571,-8.0855029],[-34.892297,-8.0855018],[-34.8927586,-8.0854429],[-34.8928026,-8.0854345],[-34.8928526,-8.0854233],[-34.8929085,-8.0854097],[-34.892981,-8.0853863],[-34.8930369,-8.0853623],[-34.8931038,-8.0853263],[-34.8931666,-8.0852876],[-34.8934154,-8.0851276],[-34.8936903,-8.0849422]]}},{"type":"Feature","id":"way/624914228","properties":{"name":"Ciclovia Riomar","id":"way/624914228","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8905193,-8.0851363],[-34.890553,-8.0851239],[-34.8906243,-8.0851351],[-34.8908793,-8.0852112],[-34.8909449,-8.0852259],[-34.8912018,-8.0852787],[-34.8916374,-8.0853606],[-34.8917754,-8.0853848]]}},{"type":"Feature","id":"way/624935364","properties":{"name":"Via Mangue - Pista Leste","id":"way/624935364","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8899298,-8.0882861],[-34.8898155,-8.0882523],[-34.8897222,-8.0882237]]}},{"type":"Feature","id":"way/628277061","properties":{"name":"Rua Manoel Joaquim de Almeida","id":"way/628277061","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9412687,-8.0394773],[-34.9414355,-8.0398972],[-34.9416432,-8.0404634]]}},{"type":"Feature","id":"way/628645779","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/628645779","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9308358,-8.0450001],[-34.9310514,-8.0448764]]}},{"type":"Feature","id":"way/628645780","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/628645780","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9310514,-8.0448764],[-34.9313861,-8.0446922],[-34.9319662,-8.044373],[-34.9326174,-8.0440147],[-34.9332125,-8.0436873],[-34.9335267,-8.0435132],[-34.9338034,-8.04336],[-34.935011,-8.0427017],[-34.9351748,-8.0426263]]}},{"type":"Feature","id":"way/628645781","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/628645781","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9310882,-8.0449707],[-34.930894,-8.0450791]]}},{"type":"Feature","id":"way/628645782","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/628645782","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.930894,-8.0450791],[-34.9300293,-8.0455565],[-34.9299359,-8.0456083]]}},{"type":"Feature","id":"way/628645806","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/628645806","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9000384,-8.0570219],[-34.8999842,-8.0569881],[-34.8997249,-8.0568261],[-34.8996233,-8.0567808],[-34.8995317,-8.0567511],[-34.8994999,-8.056746],[-34.8994291,-8.056739],[-34.8993679,-8.056736],[-34.8993087,-8.0567353],[-34.8991292,-8.0567336]]}},{"type":"Feature","id":"way/628649584","properties":{"name":"Rua Ministro João Alberto","id":"way/628649584","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9454868,-8.037008],[-34.9455041,-8.0370374]]}},{"type":"Feature","id":"way/628649586","properties":{"name":"Rua Ministro João Alberto","id":"way/628649586","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9454436,-8.0369381],[-34.9454868,-8.037008]]}},{"type":"Feature","id":"way/628924111","properties":{"name":"Rua Emiliano Braga","id":"way/628924111","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9424282,-8.0400333],[-34.9427063,-8.0398925]]}},{"type":"Feature","id":"way/628924112","properties":{"name":"Rua Emiliano Braga","id":"way/628924112","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9427063,-8.0398925],[-34.9430873,-8.0396763]]}},{"type":"Feature","id":"way/633762070","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/633762070","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.927876,-8.0467486],[-34.9250659,-8.048297],[-34.9247983,-8.0484445],[-34.9221458,-8.0499057]]}},{"type":"Feature","id":"way/633762073","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/633762073","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9278311,-8.0466663],[-34.9285346,-8.0462765],[-34.9288052,-8.0461267],[-34.9297777,-8.0455884],[-34.9298923,-8.045525]]}},{"type":"Feature","id":"way/636685320","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/636685320","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9063101,-8.144453],[-34.9071175,-8.1460951],[-34.9076535,-8.1471646]]}},{"type":"Feature","id":"way/636685326","properties":{"name":"Rua Baltazar Passos","id":"way/636685326","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9061984,-8.1445066],[-34.9058576,-8.1446785],[-34.9058104,-8.1447023]]}},{"type":"Feature","id":"way/636685329","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/636685329","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9057446,-8.1434993],[-34.9057294,-8.1434663],[-34.9051824,-8.1421722]]}},{"type":"Feature","id":"way/637589775","properties":{"name":"Praça da República","id":"way/637589775","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8784444,-8.060313],[-34.8786185,-8.0603021],[-34.8786706,-8.0602974]]}},{"type":"Feature","id":"way/637589776","properties":{"name":"Praça da República","id":"way/637589776","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.877961,-8.0603179],[-34.8779789,-8.0603164],[-34.878132,-8.0603026],[-34.878204,-8.0603012],[-34.87828,-8.0603007],[-34.8784444,-8.060313]]}},{"type":"Feature","id":"way/637591719","properties":{"name":"Rua Doutor Miguel Vieira Ferreira","id":"way/637591719","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9289815,-8.0535234],[-34.9293497,-8.0532979],[-34.9299728,-8.0529534],[-34.9304524,-8.0526995],[-34.9310083,-8.0523775],[-34.9330577,-8.0512389]]}},{"type":"Feature","id":"way/641636463","properties":{"name":"Avenida da Recuperação","id":"way/641636463","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9421175,-8.0170703],[-34.9419282,-8.0171798],[-34.9416258,-8.0173729]]}},{"type":"Feature","id":"way/642397265","properties":{"name":"Rua Recanto do Rio","id":"way/642397265","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9033829,-7.9995944],[-34.9036013,-7.9994355],[-34.9039744,-7.9992013],[-34.9045124,-7.9988367]]}},{"type":"Feature","id":"way/645425614","properties":{"name":"Rua Marquês de Maricá","id":"way/645425614","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9187719,-8.047122],[-34.9188494,-8.0470779],[-34.919025,-8.0469779],[-34.9193573,-8.0467887],[-34.9195088,-8.046713],[-34.9197757,-8.0465656],[-34.91986,-8.0465168],[-34.9201821,-8.0463306],[-34.9205387,-8.0461229]]}},{"type":"Feature","id":"way/645444384","properties":{"name":"Rua Lagoa do Rancho","id":"way/645444384","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9133746,-8.0438461],[-34.9131976,-8.0437584],[-34.9130722,-8.0436847],[-34.9128027,-8.0435334],[-34.9125633,-8.04337],[-34.9123178,-8.0431854],[-34.9120832,-8.0430095],[-34.9119665,-8.0429305],[-34.9118974,-8.0428833],[-34.9118451,-8.0428561],[-34.9117955,-8.0428369],[-34.9116828,-8.042809],[-34.9114843,-8.0427738]]}},{"type":"Feature","id":"way/645454931","properties":{"name":"Rua Alberto Paiva","id":"way/645454931","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9021992,-8.043951],[-34.9022901,-8.0439672],[-34.9025318,-8.0441037],[-34.9026894,-8.0441913],[-34.9028644,-8.0442936],[-34.9030747,-8.0444067],[-34.9031526,-8.044461],[-34.9032063,-8.0445326],[-34.9032068,-8.0446258]]}},{"type":"Feature","id":"way/645467520","properties":{"name":"Rua Doutor Leopoldo Lins","id":"way/645467520","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8897148,-8.0497847],[-34.8887569,-8.0495617],[-34.8886644,-8.0495697]]}},{"type":"Feature","id":"way/646670257","properties":{"name":"Rua Castro Alves","id":"way/646670257","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8873315,-8.0396478],[-34.8881709,-8.0390653],[-34.888733,-8.0385776],[-34.888975,-8.0383713],[-34.8893412,-8.0380528],[-34.8898307,-8.0377291]]}},{"type":"Feature","id":"way/647110234","properties":{"name":"Avenida Santos Dumont","id":"way/647110234","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8950193,-8.0304111],[-34.8950395,-8.0296628]]}},{"type":"Feature","id":"way/647111564","properties":{"name":"Rua General Edson Amâncio Ramalho","id":"way/647111564","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.901159,-8.1213724],[-34.9011522,-8.1212706],[-34.9010966,-8.1205438],[-34.9010304,-8.1196183],[-34.9010274,-8.1195904],[-34.9010228,-8.1195051],[-34.9009564,-8.1184691],[-34.9009278,-8.1180376],[-34.9008907,-8.1176678],[-34.9008839,-8.1176298],[-34.9008624,-8.1175106]]}},{"type":"Feature","id":"way/647112865","properties":{"name":"Avenida Santos Dumont","id":"way/647112865","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8950395,-8.0296628],[-34.8950927,-8.028628]]}},{"type":"Feature","id":"way/647116507","properties":{"name":"Rua Treze de Junho","id":"way/647116507","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8972601,-8.0303832],[-34.8974249,-8.0303862]]}},{"type":"Feature","id":"way/647116510","properties":{"name":"Rua Salvador de Sá","id":"way/647116510","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8978947,-8.0312583],[-34.8979429,-8.0313357],[-34.8979734,-8.0313801],[-34.8980139,-8.031439]]}},{"type":"Feature","id":"way/649368025","properties":{"name":"Rua do Aragão","id":"way/649368025","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.886064,-8.0624169],[-34.8865476,-8.0622177],[-34.8873992,-8.0618209]]}},{"type":"Feature","id":"way/649370828","properties":{"name":"Rua Rezende","id":"way/649370828","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.931727,-8.0381079],[-34.931163,-8.0363022],[-34.9305118,-8.0341964],[-34.9303314,-8.0334511],[-34.9302832,-8.0332521]]}},{"type":"Feature","id":"way/649747902","properties":{"name":"Rua Barros Barreto","id":"way/649747902","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8865989,-8.0444709],[-34.8861629,-8.0447909]]}},{"type":"Feature","id":"way/649747903","properties":{"name":"Rua Barros Barreto","id":"way/649747903","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8870833,-8.0441313],[-34.8865989,-8.0444709]]}},{"type":"Feature","id":"way/649757527","properties":{"name":"Rua Paris","id":"way/649757527","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.913721,-8.1059633],[-34.9136984,-8.1058602],[-34.9136819,-8.1057795],[-34.9134515,-8.1047667],[-34.9133775,-8.1044416]]}},{"type":"Feature","id":"way/649771939","properties":{"name":"Rua Monte Belo","id":"way/649771939","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9191706,-8.0199383],[-34.9191137,-8.0198309],[-34.9190509,-8.0196913],[-34.9189904,-8.0195471],[-34.9188969,-8.0193251]]}},{"type":"Feature","id":"way/649776874","properties":{"name":"Travessa do Cais da Detenção","id":"way/649776874","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8842363,-8.0659546],[-34.8844468,-8.0656506]]}},{"type":"Feature","id":"way/649802742","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/649802742","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.931974,-8.1080589],[-34.9315795,-8.1079558],[-34.9314152,-8.107912]]}},{"type":"Feature","id":"way/649802743","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/649802743","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9352269,-8.1091524],[-34.9351703,-8.1091142],[-34.9351445,-8.1090977],[-34.9350583,-8.1090425],[-34.9349177,-8.1089518],[-34.9348102,-8.1088825],[-34.9346593,-8.1088022],[-34.9345346,-8.1087498],[-34.9341939,-8.1086621],[-34.9341604,-8.1086535],[-34.9338178,-8.1085659],[-34.9334845,-8.1084729],[-34.9332923,-8.1084214],[-34.9328022,-8.1082884],[-34.9323909,-8.1081787],[-34.931974,-8.1080589]]}},{"type":"Feature","id":"way/650401882","properties":{"name":"Travessa Tiradentes","id":"way/650401882","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8700388,-8.0596567],[-34.8702759,-8.0595637],[-34.8705612,-8.0594601]]}},{"type":"Feature","id":"way/650412041","properties":{"name":"Rua Bernardo Vieira de Melo","id":"way/650412041","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8706461,-8.054736],[-34.8706537,-8.0546857],[-34.8706552,-8.054612],[-34.8706538,-8.054538],[-34.8706443,-8.0544564]]}},{"type":"Feature","id":"way/650426492","properties":{"name":"Estrada do Bongi","id":"way/650426492","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9160004,-8.0651646],[-34.9151945,-8.0654918],[-34.9151558,-8.0655121],[-34.9149343,-8.0656282],[-34.9144441,-8.065885],[-34.91442,-8.0658977],[-34.9141289,-8.0660507]]}},{"type":"Feature","id":"way/650850073","properties":{"name":"Rua Visconde de Pelotas","id":"way/650850073","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9093116,-8.0775597],[-34.9094211,-8.0782306]]}},{"type":"Feature","id":"way/650859657","properties":{"name":"Rua Monsenhor Fabrício","id":"way/650859657","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9277866,-8.0403187],[-34.9278047,-8.0403081],[-34.9284422,-8.0399371]]}},{"type":"Feature","id":"way/650859658","properties":{"name":"Rua Doutor José Anastacio da Silva Guimarães","id":"way/650859658","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9285056,-8.0383747],[-34.9285458,-8.0383588],[-34.928574,-8.0383548],[-34.9292533,-8.0384295]]}},{"type":"Feature","id":"way/651714253","properties":{"name":"Acesso Oficina Cerâmica Francisco Brennand","id":"way/651714253","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9728476,-8.0511566],[-34.9730333,-8.0512466],[-34.9732647,-8.051277],[-34.9733698,-8.0512815],[-34.9735043,-8.0512871],[-34.973705,-8.0513155],[-34.9738402,-8.0513764],[-34.9739364,-8.0514453],[-34.9740204,-8.051567],[-34.9742825,-8.0518813],[-34.9743706,-8.0519968],[-34.974475,-8.0521692],[-34.9747515,-8.052668],[-34.9748346,-8.0527528],[-34.9748846,-8.0528039],[-34.9750586,-8.0529417],[-34.9752009,-8.0530617],[-34.9753126,-8.0531425],[-34.9752081,-8.0534791],[-34.9747269,-8.0534912],[-34.9745938,-8.0535217],[-34.9743542,-8.0536494],[-34.9742748,-8.0536998]]}},{"type":"Feature","id":"way/653438938","properties":{"name":"Barro","id":"way/653438938","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9454317,-8.0886116],[-34.9457113,-8.0887794],[-34.9461633,-8.0890507],[-34.9461732,-8.0890567]]}},{"type":"Feature","id":"way/653438939","properties":{"name":"Barro","id":"way/653438939","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9461275,-8.0891297],[-34.9456663,-8.088855],[-34.9453905,-8.0886907]]}},{"type":"Feature","id":"way/656029033","properties":{"name":"Rua Antônio Falcão","id":"way/656029033","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8979388,-8.1145099],[-34.8991302,-8.1138869]]}},{"type":"Feature","id":"way/656029034","properties":{"name":"Rua Antônio Falcão","id":"way/656029034","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8967322,-8.1151493],[-34.8968219,-8.1151023],[-34.8975433,-8.1147244],[-34.8979388,-8.1145099]]}},{"type":"Feature","id":"way/656104878","properties":{"name":"Rua da Coragem","id":"way/656104878","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8899906,-8.0352684],[-34.8891585,-8.0347325]]}},{"type":"Feature","id":"way/656105202","properties":{"name":"Rua Baltazar Passos","id":"way/656105202","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9058104,-8.1447023],[-34.9052381,-8.1449917],[-34.9051137,-8.1450546]]}},{"type":"Feature","id":"way/656107800","properties":{"name":"Avenida Prefeito Lima Castro","id":"way/656107800","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9023131,-8.0644711],[-34.9023662,-8.0648531],[-34.9023789,-8.0650742],[-34.9023715,-8.0651963]]}},{"type":"Feature","id":"way/656122407","properties":{"name":"Avenida Poeta Vinicius de Morais","id":"way/656122407","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8797705,-8.0160242],[-34.879765,-8.0162025],[-34.8797554,-8.0165069],[-34.8797531,-8.0165779],[-34.8797169,-8.016951],[-34.8796706,-8.0173324],[-34.8796438,-8.0175181],[-34.8796078,-8.0176762],[-34.8795486,-8.0178435],[-34.8794916,-8.0180088],[-34.8793669,-8.018299],[-34.8792744,-8.0184005],[-34.8791785,-8.0184829],[-34.8790015,-8.0186144],[-34.8787569,-8.0187906],[-34.8784965,-8.0189709],[-34.8782246,-8.0191037],[-34.8779599,-8.0192319],[-34.87766,-8.0193606],[-34.8773868,-8.0194794],[-34.8771169,-8.0196017],[-34.876859,-8.0197026],[-34.8765358,-8.0198222],[-34.876285,-8.0198739],[-34.8760758,-8.0199138],[-34.8757741,-8.0199623],[-34.8755738,-8.0199864]]}},{"type":"Feature","id":"way/656124041","properties":{"name":"Avenida Professor José dos Anjos","id":"way/656124041","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8753026,-8.0201451],[-34.8751852,-8.0200787]]}},{"type":"Feature","id":"way/656150546","properties":{"name":"Rua Souza Bandeira","id":"way/656150546","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9178767,-8.0488735],[-34.9177828,-8.0486106],[-34.9176836,-8.0483424]]}},{"type":"Feature","id":"way/656301112","properties":{"name":"Rua Marechal Deodoro","id":"way/656301112","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.884002,-8.0365126],[-34.8840218,-8.0365311],[-34.8840386,-8.0365587],[-34.8840535,-8.0366041]]}},{"type":"Feature","id":"way/660297201","properties":{"name":"Rua Doutor Benigno Jordão de Vasconcelos","id":"way/660297201","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9502929,-8.1225144],[-34.950145,-8.1243121],[-34.9501236,-8.1245537],[-34.9501035,-8.124867],[-34.9500854,-8.1251],[-34.9500059,-8.1260145],[-34.9499881,-8.1262483]]}},{"type":"Feature","id":"way/660711132","properties":{"name":"Rua Doutor Benigno Jordão de Vasconcelos","id":"way/660711132","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9520373,-8.1164918],[-34.9520269,-8.1165088],[-34.9520068,-8.1165479],[-34.9519894,-8.1165954],[-34.9517681,-8.117267],[-34.9517042,-8.1174608],[-34.9516907,-8.1175018],[-34.9514325,-8.1182314],[-34.9513963,-8.1183184],[-34.951354,-8.118402],[-34.9512749,-8.1185182],[-34.9508786,-8.1190207],[-34.9506158,-8.1193606],[-34.9505574,-8.1194356],[-34.9504862,-8.1195306],[-34.950422,-8.1196235],[-34.9503804,-8.1197005],[-34.9503522,-8.1197556],[-34.9503194,-8.1198578],[-34.9503033,-8.1199394],[-34.9502512,-8.1205834],[-34.9502282,-8.1208681],[-34.9502188,-8.1209783],[-34.9502195,-8.1210792],[-34.9502282,-8.1211589],[-34.9502543,-8.1212684],[-34.9502899,-8.1214032],[-34.9503199,-8.1215052],[-34.9503375,-8.1215685],[-34.9503396,-8.1216463],[-34.9503408,-8.1216719],[-34.9503433,-8.1217229],[-34.9503397,-8.1217914],[-34.9503127,-8.1221832],[-34.950304,-8.1223956]]}},{"type":"Feature","id":"way/662266075","properties":{"id":"way/662266075","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9262853,-8.0577428],[-34.9262761,-8.0576149]]}},{"type":"Feature","id":"way/662266076","properties":{"name":"Rua Antônio Valdevino Costa","id":"way/662266076","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9269862,-8.0577471],[-34.9262853,-8.0577428],[-34.9260475,-8.0577474]]}},{"type":"Feature","id":"way/662266086","properties":{"name":"Rua Elvira Carreira de Oliveira","id":"way/662266086","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8952264,-8.0642438],[-34.8949599,-8.0652289]]}},{"type":"Feature","id":"way/662901550","properties":{"name":"Acesso Embarque TIP","id":"way/662901550","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9833784,-8.0637797],[-34.9832274,-8.0637578],[-34.9820569,-8.0635142],[-34.9819556,-8.0634932],[-34.9817921,-8.0634608],[-34.9817009,-8.0634393],[-34.9816594,-8.0634203],[-34.9816325,-8.0634011],[-34.9815896,-8.0633473],[-34.9815628,-8.0632822]]}},{"type":"Feature","id":"way/663265621","properties":{"name":"Rua Historiador Jordão Emerenciano","id":"way/663265621","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9434009,-8.0360022],[-34.9435586,-8.036079],[-34.9436897,-8.0361229],[-34.9437929,-8.0361461],[-34.9439029,-8.0361654],[-34.9440473,-8.0361862]]}},{"type":"Feature","id":"way/666158441","properties":{"name":"Avenida Professor José dos Anjos","id":"way/666158441","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8904733,-8.0275835],[-34.8915003,-8.0276514]]}},{"type":"Feature","id":"way/666158444","properties":{"name":"Avenida Professor José dos Anjos","id":"way/666158444","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8915003,-8.0276514],[-34.8926981,-8.0277397],[-34.8929603,-8.0277595]]}},{"type":"Feature","id":"way/666367120","properties":{"name":"Via Mangue - Pista Leste","id":"way/666367120","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8907314,-8.0972146],[-34.8907378,-8.0971167],[-34.8907411,-8.0970868],[-34.8907831,-8.096871],[-34.8907911,-8.0968448],[-34.890824,-8.0967452],[-34.890883,-8.0965919],[-34.8909359,-8.0964856],[-34.8909996,-8.0963735],[-34.8910768,-8.0962606],[-34.8911693,-8.0961384],[-34.8913222,-8.0959771],[-34.8915877,-8.095772],[-34.8917688,-8.0956638],[-34.8918915,-8.0955974],[-34.8921094,-8.0954726],[-34.8922965,-8.0953471],[-34.8924963,-8.0952004],[-34.892664,-8.0950524],[-34.8927773,-8.0949481],[-34.8929141,-8.0948014],[-34.8930482,-8.0946434],[-34.8931675,-8.0944994],[-34.8933131,-8.0943287],[-34.893417,-8.0941833],[-34.8935531,-8.0939829],[-34.8936617,-8.0938089],[-34.8938314,-8.0935042],[-34.8939487,-8.0932599],[-34.8940567,-8.0930289],[-34.8941077,-8.0928901],[-34.8941975,-8.0926352],[-34.8942411,-8.0924765],[-34.894282,-8.0922906],[-34.8943115,-8.0920596],[-34.8943155,-8.0917907],[-34.8943091,-8.0917186],[-34.8942934,-8.0915411],[-34.8942693,-8.0913878],[-34.894227,-8.0912218],[-34.8941861,-8.0911003]]}},{"type":"Feature","id":"way/666367121","properties":{"name":"Via Mangue - Pista Leste","id":"way/666367121","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8941861,-8.0911003],[-34.8941284,-8.0909908],[-34.8940879,-8.0909154],[-34.8940305,-8.0908208],[-34.893945,-8.0907186],[-34.8938545,-8.0906246],[-34.8937553,-8.0905446],[-34.8936755,-8.0904892],[-34.8935642,-8.0904271],[-34.8934612,-8.0903797],[-34.8933385,-8.0903339],[-34.893189,-8.0902924],[-34.893014,-8.0902539],[-34.892837,-8.0902081],[-34.8926683,-8.0901417],[-34.892551,-8.0900856],[-34.8924098,-8.0899979],[-34.8922891,-8.0899057],[-34.8921741,-8.0898041],[-34.8920682,-8.0896926],[-34.8919552,-8.0895478],[-34.8919039,-8.0894648],[-34.8918358,-8.089347],[-34.8917775,-8.0892209],[-34.8916766,-8.0889885],[-34.8916162,-8.0888534]]}},{"type":"Feature","id":"way/681293313","properties":{"name":"Ciclovia Entre Pontes","id":"way/681293313","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9047685,-8.0525897],[-34.9047233,-8.0526255],[-34.9046932,-8.0526718],[-34.9046839,-8.0527006],[-34.9046938,-8.0527254],[-34.904717,-8.0527415],[-34.904736,-8.0527426],[-34.9047467,-8.0527363],[-34.9047595,-8.0527288],[-34.9047727,-8.0526959],[-34.9047754,-8.0526508],[-34.9047685,-8.0525897],[-34.9048081,-8.0523302],[-34.9048687,-8.0509957],[-34.9048672,-8.0505802],[-34.9048426,-8.0503394],[-34.9048005,-8.0501137],[-34.9047331,-8.0499038],[-34.9046185,-8.049592],[-34.9043889,-8.0490883],[-34.9042209,-8.0485419],[-34.9040767,-8.0479716],[-34.9040157,-8.047685],[-34.9039984,-8.0473924],[-34.9040132,-8.0469965],[-34.9040759,-8.0468539],[-34.9040796,-8.0464811],[-34.9041311,-8.0460439],[-34.9041438,-8.0459364],[-34.9041286,-8.0458946],[-34.9040804,-8.0458745],[-34.90398,-8.0458854],[-34.9038971,-8.0459268],[-34.9038692,-8.0459724],[-34.9038795,-8.0460152],[-34.9040796,-8.0464811]]}},{"type":"Feature","id":"way/681309548","properties":{"name":"Rua João Martins de Ataíde","id":"way/681309548","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9412361,-8.0477588],[-34.9409437,-8.047794],[-34.9406746,-8.0478309]]}},{"type":"Feature","id":"way/681309551","properties":{"name":"Rua Alvaro Teixeira de Mesquita","id":"way/681309551","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9406746,-8.0478309],[-34.9404515,-8.0478982],[-34.9401867,-8.0478549],[-34.9400542,-8.0478122]]}},{"type":"Feature","id":"way/681309553","properties":{"name":"Travessa José Frigueiro","id":"way/681309553","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9412361,-8.0477588],[-34.9410031,-8.0473753],[-34.9409695,-8.0473405],[-34.9409357,-8.0473113],[-34.9408958,-8.047287],[-34.9408358,-8.0472535],[-34.9407338,-8.0472136],[-34.9406453,-8.0471904],[-34.9405349,-8.0471778]]}},{"type":"Feature","id":"way/683012039","properties":{"name":"Rua Pintor Antônio Albuquerque","id":"way/683012039","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9226444,-8.1073334],[-34.9223352,-8.1072953]]}},{"type":"Feature","id":"way/683033001","properties":{"name":"Rua Mem de Sá","id":"way/683033001","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8904548,-8.0297566],[-34.8901168,-8.0296986],[-34.8898614,-8.0296663]]}},{"type":"Feature","id":"way/683254959","properties":{"name":"Rua Doutor João Santos Filho","id":"way/683254959","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9134996,-8.0364268],[-34.9136193,-8.036406],[-34.9136245,-8.0364052],[-34.91371,-8.0363975],[-34.9137577,-8.0364025],[-34.9137907,-8.0364281],[-34.9138148,-8.0364502],[-34.9138361,-8.0364783],[-34.9138648,-8.0365366]]}},{"type":"Feature","id":"way/683265615","properties":{"name":"Rua Tenente Aurélio Sampaio","id":"way/683265615","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9147446,-8.1356019],[-34.9147239,-8.1356067],[-34.913776,-8.1358339]]}},{"type":"Feature","id":"way/683266336","properties":{"name":"Rua João Cardoso Aires","id":"way/683266336","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9113547,-8.1410155],[-34.9115213,-8.14094],[-34.9115513,-8.1409264]]}},{"type":"Feature","id":"way/683266337","properties":{"name":"Rua João Cardoso Aires","id":"way/683266337","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9115513,-8.1409264],[-34.9115973,-8.1409073]]}},{"type":"Feature","id":"way/683266704","properties":{"name":"Rua Baltazar Passos","id":"way/683266704","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9118193,-8.1418611],[-34.9115363,-8.1419827],[-34.9114687,-8.1420113]]}},{"type":"Feature","id":"way/686979459","properties":{"name":"Rua Potengy","id":"way/686979459","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.917528,-8.1076803],[-34.9172457,-8.1079963],[-34.9171478,-8.1081058]]}},{"type":"Feature","id":"way/686979460","properties":{"name":"Rua Potengy","id":"way/686979460","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9171478,-8.1081058],[-34.9167986,-8.1085045],[-34.9167285,-8.1085846]]}},{"type":"Feature","id":"way/690779923","properties":{"name":"Estrada Mumbeca","id":"way/690779923","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.915908,-7.9525553],[-34.9160743,-7.9523256],[-34.9161675,-7.9521761],[-34.9162649,-7.9520038],[-34.9163378,-7.9518587]]}},{"type":"Feature","id":"way/696045645","properties":{"name":"Rua da Moeda","id":"way/696045645","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8727539,-8.0645669],[-34.8727191,-8.0645364],[-34.872538,-8.0645072],[-34.8724823,-8.0645218]]}},{"type":"Feature","id":"way/700008077","properties":{"name":"Rua do Hospício","id":"way/700008077","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8840259,-8.060816],[-34.884044,-8.0608576]]}},{"type":"Feature","id":"way/700013794","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/700013794","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9298923,-8.045525],[-34.9299843,-8.0454741],[-34.9308358,-8.0450001]]}},{"type":"Feature","id":"way/700013797","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/700013797","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9299359,-8.0456083],[-34.9298229,-8.045671],[-34.9288423,-8.0462151],[-34.9285821,-8.0463595],[-34.927876,-8.0467486]]}},{"type":"Feature","id":"way/700013815","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/700013815","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8972259,-8.0686321],[-34.8974801,-8.0686695],[-34.8975526,-8.0686801],[-34.8980575,-8.0686738]]}},{"type":"Feature","id":"way/700750680","properties":{"name":"Ciclovia Camilo Simões","id":"way/700750680","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8672478,-8.0299047],[-34.8670367,-8.0301457],[-34.8669655,-8.0302526],[-34.8669362,-8.0303294],[-34.8669183,-8.0304256],[-34.8669683,-8.0305402],[-34.8671096,-8.0307873],[-34.8672227,-8.0309582],[-34.8672883,-8.0309946],[-34.8673592,-8.031057],[-34.8675583,-8.0313595],[-34.8677446,-8.0316332],[-34.8680199,-8.0320689],[-34.8681366,-8.0321856],[-34.8682705,-8.0323598],[-34.869019,-8.0333558],[-34.8693076,-8.0337103],[-34.8693683,-8.0337848],[-34.8697596,-8.0342399],[-34.8701929,-8.034721],[-34.8704818,-8.0350877],[-34.8706324,-8.0352843],[-34.8706596,-8.0353209],[-34.8707607,-8.0354517],[-34.870948,-8.0356452]]}},{"type":"Feature","id":"way/700979476","properties":{"id":"way/700979476","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9787486,-8.0758393],[-34.978663,-8.0760123],[-34.9786751,-8.0760182]]}},{"type":"Feature","id":"way/704150020","properties":{"name":"Ciclovia Norte","id":"way/704150020","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8770289,-8.0474313],[-34.8778751,-8.0467863],[-34.878044,-8.0466458],[-34.8782351,-8.0464942],[-34.8784339,-8.0463458],[-34.8786254,-8.0461945],[-34.8796657,-8.0453788],[-34.8796892,-8.0453554],[-34.8798122,-8.0452626],[-34.8799388,-8.0451433],[-34.8801938,-8.044961],[-34.8803377,-8.044843],[-34.8803982,-8.0447978],[-34.8806093,-8.0446444],[-34.8807469,-8.0445692],[-34.880947,-8.044481],[-34.8815839,-8.0442154],[-34.8816829,-8.0441771],[-34.8818244,-8.0441156],[-34.8819571,-8.0439939],[-34.8820226,-8.0439503],[-34.8822749,-8.0438376],[-34.8823528,-8.043842],[-34.8824465,-8.0438232],[-34.8825774,-8.0437664],[-34.8830161,-8.0435823],[-34.8831232,-8.0435413],[-34.8833525,-8.0434398],[-34.8835025,-8.0433667]]}},{"type":"Feature","id":"way/704218858","properties":{"name":"Rua Floriano Peixoto","id":"way/704218858","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8809231,-8.0638489],[-34.8809536,-8.0639227],[-34.8809679,-8.0639535],[-34.8810004,-8.0640006],[-34.8810702,-8.0640918],[-34.8811432,-8.0641772],[-34.8812941,-8.0643518],[-34.8813906,-8.064462],[-34.8814778,-8.0645556],[-34.8816419,-8.0647445],[-34.8820131,-8.0650748],[-34.8820975,-8.0651563],[-34.882268,-8.065316],[-34.8823642,-8.0654204]]}},{"type":"Feature","id":"way/704220886","properties":{"name":"Rua dos Palmares","id":"way/704220886","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8877669,-8.0489706],[-34.8879969,-8.0484356],[-34.8880655,-8.0482915],[-34.8882309,-8.0480106],[-34.8882776,-8.0479372]]}},{"type":"Feature","id":"way/704220887","properties":{"name":"Rua Doutor Carlos Chagas","id":"way/704220887","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8896203,-8.0477566],[-34.8897029,-8.0477118],[-34.8897356,-8.0476726],[-34.8897536,-8.0476345]]}},{"type":"Feature","id":"way/704220888","properties":{"name":"Avenida João de Barros","id":"way/704220888","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8898089,-8.0479263],[-34.8897939,-8.048202]]}},{"type":"Feature","id":"way/704221527","properties":{"name":"Rua Madre de Deus","id":"way/704221527","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8734772,-8.0665105],[-34.8734994,-8.0665602],[-34.8735154,-8.0665886]]}},{"type":"Feature","id":"way/704221528","properties":{"name":"Cais da Alfândega","id":"way/704221528","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8733383,-8.0661687],[-34.8732377,-8.0661537],[-34.8731658,-8.066134],[-34.8730715,-8.0660912],[-34.8730035,-8.0660519],[-34.8729262,-8.0660001]]}},{"type":"Feature","id":"way/706175628","properties":{"name":"Rua Manoel de Brito","id":"way/706175628","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8892782,-8.087926],[-34.8892515,-8.0879022],[-34.8891563,-8.0878175],[-34.8886878,-8.0873661],[-34.8886704,-8.0873481],[-34.8886234,-8.0872966]]}},{"type":"Feature","id":"way/706175631","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/706175631","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8952482,-8.0694011],[-34.8954338,-8.069304],[-34.8957054,-8.0691644]]}},{"type":"Feature","id":"way/706175632","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/706175632","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8980575,-8.0686738],[-34.8981521,-8.068665],[-34.8982895,-8.0686439],[-34.8987086,-8.0685464],[-34.8995581,-8.0682512],[-34.8998065,-8.0681669],[-34.9000669,-8.0680786],[-34.9001878,-8.0680253]]}},{"type":"Feature","id":"way/707023323","properties":{"name":"Avenida Professor Artur de Sá","id":"way/707023323","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9480808,-8.0464119],[-34.9482766,-8.0464145],[-34.9484663,-8.046411],[-34.9486908,-8.0464109],[-34.9489873,-8.0464095]]}},{"type":"Feature","id":"way/707023325","properties":{"name":"Avenida Professor Artur de Sá","id":"way/707023325","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9450254,-8.0464481],[-34.9452427,-8.0464399],[-34.946035,-8.046439],[-34.9467511,-8.046419],[-34.9477057,-8.0464089],[-34.9480808,-8.0464119]]}},{"type":"Feature","id":"way/707953909","properties":{"name":"Avenida Afonso Olindense","id":"way/707953909","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9553001,-8.0331986],[-34.9552448,-8.0332776],[-34.9552055,-8.0333253]]}},{"type":"Feature","id":"way/707953910","properties":{"name":"Avenida Afonso Olindense","id":"way/707953910","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9552055,-8.0333253],[-34.9551588,-8.0334092]]}},{"type":"Feature","id":"way/723619799","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/723619799","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8840253,-8.0426795],[-34.8840034,-8.0426719],[-34.8838254,-8.0425925],[-34.8833724,-8.0423771],[-34.8832177,-8.0423187],[-34.8831462,-8.0422914],[-34.8829936,-8.0422279],[-34.882397,-8.0419475],[-34.8823084,-8.0419065],[-34.8811322,-8.0413643],[-34.8809502,-8.0412716],[-34.8806872,-8.0411551],[-34.880643,-8.0411347],[-34.880498,-8.0410716],[-34.880132,-8.0408955],[-34.8799081,-8.0407914],[-34.8795922,-8.0406332],[-34.8791228,-8.0404187],[-34.8789009,-8.0403194],[-34.8788495,-8.0403058],[-34.8787994,-8.0403012]]}},{"type":"Feature","id":"way/723906438","properties":{"name":"Avenida Professor José dos Anjos","id":"way/723906438","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8892768,-8.0278413],[-34.8891988,-8.0278325]]}},{"type":"Feature","id":"way/723906439","properties":{"name":"Avenida Professor José dos Anjos","id":"way/723906439","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8929106,-8.0280789],[-34.8907025,-8.0279521],[-34.8899995,-8.0279005],[-34.8897816,-8.0278793],[-34.8892768,-8.0278413]]}},{"type":"Feature","id":"way/723919334","properties":{"name":"Rua Oscar de Barros","id":"way/723919334","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9162378,-8.0226623],[-34.916218,-8.0226292]]}},{"type":"Feature","id":"way/723919335","properties":{"name":"Rua Oscar de Barros","id":"way/723919335","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9161726,-8.0225487],[-34.9159947,-8.0221298]]}},{"type":"Feature","id":"way/727928700","properties":{"name":"Avenida Rio Botafogo","id":"way/727928700","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9206984,-7.9638127],[-34.920679,-7.9637722],[-34.9206726,-7.9637254],[-34.92068,-7.9636829],[-34.9206967,-7.9636361],[-34.9209338,-7.9632937],[-34.9210759,-7.9630852],[-34.9213039,-7.9626854],[-34.9213287,-7.9626277],[-34.9213468,-7.9625719],[-34.9213441,-7.9625201]]}},{"type":"Feature","id":"way/727928701","properties":{"name":"Avenida Rio Botafogo","id":"way/727928701","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9224673,-7.9647839],[-34.9223909,-7.9645216],[-34.922362,-7.9644393],[-34.9223198,-7.9643443],[-34.9222722,-7.9642434],[-34.9221428,-7.9640402],[-34.9220925,-7.9639811],[-34.9219718,-7.9638868],[-34.9218947,-7.9638469],[-34.9217813,-7.9638024],[-34.9215292,-7.9637354],[-34.9214213,-7.9637261],[-34.9213368,-7.9637247],[-34.9212074,-7.9637566],[-34.9210699,-7.9638004],[-34.9209029,-7.9638562],[-34.9208225,-7.9638589],[-34.9207608,-7.9638449],[-34.9206984,-7.9638127]]}},{"type":"Feature","id":"way/732593573","properties":{"name":"Cais da Alfândega","id":"way/732593573","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.87439,-8.0639809],[-34.8743713,-8.0640647],[-34.8743445,-8.0642128],[-34.8742877,-8.0645136],[-34.8742433,-8.0647027],[-34.8741586,-8.0649554],[-34.8741379,-8.0650093],[-34.8740774,-8.0652205],[-34.8739906,-8.0655807],[-34.873961,-8.0656861],[-34.8739243,-8.0657535]]}},{"type":"Feature","id":"way/737670594","properties":{"name":"Ciclovia Norte","id":"way/737670594","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8738564,-8.0499165],[-34.8739206,-8.0498012],[-34.8739717,-8.0497689],[-34.8750276,-8.0489756],[-34.8760113,-8.0481611],[-34.8760424,-8.0481388],[-34.8760758,-8.0481113],[-34.8761683,-8.0480518],[-34.8762967,-8.0479661],[-34.8763071,-8.0479514],[-34.8763116,-8.0479336],[-34.8763071,-8.0479144],[-34.8761059,-8.0476302],[-34.8761018,-8.0475827],[-34.8761063,-8.0474695],[-34.8761104,-8.0473801],[-34.876133,-8.0473401],[-34.8761652,-8.0473028],[-34.8763714,-8.0471244],[-34.876407,-8.0470941],[-34.8764357,-8.0470691]]}},{"type":"Feature","id":"way/750088492","properties":{"name":"Ponte Velha","id":"way/750088492","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8849973,-8.0648377],[-34.8850016,-8.0648318],[-34.8850196,-8.0648072]]}},{"type":"Feature","id":"way/750224855","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/750224855","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8927443,-8.0489622],[-34.8927109,-8.0489035],[-34.8926502,-8.0488122]]}},{"type":"Feature","id":"way/750224856","properties":{"name":"Rua Monte Castelo","id":"way/750224856","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.892832,-8.0492461],[-34.8928735,-8.0492522],[-34.8929018,-8.0492679],[-34.8929219,-8.0493078]]}},{"type":"Feature","id":"way/750454501","properties":{"name":"Túnel Chico Science","id":"way/750454501","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9013868,-8.0621336],[-34.9013778,-8.0620852]]}},{"type":"Feature","id":"way/752348375","properties":{"name":"Avenida Mário Álvares Pereira de Lyra","id":"way/752348375","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9405286,-8.0471526],[-34.9405137,-8.0471902],[-34.9404903,-8.0472233],[-34.9404598,-8.04725],[-34.9404238,-8.047269],[-34.9403843,-8.0472791],[-34.9403435,-8.0472798]]}},{"type":"Feature","id":"way/753946881","properties":{"name":"Rua Mem de Sá","id":"way/753946881","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8897174,-8.029651],[-34.8896921,-8.0296481]]}},{"type":"Feature","id":"way/753946882","properties":{"name":"Rua Mem de Sá","id":"way/753946882","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8897989,-8.0296597],[-34.8897473,-8.0296543]]}},{"type":"Feature","id":"way/753963895","properties":{"name":"Avenida Professor José dos Anjos","id":"way/753963895","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8948244,-8.0282411],[-34.894797,-8.0282372]]}},{"type":"Feature","id":"way/753963896","properties":{"name":"Avenida Professor José dos Anjos","id":"way/753963896","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8950578,-8.0282521],[-34.8948244,-8.0282411]]}},{"type":"Feature","id":"way/753963898","properties":{"name":"Rotatória de Água Fria","id":"way/753963898","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8971816,-8.0239667],[-34.89716,-8.0239405],[-34.897152,-8.0239075],[-34.8971594,-8.0238745]]}},{"type":"Feature","id":"way/754047612","properties":{"name":"Rua da Regeneração","id":"way/754047612","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8925563,-8.019005],[-34.8926461,-8.0189631],[-34.8928604,-8.0188532],[-34.8930437,-8.0187763]]}},{"type":"Feature","id":"way/754276497","properties":{"name":"Avenida Montevidéu","id":"way/754276497","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8929219,-8.0493078],[-34.8930887,-8.0497912]]}},{"type":"Feature","id":"way/754547715","properties":{"name":"Avenida Agamenon Magalhães - Pista Local","id":"way/754547715","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8841579,-8.0427741],[-34.8841551,-8.0427731],[-34.884101,-8.0427477],[-34.8840805,-8.0427357],[-34.8840627,-8.0427219],[-34.8840482,-8.0427075],[-34.8840253,-8.0426795]]}},{"type":"Feature","id":"way/756207409","properties":{"id":"way/756207409","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9071533,-8.1308958],[-34.9072573,-8.1306746],[-34.9073129,-8.1305604]]}},{"type":"Feature","id":"way/756239442","properties":{"name":"Rua Baltazar Passos","id":"way/756239442","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9118481,-8.1418495],[-34.9118193,-8.1418611]]}},{"type":"Feature","id":"way/756239443","properties":{"name":"Rua Baltazar Passos","id":"way/756239443","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9120461,-8.1417641],[-34.91201,-8.14178]]}},{"type":"Feature","id":"way/756572707","properties":{"id":"way/756572707","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9176349,-8.1313745],[-34.9176229,-8.1314192],[-34.9176206,-8.1314267],[-34.917615,-8.1314441]]}},{"type":"Feature","id":"way/756572708","properties":{"id":"way/756572708","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9173315,-8.1322587],[-34.9172497,-8.132419],[-34.91718,-8.1325108],[-34.9171613,-8.1325422]]}},{"type":"Feature","id":"way/757050341","properties":{"id":"way/757050341","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9438714,-8.0186448],[-34.9444695,-8.0188262]]}},{"type":"Feature","id":"way/761542904","properties":{"name":"Avenida Santos","id":"way/761542904","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9554042,-8.1148455],[-34.955503,-8.1150205],[-34.9555624,-8.1151157],[-34.9556201,-8.1152143],[-34.9556399,-8.1152538],[-34.9556476,-8.1152734],[-34.9556533,-8.1152943],[-34.9556644,-8.1153517]]}},{"type":"Feature","id":"way/761542905","properties":{"name":"Avenida Engenho Serra Verde","id":"way/761542905","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9517585,-8.1127508],[-34.9517376,-8.1128464],[-34.951731,-8.1128928],[-34.9517174,-8.1129598],[-34.95171,-8.1129999],[-34.951679,-8.1132141],[-34.9516504,-8.1133489],[-34.9516165,-8.1135453],[-34.9515636,-8.113856],[-34.9515241,-8.1140458],[-34.9515006,-8.114172],[-34.9514436,-8.1144487],[-34.9514362,-8.1144931],[-34.9513832,-8.1147844],[-34.9513772,-8.1148168],[-34.9513559,-8.114969],[-34.9513372,-8.1150371],[-34.9513283,-8.1150654],[-34.9513166,-8.1150948],[-34.9513056,-8.1151104],[-34.9512916,-8.1151252],[-34.9512676,-8.1151437]]}},{"type":"Feature","id":"way/761542907","properties":{"name":"Rua Professor José Vicente","id":"way/761542907","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9245141,-8.1076033],[-34.9244449,-8.1080826],[-34.9243046,-8.1090545],[-34.9241241,-8.1102916],[-34.9241105,-8.1104322],[-34.9241049,-8.1104897]]}},{"type":"Feature","id":"way/762342877","properties":{"name":"Avenida Queixeramobim","id":"way/762342877","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.954808,-8.1223893],[-34.9547175,-8.1223598],[-34.9545848,-8.1223193],[-34.954336,-8.1222635]]}},{"type":"Feature","id":"way/762356036","properties":{"name":"Rua Visconde de Pelotas","id":"way/762356036","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9094211,-8.0782306],[-34.9094309,-8.0783759],[-34.9094383,-8.0784886],[-34.9094616,-8.0791459]]}},{"type":"Feature","id":"way/762658740","properties":{"name":"Rua da Aurora","id":"way/762658740","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8794013,-8.0585802],[-34.8793756,-8.0585391],[-34.8793416,-8.0584865]]}},{"type":"Feature","id":"way/762739492","properties":{"name":"Avenida Professor José dos Anjos","id":"way/762739492","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.878488,-8.022456],[-34.8783946,-8.022405],[-34.8776434,-8.0219398],[-34.8772883,-8.0217402],[-34.8769932,-8.0215743],[-34.8763847,-8.0212362],[-34.8758507,-8.0209387],[-34.8755627,-8.0207782],[-34.8752766,-8.0206188],[-34.8748602,-8.0203812],[-34.87472,-8.0203068],[-34.8746128,-8.0202499],[-34.8745248,-8.0202212],[-34.8744451,-8.0202059],[-34.874372,-8.0202033],[-34.8743287,-8.020211],[-34.8742788,-8.0202199],[-34.8735111,-8.020468]]}},{"type":"Feature","id":"way/762739493","properties":{"name":"Avenida Professor José dos Anjos","id":"way/762739493","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8783133,-8.0219232],[-34.8786502,-8.0221094]]}},{"type":"Feature","id":"way/762741649","properties":{"name":"Avenida Santos Dumont","id":"way/762741649","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8959693,-8.0327156],[-34.8959513,-8.0326882],[-34.8955136,-8.0320225],[-34.8950702,-8.0313359]]}},{"type":"Feature","id":"way/762741651","properties":{"name":"Rua José Alexandre Caçador","id":"way/762741651","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.894957,-8.0311786],[-34.8949019,-8.0310917],[-34.8946319,-8.0306335]]}},{"type":"Feature","id":"way/762748532","properties":{"name":"Rua Carlos Gomes","id":"way/762748532","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9131313,-8.0625844],[-34.9131653,-8.0627016],[-34.9133242,-8.0632264]]}},{"type":"Feature","id":"way/762748534","properties":{"name":"Estrada do Bongi","id":"way/762748534","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9175193,-8.0644074],[-34.917466,-8.0644542],[-34.9173629,-8.0645376],[-34.9172093,-8.0646375],[-34.9170337,-8.0647228],[-34.9165835,-8.0649156]]}},{"type":"Feature","id":"way/762748535","properties":{"name":"Rua Isaac Markman","id":"way/762748535","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9180338,-8.0655432],[-34.9186549,-8.0653209],[-34.9192929,-8.0650987],[-34.9198166,-8.0648962],[-34.9201079,-8.0648129],[-34.9201442,-8.0647991],[-34.9208135,-8.0645439],[-34.9210212,-8.064467],[-34.921082,-8.0644434],[-34.9214654,-8.0643088],[-34.9215546,-8.064279],[-34.9220154,-8.0641267]]}},{"type":"Feature","id":"way/762748536","properties":{"name":"Rua Pedro Américo","id":"way/762748536","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9175193,-8.0644074],[-34.9175571,-8.0644616],[-34.9177529,-8.0648918],[-34.9180338,-8.0655432]]}},{"type":"Feature","id":"way/762748537","properties":{"name":"Rua Cônsul Vilares Fragoso","id":"way/762748537","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9268509,-8.0654896],[-34.9255976,-8.0661161],[-34.9246234,-8.0666122],[-34.9239271,-8.0669484]]}},{"type":"Feature","id":"way/762748538","properties":{"name":"Rua Arsênio Calaça","id":"way/762748538","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9294465,-8.0646131],[-34.9294263,-8.0645324],[-34.9293385,-8.064235]]}},{"type":"Feature","id":"way/762748541","properties":{"name":"Rua Carlos Gomes","id":"way/762748541","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9133242,-8.0632264],[-34.9133476,-8.0633044]]}},{"type":"Feature","id":"way/762748542","properties":{"name":"Rua Carlos Gomes","id":"way/762748542","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9133707,-8.063381],[-34.9133807,-8.0634143]]}},{"type":"Feature","id":"way/762748543","properties":{"name":"Rua Carlos Gomes","id":"way/762748543","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9133476,-8.0633044],[-34.9133707,-8.063381]]}},{"type":"Feature","id":"way/762748799","properties":{"name":"Rua Tijucas","id":"way/762748799","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9294036,-8.059965],[-34.9291861,-8.0593953]]}},{"type":"Feature","id":"way/762753486","properties":{"name":"Avenida Maurício de Nassau","id":"way/762753486","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9271409,-8.0406719],[-34.9276079,-8.0404166],[-34.9276333,-8.0404033]]}},{"type":"Feature","id":"way/762754345","properties":{"name":"Rua Comendador Franco Ferreira","id":"way/762754345","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9287544,-8.0724549],[-34.92849,-8.0715515],[-34.9283943,-8.0711977],[-34.9283838,-8.0711589]]}},{"type":"Feature","id":"way/762754347","properties":{"name":"Avenida General San Martin","id":"way/762754347","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9291715,-8.0723513],[-34.9295584,-8.0733378]]}},{"type":"Feature","id":"way/762754348","properties":{"name":"Rua Professor Silvio da Cunha Santos","id":"way/762754348","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9287544,-8.0724549],[-34.9291715,-8.0723513]]}},{"type":"Feature","id":"way/762760194","properties":{"name":"Rua General Edson Amâncio Ramalho","id":"way/762760194","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9000452,-8.1123682],[-34.9000119,-8.1119276],[-34.8999837,-8.1116926],[-34.8999054,-8.1113102],[-34.8998724,-8.1111681],[-34.8998356,-8.111041],[-34.8998039,-8.1109456]]}},{"type":"Feature","id":"way/762760196","properties":{"name":"Rua Manoel de Brito","id":"way/762760196","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.889621,-8.0883362],[-34.8895768,-8.0882622],[-34.8895435,-8.0882247],[-34.8895106,-8.0881876],[-34.8894707,-8.0881428],[-34.8894309,-8.088098],[-34.8893798,-8.0880404],[-34.8892782,-8.087926]]}},{"type":"Feature","id":"way/762760197","properties":{"name":"Rua Barão de São Ângelo","id":"way/762760197","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8897222,-8.0882237],[-34.8896856,-8.0882658],[-34.889621,-8.0883362]]}},{"type":"Feature","id":"way/762896712","properties":{"name":"Rua dos Palmares","id":"way/762896712","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8874751,-8.0497278],[-34.8875043,-8.049652],[-34.8875283,-8.0495873]]}},{"type":"Feature","id":"way/762896713","properties":{"name":"Ciclovia Graça Araújo","id":"way/762896713","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8780848,-8.0562215],[-34.8791236,-8.0555498],[-34.8791461,-8.0555355],[-34.8805349,-8.0546527],[-34.8806068,-8.0546041],[-34.8808795,-8.054458],[-34.8814951,-8.0540524],[-34.8815156,-8.054039],[-34.8815638,-8.0540077],[-34.8816117,-8.053981],[-34.881692,-8.0539356],[-34.881915,-8.0538062],[-34.8824951,-8.0534227],[-34.882534,-8.0534007],[-34.8836693,-8.0526748],[-34.8837403,-8.0526264],[-34.8838644,-8.0525301],[-34.8845968,-8.0519317],[-34.8846401,-8.0519068],[-34.8851855,-8.051502],[-34.8852242,-8.0514813],[-34.8852954,-8.0514147],[-34.8861433,-8.0508071],[-34.8871421,-8.0500489],[-34.8874511,-8.0498223],[-34.8874631,-8.0497741],[-34.8874751,-8.0497278]]}},{"type":"Feature","id":"way/762896714","properties":{"name":"Ciclovia Graça Araújo","id":"way/762896714","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8780848,-8.0562215],[-34.8780995,-8.0562447]]}},{"type":"Feature","id":"way/762906975","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/762906975","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.874113,-8.0373081],[-34.8745241,-8.0374901]]}},{"type":"Feature","id":"way/762927577","properties":{"name":"Rua General Edson Amâncio Ramalho","id":"way/762927577","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9004351,-8.1154034],[-34.9003686,-8.1150656],[-34.900274,-8.114402],[-34.9001594,-8.1135816],[-34.9001411,-8.1134245],[-34.9001352,-8.1133554]]}},{"type":"Feature","id":"way/762937129","properties":{"name":"Avenida Marechal Juarez Távora","id":"way/762937129","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9092015,-8.1395256],[-34.9091618,-8.1395003],[-34.9086925,-8.139106],[-34.9086443,-8.1390655],[-34.9084348,-8.1388501],[-34.9083774,-8.1387856],[-34.9083079,-8.1386889],[-34.9082623,-8.1385813],[-34.9082228,-8.1384426],[-34.9082074,-8.1383278],[-34.9081867,-8.1381094],[-34.9081832,-8.138037],[-34.9081589,-8.1376946]]}},{"type":"Feature","id":"way/762937136","properties":{"name":"Rua João Cardoso Aires","id":"way/762937136","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9115973,-8.1409073],[-34.9116726,-8.1408737],[-34.9118293,-8.1408037],[-34.9129768,-8.1402886]]}},{"type":"Feature","id":"way/762937137","properties":{"name":"Avenida Marechal Juarez Távora","id":"way/762937137","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9115973,-8.1409073],[-34.9115299,-8.1411157],[-34.9115239,-8.141273],[-34.9115662,-8.1413918],[-34.9116305,-8.1414781],[-34.9116956,-8.1415512],[-34.9117673,-8.1416003],[-34.9119809,-8.1417258],[-34.9120461,-8.1417641]]}},{"type":"Feature","id":"way/762937141","properties":{"name":"Avenida Lino Jordão","id":"way/762937141","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9149217,-8.1434396],[-34.9146664,-8.1435731],[-34.9146577,-8.1435781]]}},{"type":"Feature","id":"way/762937142","properties":{"name":"Avenida Marechal Juarez Távora","id":"way/762937142","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9145105,-8.1436355],[-34.9144408,-8.1435093],[-34.9143523,-8.1433938],[-34.9142759,-8.1433076],[-34.9141967,-8.1432438],[-34.9139701,-8.1431004],[-34.9137314,-8.1429544],[-34.9131721,-8.1426385],[-34.9127363,-8.1423796],[-34.9119167,-8.1419162],[-34.9118193,-8.1418611],[-34.9114303,-8.1416372],[-34.9112843,-8.1415024]]}},{"type":"Feature","id":"way/762937143","properties":{"name":"Pontilhão","id":"way/762937143","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.905707,-8.1434752],[-34.9057294,-8.1434663],[-34.9058442,-8.1434222],[-34.9059229,-8.1433902]]}},{"type":"Feature","id":"way/762937144","properties":{"name":"Pontilhão","id":"way/762937144","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9060571,-8.1433339],[-34.9061397,-8.1433014],[-34.9061998,-8.1432772]]}},{"type":"Feature","id":"way/762937145","properties":{"name":"Pontilhão","id":"way/762937145","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9059229,-8.1433902],[-34.9060571,-8.1433339]]}},{"type":"Feature","id":"way/762937146","properties":{"name":"Rua João Cardoso Aires","id":"way/762937146","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9053245,-8.1437029],[-34.9057446,-8.1434993]]}},{"type":"Feature","id":"way/762937147","properties":{"name":"Rua Setúbal","id":"way/762937147","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9046951,-8.142397],[-34.904891,-8.1428035],[-34.9053245,-8.1437029],[-34.9058104,-8.1447023]]}},{"type":"Feature","id":"way/762943308","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/762943308","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9031593,-8.1345205],[-34.9032712,-8.1348948],[-34.9033532,-8.1351431]]}},{"type":"Feature","id":"way/762943309","properties":{"name":"Rua Padre Cabral","id":"way/762943309","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9057707,-8.1336914],[-34.9052063,-8.1335215],[-34.9048162,-8.1334028],[-34.9047906,-8.1333968]]}},{"type":"Feature","id":"way/762943310","properties":{"name":"Rua José Domingues da Silva","id":"way/762943310","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9057707,-8.1336914],[-34.9058713,-8.1332004],[-34.9059835,-8.132564],[-34.9061039,-8.1320069],[-34.9061245,-8.1319119]]}},{"type":"Feature","id":"way/762953787","properties":{"name":"Rua Castro Alves","id":"way/762953787","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8904995,-8.0373131],[-34.89069,-8.0372378],[-34.8907927,-8.0371964],[-34.8908294,-8.0371816]]}},{"type":"Feature","id":"way/762953788","properties":{"name":"Avenida Agamenon Magalhães - Pista Local","id":"way/762953788","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8849929,-8.041984],[-34.884861,-8.0419201],[-34.884744,-8.0418531],[-34.8839268,-8.0414878],[-34.8833994,-8.041249],[-34.8833533,-8.0412281]]}},{"type":"Feature","id":"way/762960700","properties":{"name":"Avenida Afonso Olindense","id":"way/762960700","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9574417,-8.0388954],[-34.9574817,-8.039009],[-34.9576008,-8.0393826],[-34.9576083,-8.0394062],[-34.9576545,-8.0395345],[-34.957721,-8.0397567],[-34.9577633,-8.039918],[-34.9579128,-8.040389],[-34.9579441,-8.0404902],[-34.958054,-8.0408932],[-34.9581181,-8.0411337],[-34.9581732,-8.0413435],[-34.9582369,-8.0415451],[-34.9583193,-8.0418053],[-34.958534,-8.0425385],[-34.9585928,-8.0427436]]}},{"type":"Feature","id":"way/762960701","properties":{"name":"Avenida Afonso Olindense","id":"way/762960701","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9551758,-8.0344144],[-34.9552039,-8.0344894]]}},{"type":"Feature","id":"way/762960702","properties":{"name":"Rua João Francisco Lisboa","id":"way/762960702","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9585102,-8.0513693],[-34.9578628,-8.0516264],[-34.9572667,-8.0518779],[-34.9569303,-8.0520244],[-34.9566493,-8.0521386],[-34.9555555,-8.0528524]]}},{"type":"Feature","id":"way/762960703","properties":{"name":"Rua Acadêmico Hélio Ramos","id":"way/762960703","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9555555,-8.0528524],[-34.9555804,-8.0529384],[-34.9556716,-8.0532532],[-34.9560009,-8.0544582],[-34.9562047,-8.0551408],[-34.9562707,-8.0553981],[-34.9563083,-8.0555356],[-34.9565514,-8.0564068]]}},{"type":"Feature","id":"way/762960949","properties":{"name":"Rua Jornalista Trajano Chacon","id":"way/762960949","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8945516,-8.0641047],[-34.894854,-8.0641785],[-34.8952264,-8.0642438],[-34.8954234,-8.0642709],[-34.8956117,-8.0642965],[-34.8958144,-8.06432],[-34.8960257,-8.0643486]]}},{"type":"Feature","id":"way/762960950","properties":{"name":"Rua Frei Matias Tévis","id":"way/762960950","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8960257,-8.0643486],[-34.8958988,-8.0647294],[-34.8958494,-8.064877],[-34.8958021,-8.0650111],[-34.8957433,-8.0651907]]}},{"type":"Feature","id":"way/762960953","properties":{"name":"Rua Frei Matias Tévis","id":"way/762960953","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8957433,-8.0651907],[-34.8953864,-8.0662722]]}},{"type":"Feature","id":"way/762962423","properties":{"name":"Rua do Pombal","id":"way/762962423","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8845801,-8.051837],[-34.8842532,-8.0514098],[-34.8835691,-8.0505012]]}},{"type":"Feature","id":"way/762962425","properties":{"name":"Rua Tupinambás","id":"way/762962425","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8809992,-8.0469582],[-34.8806201,-8.0472311],[-34.8802457,-8.047491]]}},{"type":"Feature","id":"way/762962426","properties":{"name":"Rua Treze de Maio","id":"way/762962426","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8802457,-8.047491],[-34.8806749,-8.0481149],[-34.8809208,-8.0484729]]}},{"type":"Feature","id":"way/762962428","properties":{"name":"Rua Treze de Maio","id":"way/762962428","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8837774,-8.0526736],[-34.8838346,-8.0527571],[-34.8844782,-8.0537439]]}},{"type":"Feature","id":"way/762962429","properties":{"name":"Rua Pedro Afonso","id":"way/762962429","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8816261,-8.0494594],[-34.8823993,-8.0489141]]}},{"type":"Feature","id":"way/762962430","properties":{"name":"Rua Treze de Maio","id":"way/762962430","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8816261,-8.0494594],[-34.8821334,-8.0501641],[-34.8827698,-8.0510773],[-34.8835966,-8.0524125],[-34.8836916,-8.052551]]}},{"type":"Feature","id":"way/762962432","properties":{"name":"Rua Araripina","id":"way/762962432","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8781993,-8.051069],[-34.8768443,-8.0519768],[-34.8757023,-8.0527522]]}},{"type":"Feature","id":"way/762962434","properties":{"name":"Rua Barros Barreto","id":"way/762962434","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8816858,-8.0479489],[-34.8809208,-8.0484729]]}},{"type":"Feature","id":"way/762962435","properties":{"name":"Rua do Pombal","id":"way/762962435","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8816858,-8.0479489],[-34.8815136,-8.047705],[-34.8813146,-8.0474357],[-34.8809992,-8.0469582]]}},{"type":"Feature","id":"way/763179811","properties":{"name":"Rua Treze de Maio","id":"way/763179811","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8799976,-8.0471505],[-34.8799261,-8.0470831],[-34.8798828,-8.0470304],[-34.8798424,-8.0469761],[-34.8798057,-8.0469286],[-34.8797895,-8.0469064],[-34.8797727,-8.0468821],[-34.8796856,-8.0467471],[-34.8796697,-8.04668]]}},{"type":"Feature","id":"way/763179812","properties":{"name":"Rua Treze de Maio","id":"way/763179812","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8809208,-8.0484729],[-34.8816261,-8.0494594]]}},{"type":"Feature","id":"way/763179814","properties":{"name":"Rua Marechal Hermes","id":"way/763179814","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8806427,-8.0882587],[-34.8804144,-8.0884806],[-34.880342,-8.0885552],[-34.8800975,-8.0887588]]}},{"type":"Feature","id":"way/763417898","properties":{"name":"Avenida Armindo Moura","id":"way/763417898","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9115634,-8.1497141],[-34.9112249,-8.1498357],[-34.9107929,-8.1499873],[-34.9105132,-8.1500885],[-34.9104786,-8.1501014],[-34.9101725,-8.1502154],[-34.9100968,-8.1502443],[-34.9099237,-8.1503104],[-34.9097076,-8.1503913],[-34.9096713,-8.1504049],[-34.9094856,-8.1504741],[-34.9094365,-8.1504931],[-34.909358,-8.1505236],[-34.9092771,-8.1505528]]}},{"type":"Feature","id":"way/764025311","properties":{"name":"Rua Visconde de Jequitinhonha","id":"way/764025311","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9027475,-8.1350953],[-34.9027545,-8.1351151],[-34.9030095,-8.1359559],[-34.9031734,-8.1364556],[-34.903228,-8.136617],[-34.9037806,-8.1383065],[-34.9038514,-8.1385208],[-34.9038802,-8.1386169]]}},{"type":"Feature","id":"way/764025312","properties":{"name":"Pontilhão","id":"way/764025312","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.902884,-8.1350494],[-34.9029677,-8.1349882]]}},{"type":"Feature","id":"way/764025313","properties":{"name":"Pontilhão","id":"way/764025313","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9030818,-8.1349524],[-34.9031559,-8.1349274],[-34.9032712,-8.1348948]]}},{"type":"Feature","id":"way/764025314","properties":{"name":"Pontilhão","id":"way/764025314","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9029677,-8.1349882],[-34.9030818,-8.1349524]]}},{"type":"Feature","id":"way/764026176","properties":{"name":"Rua Pedro Afonso","id":"way/764026176","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8806067,-8.050185],[-34.8811191,-8.0498207],[-34.8816261,-8.0494594]]}},{"type":"Feature","id":"way/764026177","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/764026177","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8846905,-8.0429925],[-34.8850045,-8.0431541],[-34.8851727,-8.04323]]}},{"type":"Feature","id":"way/764026950","properties":{"name":"Avenida Vinte de Janeiro","id":"way/764026950","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9138582,-8.1362146],[-34.914035,-8.1370428],[-34.9142263,-8.1378905],[-34.9143794,-8.138598],[-34.9144903,-8.1390797],[-34.9146012,-8.1395614]]}},{"type":"Feature","id":"way/764026952","properties":{"name":"Avenida Sul","id":"way/764026952","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9147446,-8.1356019],[-34.914633,-8.1351025],[-34.9145241,-8.1346061],[-34.9145158,-8.1345654]]}},{"type":"Feature","id":"way/764072395","properties":{"name":"TI Joana Bezerra","id":"way/764072395","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.8961892,-8.0718549],[-34.8962841,-8.0718208],[-34.8963114,-8.0718189],[-34.8963453,-8.0718215],[-34.8963762,-8.0718308],[-34.896407,-8.0718454],[-34.8964325,-8.0718702],[-34.8964794,-8.0718706],[-34.896495,-8.0718686],[-34.8965244,-8.0718648],[-34.8965581,-8.0718543],[-34.8965846,-8.0718436]]}},{"type":"Feature","id":"way/766596159","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/766596159","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8991292,-8.0567336],[-34.8989881,-8.0567344],[-34.8987775,-8.0567329],[-34.8985671,-8.0567364],[-34.8983399,-8.0567352]]}},{"type":"Feature","id":"way/766721304","properties":{"name":"Rua Alberto Paiva","id":"way/766721304","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9003996,-8.0438738],[-34.9010422,-8.0438978],[-34.9011164,-8.0439017],[-34.9012431,-8.0439084],[-34.9015115,-8.0439225],[-34.9021352,-8.0439444],[-34.9021992,-8.043951]]}},{"type":"Feature","id":"way/769099817","properties":{"name":"Ciclovia Norte","id":"way/769099817","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8837961,-8.0432017],[-34.8838387,-8.0431755],[-34.8839329,-8.0431049],[-34.8840584,-8.0430136],[-34.8842315,-8.0428604],[-34.8843107,-8.042781],[-34.8845278,-8.0425575]]}},{"type":"Feature","id":"way/770273442","properties":{"name":"Avenida Cruz Cabugá","id":"way/770273442","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8822398,-8.0551104],[-34.8822231,-8.0549904]]}},{"type":"Feature","id":"way/770284442","properties":{"name":"Rua Araripina","id":"way/770284442","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8790429,-8.0504672],[-34.8789523,-8.0505318],[-34.8781993,-8.051069]]}},{"type":"Feature","id":"way/770310520","properties":{"name":"Ponte Conde Maurício de Nassau","id":"way/770310520","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8763842,-8.0641077],[-34.8763296,-8.0640965]]}},{"type":"Feature","id":"way/770310523","properties":{"name":"Ponte Buarque de Macedo","id":"way/770310523","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8737916,-8.0623949],[-34.8738494,-8.0623784]]}},{"type":"Feature","id":"way/770730306","properties":{"name":"Rua João Fernandes Vieira","id":"way/770730306","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.893791,-8.051862],[-34.893582,-8.0519264],[-34.8934904,-8.0519579],[-34.8934019,-8.0519884],[-34.8932199,-8.0520511],[-34.8926378,-8.0522515],[-34.8923698,-8.052478],[-34.8922978,-8.0525787]]}},{"type":"Feature","id":"way/770730307","properties":{"name":"Avenida Montevidéu","id":"way/770730307","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8938803,-8.0516169],[-34.893897,-8.05168],[-34.8938992,-8.0517245],[-34.8938883,-8.0517588],[-34.8938861,-8.0517656],[-34.8938555,-8.0518067],[-34.893791,-8.051862]]}},{"type":"Feature","id":"way/770730308","properties":{"name":"Avenida João de Barros","id":"way/770730308","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.890018,-8.0502118],[-34.890005,-8.0507474],[-34.8899982,-8.0513222],[-34.8899938,-8.0523169],[-34.8899937,-8.0523813],[-34.8899927,-8.0525737],[-34.8899615,-8.0530891],[-34.889955,-8.0531971]]}},{"type":"Feature","id":"way/770730881","properties":{"name":"Rua Quitério Inácio de Melo","id":"way/770730881","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9089758,-8.0818658],[-34.90886,-8.0823314]]}},{"type":"Feature","id":"way/771496126","properties":{"name":"Rua Bruno Veloso","id":"way/771496126","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9019347,-8.1212424],[-34.9018008,-8.1212873],[-34.9015145,-8.1213354],[-34.9014024,-8.1213509]]}},{"type":"Feature","id":"way/771726149","properties":{"name":"Rua do Pombal","id":"way/771726149","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8823993,-8.0489141],[-34.8820266,-8.0484184],[-34.8816858,-8.0479489]]}},{"type":"Feature","id":"way/772166424","properties":{"name":"Rua Chiador","id":"way/772166424","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9231964,-7.9459112],[-34.9230452,-7.9468751],[-34.9230336,-7.9469255],[-34.9230241,-7.9469894],[-34.9230355,-7.9470259],[-34.9230582,-7.9470564],[-34.9230883,-7.9470977]]}},{"type":"Feature","id":"way/772513097","properties":{"name":"Rua Alvares de Azevedo","id":"way/772513097","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8899505,-8.0499187],[-34.8898958,-8.0498728],[-34.8898374,-8.0498356],[-34.889779,-8.0498065],[-34.8897148,-8.0497847]]}},{"type":"Feature","id":"way/773053326","properties":{"name":"Rua Doutor João Lacerda","id":"way/773053326","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9217404,-8.0454502],[-34.9217659,-8.0454959],[-34.9220153,-8.0459376],[-34.9220355,-8.0459734],[-34.9221169,-8.046123],[-34.9223249,-8.0465072],[-34.9223989,-8.046644]]}},{"type":"Feature","id":"way/773570688","properties":{"name":"Avenida General Mac Artur","id":"way/773570688","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9090927,-8.1094457],[-34.9097411,-8.109321],[-34.9104272,-8.1092078],[-34.911048,-8.109087],[-34.9116072,-8.1089675],[-34.9117771,-8.1089337]]}},{"type":"Feature","id":"way/773833908","properties":{"name":"Primeira Travessa Doutor Luiz Ramos Leal","id":"way/773833908","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9026292,-8.00009],[-34.9024125,-8.0001781],[-34.9021724,-8.0003149],[-34.9016533,-8.0006323]]}},{"type":"Feature","id":"way/775973132","properties":{"name":"Avenida Sul","id":"way/775973132","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9094018,-8.1106046],[-34.9100156,-8.1133089],[-34.9102284,-8.114251],[-34.9102753,-8.1144542],[-34.9104276,-8.1150835],[-34.91044,-8.1151346],[-34.9104582,-8.1151849],[-34.9104859,-8.1152322],[-34.9106185,-8.115443],[-34.9106736,-8.1155671],[-34.9107356,-8.1157511]]}},{"type":"Feature","id":"way/775974224","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974224","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8681713,-8.0474968],[-34.8682881,-8.0474522]]}},{"type":"Feature","id":"way/775974225","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974225","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8683855,-8.0472664],[-34.8684823,-8.0473465]]}},{"type":"Feature","id":"way/775974226","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974226","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.869158,-8.047161],[-34.8685055,-8.0474051],[-34.8684084,-8.047445],[-34.8682881,-8.0474522]]}},{"type":"Feature","id":"way/775974227","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974227","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8682881,-8.0474522],[-34.8683895,-8.0473828],[-34.8684823,-8.0473465],[-34.8691228,-8.0470835]]}},{"type":"Feature","id":"way/775974229","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974229","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8694674,-8.0497571],[-34.8695111,-8.0497327]]}},{"type":"Feature","id":"way/775974230","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974230","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8694674,-8.0497571],[-34.869546,-8.0498389]]}},{"type":"Feature","id":"way/775974231","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974231","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8695111,-8.0497327],[-34.869546,-8.0498389]]}},{"type":"Feature","id":"way/775974232","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974232","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8694674,-8.0497571],[-34.8689694,-8.048649],[-34.8685658,-8.0477507],[-34.8684084,-8.047445],[-34.8683895,-8.0473828],[-34.8683855,-8.0472664]]}},{"type":"Feature","id":"way/775974233","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/775974233","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8684823,-8.0473465],[-34.8685055,-8.0474051],[-34.868648,-8.0477663],[-34.8690219,-8.0486181],[-34.8695111,-8.0497327]]}},{"type":"Feature","id":"way/775975304","properties":{"name":"Rua José de Alencar","id":"way/775975304","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8920066,-8.0652024],[-34.8913928,-8.06457],[-34.890752,-8.0639099]]}},{"type":"Feature","id":"way/775975305","properties":{"name":"Rua José de Alencar","id":"way/775975305","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.892673,-8.0656849],[-34.8920066,-8.0652024]]}},{"type":"Feature","id":"way/775976438","properties":{"name":"Avenida Padre Mosca de Carvalho","id":"way/775976438","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9234355,-7.965102],[-34.9234669,-7.964804],[-34.9234822,-7.9646582],[-34.9234953,-7.9645336],[-34.9235017,-7.9645117],[-34.9235208,-7.9644459],[-34.9235597,-7.9643151],[-34.9235885,-7.9642128],[-34.923612,-7.963912],[-34.9236307,-7.9636225],[-34.9236502,-7.9633216],[-34.9236693,-7.9630299],[-34.9237231,-7.9627071]]}},{"type":"Feature","id":"way/776571549","properties":{"name":"Rua Dez de Novembro","id":"way/776571549","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9192198,-8.0483892],[-34.9191134,-8.0484464]]}},{"type":"Feature","id":"way/776643245","properties":{"name":"Avenida Engenho Serra Verde","id":"way/776643245","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9518335,-8.1123777],[-34.9517585,-8.1127508]]}},{"type":"Feature","id":"way/777105575","properties":{"name":"Rua São Nicolau","id":"way/777105575","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9258268,-8.1067629],[-34.9266622,-8.1068868]]}},{"type":"Feature","id":"way/777693660","properties":{"name":"Avenida Lino Jordão","id":"way/777693660","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9145637,-8.1436167],[-34.9145105,-8.1436355]]}},{"type":"Feature","id":"way/777734628","properties":{"name":"Rua Doutor Afrânio Peixoto","id":"way/777734628","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8710749,-8.0513579],[-34.8710429,-8.0512886],[-34.8709111,-8.0510311],[-34.870873,-8.0509443],[-34.8708241,-8.0508375],[-34.870687,-8.0505402],[-34.8703694,-8.0498734],[-34.870234,-8.0495627],[-34.8696694,-8.0483556],[-34.8693395,-8.0476067],[-34.8693033,-8.0475144],[-34.8692742,-8.0474174]]}},{"type":"Feature","id":"way/777734629","properties":{"name":"Rua Araripina","id":"way/777734629","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8790669,-8.0504515],[-34.8790429,-8.0504672]]}},{"type":"Feature","id":"way/777786581","properties":{"name":"Rua Marquês de Maricá","id":"way/777786581","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9186443,-8.0471863],[-34.9187629,-8.0471262]]}},{"type":"Feature","id":"way/778011329","properties":{"name":"Primeira Travessa Rua Passo De Santa Cruz","id":"way/778011329","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.920795,-8.0856571],[-34.9209753,-8.0866337]]}},{"type":"Feature","id":"way/778025646","properties":{"name":"Avenida Brasília Formosa","id":"way/778025646","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8784975,-8.085915],[-34.8782472,-8.0852984],[-34.8781565,-8.0850785],[-34.8780053,-8.0846934],[-34.8778166,-8.0842476],[-34.8776747,-8.0838101],[-34.8775325,-8.0833687],[-34.877341,-8.0827805],[-34.8772087,-8.0823552],[-34.877054,-8.0818712],[-34.876964,-8.0815953],[-34.8769371,-8.0815231],[-34.87681,-8.0811818],[-34.8767602,-8.0810501],[-34.8767469,-8.080991]]}},{"type":"Feature","id":"way/778169420","properties":{"name":"Avenida José Américo de Almeida","id":"way/778169420","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.93081,-8.0103797],[-34.9308776,-8.0102977],[-34.9317442,-8.009246],[-34.9318956,-8.0090703],[-34.9320006,-8.0089472],[-34.9320126,-8.0089403],[-34.9320253,-8.0089336]]}},{"type":"Feature","id":"way/778538501","properties":{"name":"Estrada do Barbalho","id":"way/778538501","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9329796,-8.029106],[-34.9329011,-8.029025],[-34.9328582,-8.0289779],[-34.9328139,-8.0289321],[-34.9327241,-8.0288192],[-34.932702,-8.0287996],[-34.9326355,-8.0287404]]}},{"type":"Feature","id":"way/778574537","properties":{"name":"Avenida Agostinho Gomes","id":"way/778574537","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.894166,-8.0724582],[-34.8944148,-8.0725076],[-34.8945825,-8.0725541]]}},{"type":"Feature","id":"way/778574539","properties":{"name":"Avenida Central","id":"way/778574539","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8945825,-8.0725541],[-34.8948882,-8.0726421],[-34.8950434,-8.0727005],[-34.8950676,-8.0727178],[-34.895094,-8.07275],[-34.8951484,-8.0728207]]}},{"type":"Feature","id":"way/778574541","properties":{"name":"Avenida Agostinho Gomes","id":"way/778574541","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8934047,-8.0723879],[-34.8935974,-8.0723938],[-34.8938388,-8.0724097],[-34.894166,-8.0724582]]}},{"type":"Feature","id":"way/778604171","properties":{"name":"Rua Senador Alberto Pasqualini","id":"way/778604171","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9339941,-8.0795753],[-34.9340807,-8.0796085]]}},{"type":"Feature","id":"way/778854732","properties":{"name":"Rua Oscar de Barros","id":"way/778854732","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.916218,-8.0226292],[-34.9161726,-8.0225487]]}},{"type":"Feature","id":"way/778867795","properties":{"name":"Pontilhão do Canal do Arruda","id":"way/778867795","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.904337,-8.0263775],[-34.9042833,-8.0260896]]}},{"type":"Feature","id":"way/783625758","properties":{"name":"Rua Oscar de Barros","id":"way/783625758","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9166611,-8.0236612],[-34.9164883,-8.0232543],[-34.9164241,-8.0230989],[-34.9162378,-8.0226623]]}},{"type":"Feature","id":"way/783884644","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/783884644","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9165559,-8.0938206],[-34.9165491,-8.0939649]]}},{"type":"Feature","id":"way/783884645","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/783884645","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9165598,-8.0937817],[-34.9165559,-8.0938206]]}},{"type":"Feature","id":"way/786325338","properties":{"name":"Avenida Nossa Senhora da Saúde","id":"way/786325338","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9278658,-8.0419753],[-34.9277332,-8.041738],[-34.9274507,-8.0412285],[-34.927306,-8.0409804],[-34.9271723,-8.0407283],[-34.9271409,-8.0406719]]}},{"type":"Feature","id":"way/786325340","properties":{"name":"Avenida Professor Estevão Francisco da Costa","id":"way/786325340","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9190908,-8.0484576],[-34.9188973,-8.0478962],[-34.9186344,-8.0471917]]}},{"type":"Feature","id":"way/786325343","properties":{"name":"Rua Amélia","id":"way/786325343","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8996517,-8.0449342],[-34.8994535,-8.0449417],[-34.8989156,-8.0450358],[-34.8983261,-8.0451687],[-34.897718,-8.0453048],[-34.8973875,-8.0453789],[-34.8971173,-8.0454395],[-34.8970535,-8.0454538],[-34.8969717,-8.0454714],[-34.8961195,-8.0456546],[-34.8953386,-8.0458494]]}},{"type":"Feature","id":"way/791161084","properties":{"name":"Avenida Dantas Barreto","id":"way/791161084","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8802897,-8.0675977],[-34.8803416,-8.0676619],[-34.8807684,-8.0681902],[-34.880809,-8.0682404],[-34.8811786,-8.0686979],[-34.8814591,-8.0690451],[-34.8821837,-8.069942],[-34.8823565,-8.0701558]]}},{"type":"Feature","id":"way/792570583","properties":{"name":"Rua Santos Araújo","id":"way/792570583","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9094616,-8.0791459],[-34.9094964,-8.0801419],[-34.9094881,-8.080235],[-34.9094792,-8.0802895]]}},{"type":"Feature","id":"way/796691672","properties":{"id":"way/796691672","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9258156,-7.9659366],[-34.925819,-7.9661269],[-34.9257517,-7.9661491],[-34.9256087,-7.9661963],[-34.9255836,-7.9663132],[-34.92555,-7.9664692],[-34.9255303,-7.9665612],[-34.9255119,-7.9666467],[-34.925483,-7.966781],[-34.925443,-7.9669666],[-34.925439,-7.9669855],[-34.9254065,-7.9671364],[-34.9253917,-7.9672052],[-34.9253701,-7.9673056],[-34.9253518,-7.9673909],[-34.9253474,-7.9674113]]}},{"type":"Feature","id":"way/797179314","properties":{"name":"Rua Acadêmico Hélio Ramos","id":"way/797179314","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9555019,-8.0526673],[-34.9555555,-8.0528524]]}},{"type":"Feature","id":"way/797179315","properties":{"name":"Rua Acadêmico Hélio Ramos","id":"way/797179315","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9554483,-8.0524823],[-34.9555019,-8.0526673]]}},{"type":"Feature","id":"way/800702291","properties":{"name":"Rua Engenheiro Brandão Cavalcante","id":"way/800702291","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9165835,-8.0649156],[-34.9163056,-8.0645036],[-34.9161661,-8.0643266],[-34.9160604,-8.0642079],[-34.9157558,-8.0638758],[-34.9152665,-8.0634169],[-34.9149317,-8.0630876],[-34.9145708,-8.0627271]]}},{"type":"Feature","id":"way/800702292","properties":{"name":"Estrada do Bongi","id":"way/800702292","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9165835,-8.0649156],[-34.9160004,-8.0651646]]}},{"type":"Feature","id":"way/800856120","properties":{"name":"Rua Oscar de Barros","id":"way/800856120","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9159947,-8.0221298],[-34.9158953,-8.0219162]]}},{"type":"Feature","id":"way/801721895","properties":{"name":"Rua Cantora Clara Nunes","id":"way/801721895","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9166375,-8.044838],[-34.9165665,-8.0447955],[-34.9164893,-8.0447637],[-34.9164512,-8.0447563],[-34.9164243,-8.0447511],[-34.9162842,-8.0447364],[-34.9161252,-8.0447185],[-34.9158073,-8.0446833],[-34.9155036,-8.0446395],[-34.9153373,-8.044607],[-34.915214,-8.044577],[-34.9150229,-8.0445286],[-34.9148713,-8.0444861],[-34.9146943,-8.0444264],[-34.9145749,-8.0443786],[-34.9142946,-8.0442777],[-34.9139902,-8.0441475],[-34.9137153,-8.0440207],[-34.9133746,-8.0438461]]}},{"type":"Feature","id":"way/804453471","properties":{"name":"Ciclovia Norte","id":"way/804453471","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8835025,-8.0433667],[-34.8837961,-8.0432017]]}},{"type":"Feature","id":"way/805253292","properties":{"id":"way/805253292","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.917615,-8.1314441],[-34.9173315,-8.1322587]]}},{"type":"Feature","id":"way/805253293","properties":{"id":"way/805253293","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9167676,-8.1311613],[-34.9169612,-8.1311252]]}},{"type":"Feature","id":"way/805253294","properties":{"id":"way/805253294","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9166065,-8.1312278],[-34.9167676,-8.1311613]]}},{"type":"Feature","id":"way/809324601","properties":{"name":"Corredor Exclusivo BRT Leste - Oeste","id":"way/809324601","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9221458,-8.0499057],[-34.9217399,-8.0501298],[-34.9214638,-8.0502814],[-34.9211974,-8.0504292],[-34.9210666,-8.0505018]]}},{"type":"Feature","id":"way/815012800","properties":{"name":"Rua Ministro João Alberto","id":"way/815012800","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9446706,-8.0362583],[-34.9447232,-8.0362456],[-34.9447559,-8.0362331],[-34.9447949,-8.0362122],[-34.9448276,-8.036183],[-34.9448413,-8.0361653],[-34.944855,-8.0361298],[-34.9448603,-8.0361005],[-34.944866,-8.0360651]]}},{"type":"Feature","id":"way/815012801","properties":{"name":"Rua Ministro João Alberto","id":"way/815012801","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.944866,-8.0360651],[-34.9448908,-8.036135],[-34.9449853,-8.0364007]]}},{"type":"Feature","id":"way/815828031","properties":{"name":"Estrada do Arraial","id":"way/815828031","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9070689,-8.0301071],[-34.9074391,-8.0298835]]}},{"type":"Feature","id":"way/817205119","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/817205119","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9259126,-7.9957228],[-34.9260219,-7.9956089],[-34.9261453,-7.9954402],[-34.9263928,-7.9950783],[-34.9265483,-7.9948605],[-34.9266972,-7.9946939],[-34.9268433,-7.9945737],[-34.9269325,-7.9945059],[-34.9271035,-7.9943552],[-34.9272107,-7.9942591],[-34.9272484,-7.9942125],[-34.9274088,-7.9940228],[-34.927441,-7.9939687],[-34.9277675,-7.9935404]]}},{"type":"Feature","id":"way/817714760","properties":{"name":"Nona Travessa Chiador","id":"way/817714760","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.923941,-7.9508027],[-34.9240921,-7.9507194],[-34.9242053,-7.9506642],[-34.9243368,-7.9505799],[-34.9244448,-7.9505715],[-34.924515,-7.9507006],[-34.9244597,-7.9509813]]}},{"type":"Feature","id":"way/819252453","properties":{"name":"Rua Rio Beberibe","id":"way/819252453","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8897847,-8.0044061],[-34.8900028,-8.0042944],[-34.8901355,-8.0042291],[-34.890359,-8.0041362],[-34.8906943,-8.0040023],[-34.8912179,-8.0038618]]}},{"type":"Feature","id":"way/821123750","properties":{"name":"Rua Conde de Irajá","id":"way/821123750","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9108507,-8.0464501],[-34.9119611,-8.0465616],[-34.9124064,-8.0466134],[-34.9127577,-8.0466519],[-34.9132499,-8.0467031]]}},{"type":"Feature","id":"way/821123755","properties":{"name":"Avenida Luiz de Lacerda","id":"way/821123755","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9429269,-8.0374392],[-34.9429394,-8.0373155],[-34.9429568,-8.0372176],[-34.9429993,-8.0370808],[-34.943072,-8.0368742],[-34.9430763,-8.0368621]]}},{"type":"Feature","id":"way/821123758","properties":{"name":"Rua Professor Antônio Coelho","id":"way/821123758","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9455182,-8.0428108],[-34.945415,-8.0424066],[-34.9453271,-8.0420454],[-34.945246,-8.0417094],[-34.9452073,-8.0415781],[-34.9451387,-8.041345],[-34.9450213,-8.041017],[-34.9449161,-8.0406444],[-34.9447308,-8.0400151],[-34.9446959,-8.0399426]]}},{"type":"Feature","id":"way/822370158","properties":{"name":"Rua Rio Beberibe","id":"way/822370158","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8864137,-8.0062125],[-34.886698,-8.0060528],[-34.8872029,-8.0058419],[-34.8876799,-8.0056172],[-34.8885125,-8.0051541],[-34.8892451,-8.004722]]}},{"type":"Feature","id":"way/823189908","properties":{"name":"Rua Márcia Mendes","id":"way/823189908","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9004619,-8.0038523],[-34.9008583,-8.0042479],[-34.9010474,-8.0044106],[-34.9011995,-8.0045401],[-34.9013696,-8.0046849],[-34.901707,-8.0049415],[-34.901814,-8.0050228],[-34.9019505,-8.0051147],[-34.9021209,-8.0052295],[-34.9022805,-8.0053316],[-34.9023444,-8.0053813],[-34.9023846,-8.0054246],[-34.902418,-8.0054848],[-34.9024664,-8.0055953]]}},{"type":"Feature","id":"way/823189911","properties":{"name":"Avenida Marginal","id":"way/823189911","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8970021,-8.0021646],[-34.8974172,-8.0018552],[-34.897496,-8.0018025],[-34.897628,-8.0017456],[-34.8977004,-8.001735],[-34.8977834,-8.0017413],[-34.8978813,-8.0017582],[-34.8979601,-8.0017877],[-34.8980325,-8.0018214],[-34.8981695,-8.0019],[-34.8984206,-8.0020617],[-34.8987743,-8.0022895],[-34.8988433,-8.0023343],[-34.8993617,-8.0027874]]}},{"type":"Feature","id":"way/823189932","properties":{"name":"Rua Bacharel Severino Torres Galindo do Nascimento","id":"way/823189932","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9045124,-7.9988367],[-34.9054464,-7.9981786],[-34.9060488,-7.9977326],[-34.9064853,-7.9974927],[-34.9067147,-7.9973183],[-34.906832,-7.9972084],[-34.9069716,-7.9970389],[-34.9071074,-7.9968586],[-34.9072053,-7.9966444],[-34.9072505,-7.9963951],[-34.9072973,-7.9961716],[-34.9073389,-7.9960722],[-34.9073919,-7.9959853],[-34.9077146,-7.995634],[-34.9079405,-7.9954142],[-34.9080555,-7.9952885]]}},{"type":"Feature","id":"way/824376340","properties":{"name":"Rotatória de Água Fria","id":"way/824376340","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8972673,-8.0239722],[-34.8972236,-8.0239824],[-34.8971816,-8.0239667]]}},{"type":"Feature","id":"way/824376341","properties":{"name":"Rua Alegre","id":"way/824376341","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8924572,-8.0194595],[-34.8924734,-8.0192616],[-34.8925084,-8.0191343],[-34.8925563,-8.019005]]}},{"type":"Feature","id":"way/824376343","properties":{"name":"Avenida Beberibe","id":"way/824376343","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8933702,-8.0185839],[-34.8936719,-8.0188765],[-34.8937659,-8.0189599],[-34.8938933,-8.0190688],[-34.8940112,-8.0191798],[-34.8943685,-8.019494],[-34.8945539,-8.0196841]]}},{"type":"Feature","id":"way/831926429","properties":{"name":"Ciclovia Norte","id":"way/831926429","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8764357,-8.0470691],[-34.8764492,-8.0470575],[-34.8764561,-8.0470516],[-34.8764947,-8.0470508],[-34.8765351,-8.0470876],[-34.8768655,-8.0475446]]}},{"type":"Feature","id":"way/835830090","properties":{"name":"Ciclovia Norte","id":"way/835830090","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8768655,-8.0475446],[-34.8769243,-8.0475048]]}},{"type":"Feature","id":"way/836834959","properties":{"name":"Ciclovia Mimoso do Sul","id":"way/836834959","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9355519,-8.1208563],[-34.9359773,-8.1205435],[-34.9364494,-8.1202123],[-34.9365458,-8.1201421],[-34.9368117,-8.1199484],[-34.9369444,-8.1198517],[-34.9371756,-8.1196413],[-34.9373671,-8.1193986],[-34.9374931,-8.1191395],[-34.9375422,-8.1189432],[-34.93761,-8.1186159],[-34.9376506,-8.1185026],[-34.9377011,-8.1182669],[-34.9377898,-8.1178976],[-34.937821,-8.1178223],[-34.9379131,-8.1176002],[-34.9381545,-8.1170266],[-34.9382913,-8.1167399],[-34.9383686,-8.1165665],[-34.9384097,-8.1163463],[-34.9384716,-8.1161974],[-34.9386156,-8.1160308],[-34.9386804,-8.1159329],[-34.9387371,-8.1158453],[-34.9387654,-8.1157332],[-34.9387689,-8.1156613],[-34.9387813,-8.1155808],[-34.9388397,-8.1154424],[-34.9388839,-8.1153705],[-34.9389144,-8.1152773],[-34.9389327,-8.1151264],[-34.9389774,-8.1149915],[-34.939079,-8.1148064],[-34.9391664,-8.1146514],[-34.9392269,-8.114493]]}},{"type":"Feature","id":"way/836834960","properties":{"name":"Via Mangue - Pista Leste","id":"way/836834960","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8997513,-8.1107419],[-34.8995958,-8.1104524],[-34.899509,-8.1103224]]}},{"type":"Feature","id":"way/836834963","properties":{"name":"Avenida Engenheiro Alves Souza","id":"way/836834963","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9171894,-8.0969129],[-34.9171115,-8.0969317],[-34.9170814,-8.0969389],[-34.9165473,-8.0970675],[-34.9158986,-8.0972033]]}},{"type":"Feature","id":"way/836834964","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/836834964","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9122598,-8.0980339],[-34.9125618,-8.0998062]]}},{"type":"Feature","id":"way/836834966","properties":{"name":"Avenida Júlio César","id":"way/836834966","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9200627,-8.1421061],[-34.9200989,-8.1420961],[-34.92016,-8.1420729],[-34.9207219,-8.1417875],[-34.9211135,-8.1416009],[-34.9212442,-8.1415512],[-34.9213421,-8.1415246],[-34.9214709,-8.141504]]}},{"type":"Feature","id":"way/836834968","properties":{"name":"Rua Três de Março","id":"way/836834968","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9442126,-8.0326659],[-34.9445231,-8.0326616]]}},{"type":"Feature","id":"way/836834971","properties":{"name":"Avenida Luiz de Lacerda","id":"way/836834971","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9440473,-8.0361862],[-34.9442626,-8.0361807],[-34.9443913,-8.036194],[-34.9444755,-8.0362112],[-34.9445753,-8.0362311],[-34.9446706,-8.0362583]]}},{"type":"Feature","id":"way/836834976","properties":{"name":"Avenida Professor José dos Anjos","id":"way/836834976","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8977842,-8.0266189],[-34.8979287,-8.0265709]]}},{"type":"Feature","id":"way/836834977","properties":{"name":"Estrada Velha de Água Fria","id":"way/836834977","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8977842,-8.0266189],[-34.8976916,-8.0262588],[-34.8976129,-8.025982],[-34.8975,-8.0254156],[-34.897408,-8.0250517],[-34.8973599,-8.0248617],[-34.8972112,-8.0240974],[-34.8971816,-8.0239667]]}},{"type":"Feature","id":"way/836834978","properties":{"name":"Avenida Beberibe","id":"way/836834978","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8938826,-8.0231294],[-34.8939222,-8.0229487],[-34.8939742,-8.0226903],[-34.8940353,-8.0223817],[-34.8942535,-8.0215474],[-34.8943365,-8.0210904]]}},{"type":"Feature","id":"way/836834979","properties":{"name":"Avenida Cidade de Monteiro","id":"way/836834979","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8881316,-8.0084487],[-34.8878522,-8.0080374],[-34.887429,-8.0074837]]}},{"type":"Feature","id":"way/836834980","properties":{"name":"Avenida Cidade de Monteiro","id":"way/836834980","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.887429,-8.0074837],[-34.8870726,-8.0070218]]}},{"type":"Feature","id":"way/836834981","properties":{"name":"Avenida Cidade de Monteiro","id":"way/836834981","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8869449,-8.0068655],[-34.8866296,-8.0064797],[-34.8865505,-8.0063825],[-34.8864968,-8.0063215]]}},{"type":"Feature","id":"way/836834982","properties":{"name":"Rua dos Craveiros","id":"way/836834982","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.881058,-8.012724],[-34.8810057,-8.0125487],[-34.8809508,-8.0123986],[-34.880899,-8.0122859]]}},{"type":"Feature","id":"way/836834985","properties":{"name":"Estrada do Barbalho","id":"way/836834985","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9326355,-8.0287404],[-34.932545,-8.028731]]}},{"type":"Feature","id":"way/836834986","properties":{"name":"Estrada do Barbalho","id":"way/836834986","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.932545,-8.028731],[-34.9325054,-8.028724],[-34.9324515,-8.0287162],[-34.9323981,-8.0287009],[-34.9322643,-8.0286648]]}},{"type":"Feature","id":"way/836834989","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/836834989","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9037563,-8.1364496],[-34.9037722,-8.1364982],[-34.9039525,-8.1370387],[-34.9043617,-8.1383522],[-34.9043907,-8.1384511],[-34.9044635,-8.1387161],[-34.9048056,-8.1397921],[-34.9048239,-8.1398348],[-34.9049285,-8.1401295],[-34.9049786,-8.1402664],[-34.9054687,-8.1414425],[-34.9054807,-8.1414715],[-34.9058922,-8.1424076],[-34.906248,-8.1432517],[-34.9062691,-8.1433039]]}},{"type":"Feature","id":"way/837891475","properties":{"name":"Rua General Abreu e Lima","id":"way/837891475","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8983588,-8.0320399],[-34.8983341,-8.0320372],[-34.8983056,-8.0320487],[-34.8982844,-8.0320884]]}},{"type":"Feature","id":"way/837891476","properties":{"name":"Rua General Abreu e Lima","id":"way/837891476","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8983588,-8.0320399],[-34.8982747,-8.0319062]]}},{"type":"Feature","id":"way/839072086","properties":{"name":"Rua Coronel João Batista do Rego Barros","id":"way/839072086","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9309517,-8.0165771],[-34.9315255,-8.0170194],[-34.9321869,-8.0175502],[-34.9323297,-8.0176721],[-34.9326653,-8.0179631],[-34.9326864,-8.017982],[-34.9328511,-8.0181441],[-34.9329956,-8.0182988],[-34.93302,-8.0183384],[-34.9330433,-8.0183795]]}},{"type":"Feature","id":"way/839834724","properties":{"name":"Avenida Poeta Vinicius de Morais","id":"way/839834724","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8802079,-8.0124044],[-34.8801406,-8.0129258],[-34.8800376,-8.0134492],[-34.880016,-8.0135726],[-34.8799986,-8.0137014],[-34.8799811,-8.0139112],[-34.8799731,-8.0143814],[-34.8799583,-8.0145142],[-34.8799409,-8.0146496],[-34.8799074,-8.0148262],[-34.8798443,-8.0151901],[-34.8798175,-8.0153747],[-34.8798068,-8.0154557],[-34.8797867,-8.0155885],[-34.8797705,-8.0160242]]}},{"type":"Feature","id":"way/840752280","properties":{"name":"Rua General Abreu e Lima","id":"way/840752280","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9002851,-8.0351275],[-34.9003932,-8.0350387]]}},{"type":"Feature","id":"way/854786865","properties":{"name":"Rua Professor Joaquim Xavier de Brito","id":"way/854786865","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9347337,-8.0522949],[-34.934394,-8.0535626]]}},{"type":"Feature","id":"way/854786867","properties":{"name":"Avenida Inácio Monteiro","id":"way/854786867","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9343001,-8.053526],[-34.934394,-8.0535626]]}},{"type":"Feature","id":"way/854786871","properties":{"name":"Avenida do Forte","id":"way/854786871","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9318232,-8.0594351],[-34.931528,-8.0588866],[-34.9314488,-8.0587384],[-34.931204,-8.0582801]]}},{"type":"Feature","id":"way/854786878","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/854786878","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9096693,-8.0864051],[-34.9097679,-8.0868163],[-34.9098036,-8.0869653],[-34.9099367,-8.0875557],[-34.9102136,-8.088798],[-34.910287,-8.0890721],[-34.9103331,-8.0892443]]}},{"type":"Feature","id":"way/854786881","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/854786881","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9112475,-8.0934197],[-34.9113109,-8.0937185],[-34.9113938,-8.094074],[-34.9115385,-8.0947479],[-34.9116854,-8.0953781],[-34.9118261,-8.0960076]]}},{"type":"Feature","id":"way/854786882","properties":{"name":"Avenida José Ferreira Lins","id":"way/854786882","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9132063,-8.0929977],[-34.9132285,-8.0927547],[-34.9132244,-8.0925489],[-34.9132179,-8.0924386],[-34.9132063,-8.0923026]]}},{"type":"Feature","id":"way/854786886","properties":{"name":"Rua Ibipituba","id":"way/854786886","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9201468,-8.1077334],[-34.9197522,-8.1074183],[-34.9193781,-8.1070865],[-34.9186192,-8.1064227]]}},{"type":"Feature","id":"way/854786887","properties":{"name":"Rua Blumenau","id":"way/854786887","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9201468,-8.1077334],[-34.9205353,-8.1072962],[-34.9208858,-8.1069071],[-34.921277,-8.1064701]]}},{"type":"Feature","id":"way/854786888","properties":{"name":"Rua Ibipituba","id":"way/854786888","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9216672,-8.1090776],[-34.921551,-8.1089771],[-34.9201468,-8.1077334]]}},{"type":"Feature","id":"way/854786891","properties":{"name":"Rua Jean Émile Favre","id":"way/854786891","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9167285,-8.1085846],[-34.9166628,-8.108527],[-34.9165597,-8.1084365],[-34.9163633,-8.1082633],[-34.9161731,-8.1080943],[-34.9161205,-8.1080474],[-34.9160413,-8.107984]]}},{"type":"Feature","id":"way/854786900","properties":{"name":"Rua Arquiteto Luíz Nunes","id":"way/854786900","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9118261,-8.0960076],[-34.9119702,-8.0966521]]}},{"type":"Feature","id":"way/854786901","properties":{"name":"Avenida Engenheiro Alves Souza","id":"way/854786901","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9158986,-8.0972033],[-34.914878,-8.0974404]]}},{"type":"Feature","id":"way/854786902","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/854786902","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.915399,-8.0924493],[-34.9157987,-8.0925004],[-34.915912,-8.0925209],[-34.916026,-8.0925416],[-34.916085,-8.0925708],[-34.916144,-8.0926033],[-34.9161778,-8.0926275],[-34.9162298,-8.0926764],[-34.916309,-8.0927786],[-34.9163649,-8.0928877],[-34.9164263,-8.0930973],[-34.9164954,-8.0933469],[-34.916547,-8.093631],[-34.9165618,-8.093722],[-34.9165598,-8.0937817]]}},{"type":"Feature","id":"way/854994654","properties":{"name":"Rua Antônio Falcão","id":"way/854994654","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.894659,-8.1161778],[-34.8947494,-8.1161352],[-34.89538,-8.1158228],[-34.8954136,-8.1158067],[-34.8954637,-8.1157803]]}},{"type":"Feature","id":"way/857404848","properties":{"name":"Estrada das Ubaias","id":"way/857404848","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9180337,-8.0294766],[-34.9182124,-8.0296302],[-34.9184142,-8.029796],[-34.9185184,-8.029895],[-34.9188414,-8.0301978],[-34.9190051,-8.0303563]]}},{"type":"Feature","id":"way/857404849","properties":{"name":"Estrada do Arraial","id":"way/857404849","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9201218,-8.0279279],[-34.9201932,-8.0279608],[-34.9203278,-8.02803]]}},{"type":"Feature","id":"way/857404850","properties":{"name":"Estrada do Arraial","id":"way/857404850","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9211914,-8.0284931],[-34.9213257,-8.0285415],[-34.9214146,-8.0285736],[-34.9216399,-8.0286001],[-34.9218197,-8.0286028],[-34.9223038,-8.028577],[-34.9230266,-8.0284912],[-34.9230695,-8.0284806],[-34.9232094,-8.0284461],[-34.9233754,-8.0283635],[-34.9237337,-8.0281332]]}},{"type":"Feature","id":"way/857404860","properties":{"name":"Rua Padre Lemos","id":"way/857404860","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9178064,-8.0246566],[-34.9177963,-8.0248446],[-34.9177963,-8.0250265],[-34.917801,-8.0253965],[-34.9178163,-8.0258999],[-34.91782,-8.0261777],[-34.917819,-8.026392]]}},{"type":"Feature","id":"way/863027564","properties":{"name":"Rua Manoel Brandão","id":"way/863027564","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.880899,-8.0122859],[-34.8807194,-8.0123167],[-34.8802079,-8.0124044]]}},{"type":"Feature","id":"way/863027568","properties":{"name":"Avenida Professor José dos Anjos","id":"way/863027568","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8979287,-8.0265709],[-34.8981593,-8.0265076]]}},{"type":"Feature","id":"way/863027570","properties":{"name":"Avenida Jornalista Possidonio Cavalcanti Bastos","id":"way/863027570","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9316815,-8.0296152],[-34.931023,-8.0305964],[-34.9305451,-8.0313711]]}},{"type":"Feature","id":"way/863027574","properties":{"name":"Avenida Agostinho Gomes","id":"way/863027574","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8921927,-8.0724243],[-34.89234,-8.0724161]]}},{"type":"Feature","id":"way/863027576","properties":{"name":"Rua Jean Émile Favre","id":"way/863027576","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.913721,-8.1059633],[-34.9139597,-8.1061607],[-34.914576,-8.1066936],[-34.91477,-8.1068631],[-34.9147832,-8.1068728]]}},{"type":"Feature","id":"way/864814848","properties":{"name":"Avenida Beira Rio","id":"way/864814848","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9012802,-8.065292],[-34.9014281,-8.0645822]]}},{"type":"Feature","id":"way/880644137","properties":{"name":"Rua Antônio Valdevino da Costa","id":"way/880644137","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9266237,-8.0602572],[-34.9266687,-8.0602415],[-34.9268429,-8.0601754]]}},{"type":"Feature","id":"way/880659709","properties":{"name":"Avenida Engenheiro Abdias de Carvalho - Pista Lateral","id":"way/880659709","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9270609,-8.0602557],[-34.9275966,-8.0604648],[-34.9279568,-8.0606094]]}},{"type":"Feature","id":"way/887539981","properties":{"name":"Rua Padre Roma","id":"way/887539981","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9071642,-8.0328907],[-34.9071993,-8.032805]]}},{"type":"Feature","id":"way/887542279","properties":{"name":"Rua Padre Roma","id":"way/887542279","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9105651,-8.0330448],[-34.9105363,-8.0330113],[-34.9105101,-8.033],[-34.9104886,-8.0329967],[-34.9104611,-8.0329841],[-34.9104249,-8.0329283],[-34.9103887,-8.0328758],[-34.9103667,-8.0328556],[-34.9103449,-8.032849],[-34.910303,-8.0328702]]}},{"type":"Feature","id":"way/899950239","properties":{"name":"Avenida Professor José dos Anjos","id":"way/899950239","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8795251,-8.0225837],[-34.8809585,-8.0232951],[-34.8829531,-8.0242472]]}},{"type":"Feature","id":"way/901242723","properties":{"name":"Avenida Júlio César","id":"way/901242723","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9214709,-8.141504],[-34.9221146,-8.1414582],[-34.9234597,-8.1413766],[-34.9236904,-8.1413626],[-34.9240766,-8.1413387]]}},{"type":"Feature","id":"way/901242726","properties":{"name":"Avenida Júlio César","id":"way/901242726","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9240766,-8.1413387],[-34.924886,-8.1412949],[-34.9254781,-8.1412604],[-34.9259561,-8.141234],[-34.926321,-8.1412139],[-34.9266683,-8.141192],[-34.9270519,-8.1411622],[-34.9272062,-8.1411529],[-34.9273067,-8.1411469],[-34.9274468,-8.1411529],[-34.9277399,-8.1411861],[-34.9282341,-8.1412644],[-34.9286907,-8.1413328],[-34.9293908,-8.1414363],[-34.9295832,-8.1414675],[-34.9300285,-8.1415443],[-34.9301539,-8.1415658],[-34.9305106,-8.1416315],[-34.9310222,-8.1417125],[-34.931499,-8.1417921],[-34.931935,-8.1418587],[-34.9319731,-8.1418645],[-34.9321482,-8.14188],[-34.9322151,-8.141885],[-34.932309,-8.1418838],[-34.9323841,-8.1418751],[-34.9324847,-8.1418532],[-34.9326426,-8.1418024],[-34.9328069,-8.1417454],[-34.9329963,-8.1416766],[-34.9331553,-8.1416129],[-34.9332482,-8.1415555],[-34.9333175,-8.1415127],[-34.9333886,-8.1414469],[-34.9334355,-8.1413885],[-34.9334885,-8.1412903]]}},{"type":"Feature","id":"way/908266048","properties":{"name":"Rua Arnaldo Rosa Teixeira","id":"way/908266048","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9235017,-7.9645117],[-34.9241323,-7.9645691]]}},{"type":"Feature","id":"way/911290359","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/911290359","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9289766,-8.1072068],[-34.9291191,-8.1072276],[-34.9292038,-8.1072399],[-34.9293037,-8.1072591],[-34.9298637,-8.1074187],[-34.9302484,-8.1075256],[-34.9305538,-8.1076058],[-34.9309253,-8.1077047],[-34.9312972,-8.1078044],[-34.9316955,-8.1079173],[-34.932197,-8.1080494],[-34.9329849,-8.1082625],[-34.9336602,-8.1084417],[-34.9342248,-8.1085918],[-34.9342543,-8.1086017],[-34.9345869,-8.1086894],[-34.9346875,-8.1087292],[-34.9348343,-8.1087936],[-34.9349396,-8.1088533],[-34.9351896,-8.1090302],[-34.9352239,-8.1090552],[-34.935274,-8.1090956]]}},{"type":"Feature","id":"way/911290368","properties":{"name":"Rua São Nicolau","id":"way/911290368","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9266622,-8.1068868],[-34.9270799,-8.1069577],[-34.9271612,-8.1069699]]}},{"type":"Feature","id":"way/911290373","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/911290373","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9282552,-8.1071239],[-34.9286706,-8.1071678],[-34.9289766,-8.1072068]]}},{"type":"Feature","id":"way/911290374","properties":{"name":"Rua Itaimbé","id":"way/911290374","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9212824,-8.1095063],[-34.9197605,-8.1081854]]}},{"type":"Feature","id":"way/911290375","properties":{"name":"Rua Blumenau","id":"way/911290375","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9197605,-8.1081854],[-34.9201468,-8.1077334]]}},{"type":"Feature","id":"way/911290376","properties":{"name":"Rua Itaimbé","id":"way/911290376","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9178754,-8.1065144],[-34.9174985,-8.1061767]]}},{"type":"Feature","id":"way/911290377","properties":{"name":"Rua Potengy","id":"way/911290377","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9182444,-8.1068412],[-34.9178921,-8.1072554],[-34.917528,-8.1076803]]}},{"type":"Feature","id":"way/911366369","properties":{"name":"Avenida General Mac Artur","id":"way/911366369","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9087727,-8.1095045],[-34.9090927,-8.1094457]]}},{"type":"Feature","id":"way/914904026","properties":{"name":"Rua Honorópolis","id":"way/914904026","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8896582,-8.0900029],[-34.8897357,-8.0900371],[-34.8897796,-8.0900504],[-34.8898341,-8.0900589],[-34.8898736,-8.0900647],[-34.8899083,-8.0900741],[-34.8899353,-8.0900851],[-34.8899578,-8.0900942],[-34.8899724,-8.0901037],[-34.8899881,-8.0901143],[-34.890019,-8.0901297],[-34.8902982,-8.0902253],[-34.8904769,-8.0902675],[-34.8905363,-8.0902731],[-34.890599,-8.0902668],[-34.890659,-8.0902645],[-34.8907599,-8.0902844],[-34.8907795,-8.0902824],[-34.890796,-8.0902794],[-34.8908052,-8.0902741]]}},{"type":"Feature","id":"way/918193684","properties":{"name":"Rua Valpiano Machado","id":"way/918193684","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9259233,-7.9659176],[-34.9259629,-7.9654316]]}},{"type":"Feature","id":"way/924065445","properties":{"name":"Rua Márcia Mendes","id":"way/924065445","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9024664,-8.0055953],[-34.9024745,-8.0056137],[-34.9025138,-8.0057486],[-34.9025511,-8.0058372],[-34.9026021,-8.0059051],[-34.9026781,-8.0059705],[-34.9027697,-8.0060371],[-34.9033019,-8.0064331]]}},{"type":"Feature","id":"way/927715993","properties":{"name":"Rua da Hora","id":"way/927715993","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8943365,-8.0462005],[-34.8943914,-8.0462993],[-34.894752,-8.0469315],[-34.8951385,-8.0476185]]}},{"type":"Feature","id":"way/927715995","properties":{"name":"Rua Antônio Novais","id":"way/927715995","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9003091,-8.0449867],[-34.9003614,-8.0442921],[-34.9003996,-8.0438738]]}},{"type":"Feature","id":"way/927715996","properties":{"name":"Rua Alberto Paiva","id":"way/927715996","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8982993,-8.0438673],[-34.8983713,-8.0438627],[-34.8987692,-8.0438375]]}},{"type":"Feature","id":"way/930355052","properties":{"name":"Avenida Brasília Formosa","id":"way/930355052","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8800975,-8.0887588],[-34.880069,-8.088782],[-34.8800495,-8.088797],[-34.8800053,-8.0888069],[-34.8799613,-8.0888126],[-34.8799225,-8.088802],[-34.8799067,-8.0887946]]}},{"type":"Feature","id":"way/930355053","properties":{"name":"Avenida Brasília Formosa","id":"way/930355053","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8799067,-8.0887946],[-34.8798457,-8.0887479]]}},{"type":"Feature","id":"way/930653129","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/930653129","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8817606,-8.0906074],[-34.8817115,-8.090619],[-34.8816184,-8.0902282]]}},{"type":"Feature","id":"way/930662176","properties":{"name":"Praça Pinto Damásio","id":"way/930662176","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9596201,-8.0485851],[-34.9592079,-8.0486508],[-34.9591976,-8.0486539],[-34.959188,-8.0486574],[-34.9591812,-8.048662],[-34.9591761,-8.0486682],[-34.9591697,-8.0486767],[-34.9591659,-8.048685],[-34.9591637,-8.048694],[-34.9591633,-8.0487065],[-34.9593273,-8.0497062],[-34.9593306,-8.0497241],[-34.9593367,-8.0497315],[-34.9593422,-8.0497378],[-34.9593481,-8.0497407],[-34.9593585,-8.0497461],[-34.959371,-8.0497498],[-34.9597563,-8.0496526],[-34.9597679,-8.0496477],[-34.9597806,-8.0496378],[-34.9597906,-8.0496256],[-34.9597941,-8.0496172],[-34.9597964,-8.049608],[-34.9596262,-8.0485917],[-34.9596258,-8.04859],[-34.9596251,-8.0485881],[-34.9596239,-8.0485866],[-34.9596224,-8.0485857],[-34.9596201,-8.0485851]]}},{"type":"Feature","id":"way/930691563","properties":{"name":"Rua Antônio Falcão","id":"way/930691563","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8931491,-8.116981],[-34.8937878,-8.1166596]]}},{"type":"Feature","id":"way/930691564","properties":{"name":"Rua Antônio Falcão","id":"way/930691564","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8955696,-8.115731],[-34.8956439,-8.1156906],[-34.8966741,-8.1151794],[-34.8967322,-8.1151493]]}},{"type":"Feature","id":"way/930691566","properties":{"name":"Rua Félix de Brito Melo","id":"way/930691566","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8977576,-8.1167968],[-34.8966692,-8.1173248],[-34.8966312,-8.1173447],[-34.8965818,-8.1173705]]}},{"type":"Feature","id":"way/930691567","properties":{"name":"Rua Félix de Brito Melo","id":"way/930691567","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8947498,-8.1183143],[-34.8942193,-8.1185747],[-34.8941235,-8.1186217]]}},{"type":"Feature","id":"way/930691568","properties":{"name":"Rua Félix de Brito Melo","id":"way/930691568","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.896487,-8.1174236],[-34.896421,-8.11746],[-34.8957327,-8.117828],[-34.8956419,-8.1178778]]}},{"type":"Feature","id":"way/930761582","properties":{"id":"way/930761582","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9249309,-7.9662408],[-34.9249401,-7.9663557]]}},{"type":"Feature","id":"way/930761583","properties":{"name":"Rua Doutora Rita Gomes","id":"way/930761583","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9242716,-7.9657712],[-34.9237377,-7.9657068]]}},{"type":"Feature","id":"way/930761584","properties":{"name":"Avenida Padre Mosca de Carvalho","id":"way/930761584","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9234822,-7.9646582],[-34.9233734,-7.9647139],[-34.9232326,-7.9647471],[-34.9231246,-7.9647687],[-34.9230149,-7.9647907]]}},{"type":"Feature","id":"way/930761585","properties":{"name":"Avenida Padre Mosca de Carvalho","id":"way/930761585","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9237231,-7.9627071],[-34.9237455,-7.962691],[-34.9243481,-7.9627473],[-34.9243683,-7.9627631]]}},{"type":"Feature","id":"way/930761586","properties":{"name":"Rua Doutor Artur Orlando de Andrade Barbosa","id":"way/930761586","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9242963,-7.9654615],[-34.9235445,-7.9653932]]}},{"type":"Feature","id":"way/930761587","properties":{"id":"way/930761587","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9315357,-7.9667312],[-34.9314579,-7.9671793]]}},{"type":"Feature","id":"way/930790689","properties":{"name":"Rua Itaquicé","id":"way/930790689","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9161205,-8.1080474],[-34.9161514,-8.1079146],[-34.9161822,-8.1077659],[-34.9162151,-8.1076763],[-34.9162486,-8.1076129],[-34.9162909,-8.1075568],[-34.9164977,-8.1073297]]}},{"type":"Feature","id":"way/930790691","properties":{"name":"Rua Araraquara","id":"way/930790691","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9168856,-8.1076769],[-34.9164977,-8.1073297]]}},{"type":"Feature","id":"way/930790692","properties":{"name":"Rua Araçatuba","id":"way/930790692","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9168856,-8.1076769],[-34.9164161,-8.1082061],[-34.9163633,-8.1082633]]}},{"type":"Feature","id":"way/930790693","properties":{"name":"Rua Itaquicé","id":"way/930790693","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9164977,-8.1073297],[-34.9168219,-8.1069448],[-34.9171619,-8.1065551],[-34.9174985,-8.1061767]]}},{"type":"Feature","id":"way/930790694","properties":{"name":"Rua Itaimbé","id":"way/930790694","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9174985,-8.1061767],[-34.9171461,-8.1058779],[-34.9167888,-8.1055624]]}},{"type":"Feature","id":"way/930790695","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/930790695","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.927352,-8.1070389],[-34.9273174,-8.1070312],[-34.927279,-8.1070259],[-34.9272212,-8.1070194],[-34.9271612,-8.1069699]]}},{"type":"Feature","id":"way/930790696","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/930790696","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.927352,-8.1070389],[-34.927958,-8.1071208],[-34.927974,-8.107123],[-34.927996,-8.107127],[-34.9280047,-8.1071307],[-34.9280141,-8.107135],[-34.9280248,-8.1071402],[-34.9280368,-8.1071456],[-34.9280617,-8.1071587],[-34.9280869,-8.1071742]]}},{"type":"Feature","id":"way/930790697","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/930790697","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9280869,-8.1071742],[-34.9281145,-8.1071701],[-34.9281178,-8.1071693],[-34.9281322,-8.1071667],[-34.928161,-8.1071619],[-34.928176,-8.1071596],[-34.9281944,-8.1071564]]}},{"type":"Feature","id":"way/930790699","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/930790699","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9289516,-8.1072974],[-34.928911,-8.1072531],[-34.9288674,-8.107204],[-34.9282522,-8.1071354]]}},{"type":"Feature","id":"way/930790700","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/930790700","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9281944,-8.1071564],[-34.9282522,-8.1071354]]}},{"type":"Feature","id":"way/930790701","properties":{"name":"Avenida Dom Hélder Câmara","id":"way/930790701","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9290416,-8.1072966],[-34.9289516,-8.1072974]]}},{"type":"Feature","id":"way/930791204","properties":{"name":"Rua Francisco da Cunha","id":"way/930791204","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8977576,-8.1167968],[-34.8972411,-8.1159917],[-34.8967611,-8.1151976],[-34.8967322,-8.1151493]]}},{"type":"Feature","id":"way/930798445","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/930798445","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8847298,-8.0423582],[-34.8845278,-8.0425575]]}},{"type":"Feature","id":"way/930798446","properties":{"name":"Avenida Cruz Cabugá","id":"way/930798446","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8814718,-8.0539697],[-34.8815156,-8.054039],[-34.8815455,-8.0540862],[-34.8815702,-8.0541253]]}},{"type":"Feature","id":"way/930798447","properties":{"name":"Avenida Cruz Cabugá","id":"way/930798447","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8815702,-8.0541253],[-34.8817455,-8.0543864],[-34.8817677,-8.0544893],[-34.8819055,-8.0547043],[-34.8819825,-8.0547286],[-34.8820421,-8.0546928]]}},{"type":"Feature","id":"way/930798448","properties":{"name":"Avenida Cruz Cabugá","id":"way/930798448","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8820624,-8.0547262],[-34.8822231,-8.0549904]]}},{"type":"Feature","id":"way/930798449","properties":{"name":"Avenida Cruz Cabugá","id":"way/930798449","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8830382,-8.0578835],[-34.8829926,-8.0578969],[-34.8829532,-8.0577611],[-34.8829109,-8.0576282],[-34.8828898,-8.0576012]]}},{"type":"Feature","id":"way/930804006","properties":{"name":"Rua Álvaro Nicéas Píres","id":"way/930804006","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9256797,-7.9653681],[-34.9256117,-7.9660103]]}},{"type":"Feature","id":"way/931055328","properties":{"name":"Rua de São Jorge","id":"way/931055328","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8708416,-8.0605152],[-34.8708466,-8.0605315],[-34.87086,-8.0605794],[-34.8708751,-8.0606138],[-34.8708917,-8.0606424],[-34.8709346,-8.0606865],[-34.8709908,-8.0607163]]}},{"type":"Feature","id":"way/931095116","properties":{"name":"Avenida Afonso Olindense","id":"way/931095116","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9595462,-8.048151],[-34.9596011,-8.0484205],[-34.9596206,-8.0485382]]}},{"type":"Feature","id":"way/931163740","properties":{"name":"Rua Florasense","id":"way/931163740","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9159528,-7.9578298],[-34.9156803,-7.9570539],[-34.9156498,-7.9570539],[-34.9153098,-7.9572319]]}},{"type":"Feature","id":"way/931163744","properties":{"name":"Rua Chalé","id":"way/931163744","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9217815,-7.9472355],[-34.9222078,-7.9479033]]}},{"type":"Feature","id":"way/931163748","properties":{"name":"Rua Chalé","id":"way/931163748","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9217815,-7.9472355],[-34.9218026,-7.9471814]]}},{"type":"Feature","id":"way/931163755","properties":{"name":"Rua Diamante","id":"way/931163755","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9213523,-7.9621858],[-34.9210807,-7.9621447],[-34.9209888,-7.9620416],[-34.9209694,-7.9620199],[-34.9209266,-7.9619055],[-34.9208983,-7.96183]]}},{"type":"Feature","id":"way/945189818","properties":{"name":"Avenida Queixeramobim","id":"way/945189818","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.954336,-8.1222635],[-34.9542761,-8.1222487],[-34.9542022,-8.1222263],[-34.9541087,-8.1222004]]}},{"type":"Feature","id":"way/946076340","properties":{"name":"Rua Rio Beberibe","id":"way/946076340","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8897847,-8.0044061],[-34.8896879,-8.0044585],[-34.8894318,-8.0046157],[-34.8892451,-8.004722]]}},{"type":"Feature","id":"way/964317400","properties":{"name":"Ponte da Boa Vista","id":"way/964317400","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8810822,-8.063806],[-34.8809231,-8.0638489]]}},{"type":"Feature","id":"way/964317401","properties":{"name":"Ponte da Boa Vista","id":"way/964317401","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8823824,-8.0634517],[-34.8823965,-8.0634617],[-34.8825143,-8.0634207],[-34.8825186,-8.0634095]]}},{"type":"Feature","id":"way/964422137","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/964422137","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9095595,-8.1555849],[-34.9090242,-8.1542989],[-34.908951,-8.1541243],[-34.9087945,-8.1537508],[-34.908519,-8.1530935],[-34.9083801,-8.1527622],[-34.9083629,-8.1527436],[-34.9083195,-8.1527128],[-34.9083073,-8.1526969],[-34.9082327,-8.1525052],[-34.9082333,-8.1524853],[-34.908248,-8.1524355],[-34.9082419,-8.1523999],[-34.9082229,-8.1523688],[-34.9081764,-8.1523314],[-34.908163,-8.1523076],[-34.908016,-8.1519159],[-34.9080169,-8.1518937],[-34.9080216,-8.1518519],[-34.9080149,-8.1518189],[-34.9079922,-8.1517885],[-34.907964,-8.1517676],[-34.9079514,-8.1517483],[-34.9078223,-8.1514122],[-34.9078188,-8.1513935],[-34.9078279,-8.1513573],[-34.9078257,-8.151337],[-34.907781,-8.1512375]]}},{"type":"Feature","id":"way/965674118","properties":{"name":"Rua Doutor João Santos Filho","id":"way/965674118","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9137907,-8.0364281],[-34.9137985,-8.0364982],[-34.9137877,-8.0365398]]}},{"type":"Feature","id":"way/965719995","properties":{"name":"Rua Guerra de Holanda","id":"way/965719995","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9240628,-8.0287218],[-34.9241884,-8.0290763],[-34.9242898,-8.0294137]]}},{"type":"Feature","id":"way/965719996","properties":{"name":"Rua de Casa Forte","id":"way/965719996","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9187331,-8.0333125],[-34.9187798,-8.0330751]]}},{"type":"Feature","id":"way/965719997","properties":{"name":"Avenida Maurício de Nassau","id":"way/965719997","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9266965,-8.0409171],[-34.9271409,-8.0406719]]}},{"type":"Feature","id":"way/965739727","properties":{"name":"Rua Pedro Allain","id":"way/965739727","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9183672,-8.0230837],[-34.9184211,-8.0231988]]}},{"type":"Feature","id":"way/965961339","properties":{"name":"Rua Albino Meira","id":"way/965961339","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9079546,-8.0327048],[-34.9079422,-8.032679],[-34.9079324,-8.0326483],[-34.9079224,-8.0326083]]}},{"type":"Feature","id":"way/965984036","properties":{"name":"Rua Neto de Mendonça","id":"way/965984036","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9022039,-8.036019],[-34.9019927,-8.035937]]}},{"type":"Feature","id":"way/965986745","properties":{"name":"Rua Paula Batista","id":"way/965986745","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9168624,-8.0281687],[-34.916768,-8.0279659]]}},{"type":"Feature","id":"way/966029958","properties":{"name":"Rua Couto Magalhães","id":"way/966029958","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8947515,-8.0304189],[-34.8950193,-8.0304111]]}},{"type":"Feature","id":"way/966029959","properties":{"name":"Rua José Alexandre Caçador","id":"way/966029959","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8946319,-8.0306335],[-34.894455,-8.0304295]]}},{"type":"Feature","id":"way/966034197","properties":{"name":"Rua Professor Estevão Francisco da Costa","id":"way/966034197","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9184121,-8.0462033],[-34.9184208,-8.0460964]]}},{"type":"Feature","id":"way/966034198","properties":{"name":"Rua Professor Estevão Francisco da Costa","id":"way/966034198","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9184208,-8.0460964],[-34.9184567,-8.046204]]}},{"type":"Feature","id":"way/966034199","properties":{"name":"Rua Professor Estevão Francisco da Costa","id":"way/966034199","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9184121,-8.0462033],[-34.9184567,-8.046204]]}},{"type":"Feature","id":"way/966166282","properties":{"name":"Praça Zumbi dos Palmares","id":"way/966166282","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.93092,-8.0107047],[-34.9308601,-8.0107015],[-34.9308154,-8.0106848],[-34.9307769,-8.0106569],[-34.9307483,-8.0106214],[-34.9307298,-8.0105799],[-34.9307227,-8.010535],[-34.9307276,-8.0104898],[-34.9307447,-8.0104462],[-34.9307728,-8.0104085],[-34.93081,-8.0103797]]}},{"type":"Feature","id":"way/966166283","properties":{"name":"Praça Zumbi dos Palmares","id":"way/966166283","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.93081,-8.0103797],[-34.9308551,-8.0103612],[-34.9309035,-8.0103556],[-34.9309517,-8.0103633],[-34.9309959,-8.0103837],[-34.9310308,-8.0104131],[-34.9310569,-8.0104504]]}},{"type":"Feature","id":"way/966166284","properties":{"name":"Praça Zumbi dos Palmares","id":"way/966166284","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9310569,-8.0104504],[-34.9310745,-8.0105039],[-34.931074,-8.0105602]]}},{"type":"Feature","id":"way/966213512","properties":{"name":"Rua Pampulha","id":"way/966213512","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.913682,-8.1097144],[-34.9131748,-8.1098101],[-34.9129281,-8.1098567]]}},{"type":"Feature","id":"way/966213965","properties":{"name":"Rua Professor Estevão Francisco da Costa","id":"way/966213965","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9184031,-8.0463087],[-34.9184105,-8.0462237]]}},{"type":"Feature","id":"way/966217041","properties":{"name":"Rua Jean Émile Favre","id":"way/966217041","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9147832,-8.1068728],[-34.9149139,-8.1069858],[-34.9150836,-8.1071325]]}},{"type":"Feature","id":"way/966241074","properties":{"name":"Rua Paris","id":"way/966241074","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9133775,-8.1044416],[-34.913319,-8.1041799],[-34.9131335,-8.1031009]]}},{"type":"Feature","id":"way/966247586","properties":{"name":"Rua Jacundá","id":"way/966247586","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9221324,-8.1109684],[-34.9214858,-8.110405],[-34.9209092,-8.1099221]]}},{"type":"Feature","id":"way/966248371","properties":{"name":"Rua Engenheiro José Brandão Cavalcante","id":"way/966248371","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9165491,-8.0939649],[-34.9165488,-8.0939716]]}},{"type":"Feature","id":"way/966270816","properties":{"name":"Rua Francisco de Paula Machado","id":"way/966270816","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9261502,-8.0537017],[-34.9258697,-8.0537814],[-34.9255141,-8.053939]]}},{"type":"Feature","id":"way/966514774","properties":{"name":"Rua Delmiro Gouveia","id":"way/966514774","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9315012,-8.0629832],[-34.9314246,-8.063085],[-34.9313106,-8.0632006],[-34.9311122,-8.0633334],[-34.9307975,-8.0634938]]}},{"type":"Feature","id":"way/966515387","properties":{"name":"Rua Padre Lemos","id":"way/966515387","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9179569,-8.0242836],[-34.917885,-8.0244228],[-34.917862,-8.024486],[-34.9178423,-8.0245466],[-34.9178064,-8.0246566]]}},{"type":"Feature","id":"way/966538453","properties":{"name":"Rua Coronel João Batista do Rego Barros","id":"way/966538453","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9331151,-8.0185415],[-34.9333591,-8.0190286]]}},{"type":"Feature","id":"way/966538883","properties":{"name":"Rua Vinte e Um de Abril","id":"way/966538883","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9258269,-8.0721385],[-34.9253272,-8.0723374],[-34.9252119,-8.0723812],[-34.9251532,-8.0724162],[-34.9250614,-8.0724765],[-34.9248478,-8.0726248],[-34.9246721,-8.0727284],[-34.9246145,-8.0727503],[-34.9243579,-8.0728478],[-34.9241904,-8.0729113]]}},{"type":"Feature","id":"way/966559757","properties":{"name":"Avenida Jornalista Possidonio Cavalcanti Bastos","id":"way/966559757","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9306363,-8.0310831],[-34.9310073,-8.0305234],[-34.9316584,-8.0294814],[-34.9320784,-8.0288884],[-34.9321616,-8.0288337]]}},{"type":"Feature","id":"way/966560605","properties":{"name":"Avenida Jornalista Possidonio Cavalcanti Bastos","id":"way/966560605","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9322643,-8.0286648],[-34.9321616,-8.0288337]]}},{"type":"Feature","id":"way/966579273","properties":{"name":"Avenida Afonso Olindense","id":"way/966579273","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9552039,-8.0344894],[-34.9552505,-8.0346138],[-34.9552658,-8.0346488],[-34.9553888,-8.0349287],[-34.9555742,-8.03532],[-34.9557452,-8.0356467],[-34.9558161,-8.035782],[-34.9563449,-8.036792]]}},{"type":"Feature","id":"way/966586453","properties":{"id":"way/966586453","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9452875,-8.0162418],[-34.9452487,-8.0163554]]}},{"type":"Feature","id":"way/966590765","properties":{"name":"Rua Cosmorama","id":"way/966590765","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9112843,-8.1415024],[-34.9111816,-8.1412506],[-34.9111616,-8.1412027],[-34.9111236,-8.1411115]]}},{"type":"Feature","id":"way/966590766","properties":{"name":"Rua João Cardoso Aires","id":"way/966590766","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9085822,-8.1422678],[-34.908655,-8.1422344],[-34.9090916,-8.1420339],[-34.9094608,-8.1418644],[-34.9099653,-8.1416312],[-34.910356,-8.1414634]]}},{"type":"Feature","id":"way/966593153","properties":{"name":"Rua Antônio Curado","id":"way/966593153","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9425502,-8.0606887],[-34.9424686,-8.0601326],[-34.9424134,-8.0596809],[-34.9423894,-8.0595603],[-34.9422062,-8.0582299]]}},{"type":"Feature","id":"way/966596038","properties":{"name":"Acesso Bom Preço","id":"way/966596038","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8931558,-8.0273605],[-34.8930423,-8.0273395]]}},{"type":"Feature","id":"way/966596355","properties":{"name":"Acesso Bom Preço","id":"way/966596355","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8938182,-8.0278344],[-34.8938267,-8.027769]]}},{"type":"Feature","id":"way/966787079","properties":{"name":"Rua Ambrósio Machado","id":"way/966787079","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9360003,-8.0471169],[-34.9360153,-8.0470816],[-34.9360205,-8.0470588]]}},{"type":"Feature","id":"way/966787080","properties":{"name":"Rua Ambrósio Machado","id":"way/966787080","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9361338,-8.0470687],[-34.9361441,-8.0471166]]}},{"type":"Feature","id":"way/966787081","properties":{"name":"Rua Ambrósio Machado","id":"way/966787081","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9360956,-8.0468684],[-34.9360981,-8.046882]]}},{"type":"Feature","id":"way/966787082","properties":{"name":"Rua Ambrósio Machado","id":"way/966787082","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9360049,-8.0468819],[-34.9360004,-8.0468644]]}},{"type":"Feature","id":"way/966798842","properties":{"name":"Avenida Professor Estevão Francisco da Costa","id":"way/966798842","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9184271,-8.0460641],[-34.91845,-8.0459468]]}},{"type":"Feature","id":"way/966802124","properties":{"name":"Avenida Cidade de Monteiro","id":"way/966802124","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8870726,-8.0070218],[-34.8869449,-8.0068655]]}},{"type":"Feature","id":"way/966804522","properties":{"name":"Rua Félix de Brito Melo","id":"way/966804522","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9006426,-8.115294],[-34.9005021,-8.1153665]]}},{"type":"Feature","id":"way/966813469","properties":{"name":"Rua Jean Émile Favre","id":"way/966813469","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9160101,-8.1079567],[-34.9159903,-8.1079377]]}},{"type":"Feature","id":"way/966814893","properties":{"name":"Avenida Marquês de Olinda","id":"way/966814893","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8736574,-8.0636227],[-34.8730244,-8.063509],[-34.8723679,-8.0633865]]}},{"type":"Feature","id":"way/966814894","properties":{"name":"Rua da Moeda","id":"way/966814894","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8724232,-8.0645132],[-34.8722196,-8.0644855],[-34.8721446,-8.0644912],[-34.872053,-8.0645328]]}},{"type":"Feature","id":"way/966814896","properties":{"name":"Rua Madre de Deus","id":"way/966814896","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8733383,-8.0661687],[-34.8733491,-8.0662118],[-34.8734582,-8.0664727],[-34.8734772,-8.0665105]]}},{"type":"Feature","id":"way/966814897","properties":{"name":"Avenida Marquês de Olinda","id":"way/966814897","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.874436,-8.0637652],[-34.8736574,-8.0636227]]}},{"type":"Feature","id":"way/966814899","properties":{"name":"Rua do Brum","id":"way/966814899","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8719395,-8.0605],[-34.8717463,-8.0591351]]}},{"type":"Feature","id":"way/966814900","properties":{"name":"Travessa Tiradentes","id":"way/966814900","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8724877,-8.0589648],[-34.8723225,-8.0590003],[-34.8717463,-8.0591351]]}},{"type":"Feature","id":"way/966814902","properties":{"name":"Rua do Ocidente","id":"way/966814902","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8722186,-8.0570411],[-34.87147,-8.057142]]}},{"type":"Feature","id":"way/966827332","properties":{"name":"Rua Pintor Antônio Albuquerque","id":"way/966827332","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.923204,-8.107416],[-34.9226444,-8.1073334]]}},{"type":"Feature","id":"way/966827333","properties":{"name":"Rua Virgínia Heráclio","id":"way/966827333","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9232538,-8.107424],[-34.9232367,-8.1074007],[-34.9232288,-8.107379],[-34.9232164,-8.1073299]]}},{"type":"Feature","id":"way/966832034","properties":{"name":"Rua Quitério Inácio de Melo","id":"way/966832034","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9094792,-8.0802895],[-34.9093748,-8.0807178]]}},{"type":"Feature","id":"way/966838174","properties":{"name":"Rua Virgínia Heráclio","id":"way/966838174","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.923204,-8.107416],[-34.9232164,-8.1073299]]}},{"type":"Feature","id":"way/967106434","properties":{"name":"Rua Dona Maria César","id":"way/967106434","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.872516,-8.0627604],[-34.87252,-8.0628147],[-34.8725124,-8.0628719],[-34.8724717,-8.0630145],[-34.8723679,-8.0633865]]}},{"type":"Feature","id":"way/967597448","properties":{"name":"Via Mangue - Pista Leste","id":"way/967597448","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8915569,-8.1054219],[-34.8914147,-8.1052971],[-34.8912887,-8.105163],[-34.8911472,-8.1049817],[-34.8910687,-8.1048722],[-34.891009,-8.1047899],[-34.8909269,-8.104693],[-34.8908119,-8.1045695],[-34.890802,-8.1045606]]}},{"type":"Feature","id":"way/967597449","properties":{"name":"Via Mangue - Pista Leste","id":"way/967597449","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8942614,-8.1077065],[-34.8941526,-8.1076458],[-34.894056,-8.1075754],[-34.8938642,-8.1074254],[-34.893479,-8.1070544],[-34.8927562,-8.1063702],[-34.8925453,-8.1061687],[-34.8923475,-8.1059735],[-34.892261,-8.1058985],[-34.8921909,-8.1058373],[-34.8921109,-8.1057751],[-34.8919921,-8.1056947],[-34.8918781,-8.105633],[-34.891748,-8.1055626],[-34.8916548,-8.1055032],[-34.8915569,-8.1054219]]}},{"type":"Feature","id":"way/967603906","properties":{"name":"Via Mangue - Pista Leste","id":"way/967603906","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8894778,-8.0997724],[-34.8896022,-8.0996443],[-34.8897222,-8.0995069],[-34.8899026,-8.099331],[-34.8900622,-8.0991896],[-34.890137,-8.0991248]]}},{"type":"Feature","id":"way/967603907","properties":{"name":"Via Mangue - Pista Leste","id":"way/967603907","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.890137,-8.0991248],[-34.890196,-8.0990707],[-34.8903217,-8.0989237],[-34.890434,-8.0987826],[-34.8904991,-8.0986774],[-34.8905604,-8.0985556],[-34.8906235,-8.0983777],[-34.8906573,-8.0982412],[-34.8906875,-8.0980477],[-34.8906929,-8.0979588],[-34.8907046,-8.0977194],[-34.8907137,-8.0974765],[-34.8907314,-8.0972146]]}},{"type":"Feature","id":"way/967628956","properties":{"name":"Rua Floriano Peixoto","id":"way/967628956","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8825765,-8.0661382],[-34.8827609,-8.0666898]]}},{"type":"Feature","id":"way/967628957","properties":{"name":"Rua Floriano Peixoto","id":"way/967628957","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8823642,-8.0654204],[-34.88249,-8.0658496],[-34.8825041,-8.0658956]]}},{"type":"Feature","id":"way/967628958","properties":{"name":"Rua Floriano Peixoto","id":"way/967628958","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8825041,-8.0658956],[-34.8825534,-8.0660568],[-34.8825765,-8.0661382]]}},{"type":"Feature","id":"way/967651400","properties":{"name":"Via Mangue - Pista Leste","id":"way/967651400","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8990604,-8.1096552],[-34.8987839,-8.1092492]]}},{"type":"Feature","id":"way/967666040","properties":{"name":"Avenida Beira Rio","id":"way/967666040","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9049699,-8.0437266],[-34.9050531,-8.0434371],[-34.9050879,-8.0432406]]}},{"type":"Feature","id":"way/967666041","properties":{"name":"Avenida Beira Rio","id":"way/967666041","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9044228,-8.0453347],[-34.9044925,-8.0449907],[-34.9045515,-8.0447398],[-34.9046052,-8.0445393],[-34.9046575,-8.0444038],[-34.9047419,-8.0442325],[-34.904805,-8.0440971],[-34.9048787,-8.0439218],[-34.9049699,-8.0437266]]}},{"type":"Feature","id":"way/967668730","properties":{"name":"Praça Professor Campelo Barreto","id":"way/967668730","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9150879,-8.0484623],[-34.9151705,-8.0489009],[-34.9151804,-8.0489532]]}},{"type":"Feature","id":"way/967668776","properties":{"name":"Rua Mem de Sá","id":"way/967668776","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8924829,-8.0301092],[-34.8917136,-8.0299709]]}},{"type":"Feature","id":"way/967909327","properties":{"name":"Avenida Sebastião Salazar","id":"way/967909327","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.884797,-8.0105341],[-34.8840467,-8.0111337],[-34.8837912,-8.0113468],[-34.8828015,-8.0121344]]}},{"type":"Feature","id":"way/967932898","properties":{"name":"Rua Doutor Seabra","id":"way/967932898","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9158706,-8.1259663],[-34.9162527,-8.1280507]]}},{"type":"Feature","id":"way/967934175","properties":{"name":"Rua Francisco Alves","id":"way/967934175","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8911282,-8.0685321],[-34.8910097,-8.0685876]]}},{"type":"Feature","id":"way/967934178","properties":{"name":"Rua dos Coelhos","id":"way/967934178","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8906183,-8.0679919],[-34.890034,-8.0670947]]}},{"type":"Feature","id":"way/967938106","properties":{"name":"Rua Velha","id":"way/967938106","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8850196,-8.0648072],[-34.8851625,-8.0646461]]}},{"type":"Feature","id":"way/967939989","properties":{"name":"Rua Doutor José Mariano","id":"way/967939989","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8826081,-8.0635931],[-34.8826026,-8.0635761],[-34.8825879,-8.0635432],[-34.8825705,-8.0635083],[-34.8825527,-8.0634695],[-34.8825186,-8.0634095]]}},{"type":"Feature","id":"way/967961922","properties":{"name":"Cais do Apolo","id":"way/967961922","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8744303,-8.0634389],[-34.8744435,-8.0635023],[-34.8744464,-8.0636135],[-34.874436,-8.0637652]]}},{"type":"Feature","id":"way/967961923","properties":{"name":"Cais da Alfândega","id":"way/967961923","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8739243,-8.0657535],[-34.8738887,-8.0657987],[-34.8738628,-8.0658274],[-34.8738253,-8.0658727],[-34.8736426,-8.0660469]]}},{"type":"Feature","id":"way/967961924","properties":{"name":"Cais da Alfândega","id":"way/967961924","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8736426,-8.0660469],[-34.8735587,-8.0661138],[-34.8735009,-8.0661372],[-34.8733383,-8.0661687]]}},{"type":"Feature","id":"way/967962393","properties":{"name":"Rua Amélia","id":"way/967962393","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9020563,-8.0451315],[-34.9019893,-8.0451229],[-34.9009529,-8.0450448],[-34.9004639,-8.0450014],[-34.9003091,-8.0449867],[-34.9002338,-8.0449807],[-34.8998773,-8.0449522],[-34.8996517,-8.0449342]]}},{"type":"Feature","id":"way/967963850","properties":{"name":"Praça da República","id":"way/967963850","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8780805,-8.0612454],[-34.8780131,-8.0612593]]}},{"type":"Feature","id":"way/967972501","properties":{"name":"Rua Velha","id":"way/967972501","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8878139,-8.0623821],[-34.8871526,-8.0629347],[-34.8867329,-8.0632958],[-34.8865602,-8.0634444],[-34.8859335,-8.0639565]]}},{"type":"Feature","id":"way/967972504","properties":{"name":"Travessa do Cais da Detenção","id":"way/967972504","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8839028,-8.0663949],[-34.8841994,-8.0660033],[-34.8842363,-8.0659546]]}},{"type":"Feature","id":"way/967978836","properties":{"name":"Rua Estado de Israel","id":"way/967978836","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8934698,-8.0659958],[-34.893553,-8.0659172]]}},{"type":"Feature","id":"way/967978957","properties":{"name":"Rua Visconde de Jequitinhonha","id":"way/967978957","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9038802,-8.1386169],[-34.9042727,-8.1399878],[-34.904302,-8.1400829]]}},{"type":"Feature","id":"way/967979023","properties":{"name":"Rua Antônio Gomes de Freitas","id":"way/967979023","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8935868,-8.0661634],[-34.8934933,-8.0661732]]}},{"type":"Feature","id":"way/967979024","properties":{"name":"Rua Antônio Gomes de Freitas","id":"way/967979024","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8936189,-8.066163],[-34.8935868,-8.0661634]]}},{"type":"Feature","id":"way/967983681","properties":{"name":"Avenida Engenho Muribara","id":"way/967983681","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9501589,-8.1115121],[-34.9502184,-8.111203],[-34.9502947,-8.110806],[-34.9503697,-8.1104157]]}},{"type":"Feature","id":"way/967983682","properties":{"name":"Avenida Engenho Serra Verde","id":"way/967983682","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9519309,-8.1118809],[-34.9518938,-8.11207],[-34.9518696,-8.1121935],[-34.9518559,-8.1122632],[-34.9518335,-8.1123777]]}},{"type":"Feature","id":"way/967998463","properties":{"name":"Rua General Edson Amâncio Ramalho","id":"way/967998463","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8998039,-8.1109456],[-34.8997719,-8.1108411],[-34.8997513,-8.1107419]]}},{"type":"Feature","id":"way/968239742","properties":{"name":"Rua do Hospício","id":"way/968239742","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8830394,-8.0578872],[-34.8830958,-8.0580113],[-34.8834217,-8.0586766]]}},{"type":"Feature","id":"way/968283969","properties":{"name":"Rua Othon Paraíso","id":"way/968283969","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.883864,-8.0366276],[-34.8838958,-8.0366122],[-34.8839461,-8.0366222],[-34.8839602,-8.0366294],[-34.8839729,-8.0366388],[-34.8839922,-8.0366618],[-34.8840035,-8.0366896],[-34.8840057,-8.0367194]]}},{"type":"Feature","id":"way/968284171","properties":{"name":"Avenida Doutor Jayme da Fonte","id":"way/968284171","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.878805,-8.0398998],[-34.8787682,-8.0399855],[-34.8787352,-8.0400648],[-34.878633,-8.0402889],[-34.8785113,-8.0405442]]}},{"type":"Feature","id":"way/968292794","properties":{"name":"Rua Marquês de Maricá","id":"way/968292794","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9205387,-8.0461229],[-34.920755,-8.0459968]]}},{"type":"Feature","id":"way/968292795","properties":{"name":"Rua Marquês de Maricá","id":"way/968292795","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9214688,-8.0456004],[-34.9216392,-8.0455061],[-34.9217404,-8.0454502]]}},{"type":"Feature","id":"way/968292796","properties":{"name":"Rua Marquês de Maricá","id":"way/968292796","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9212181,-8.045739],[-34.9214688,-8.0456004]]}},{"type":"Feature","id":"way/968292797","properties":{"name":"Rua Marquês de Maricá","id":"way/968292797","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9209968,-8.0458613],[-34.9212181,-8.045739]]}},{"type":"Feature","id":"way/968292798","properties":{"name":"Rua Marquês de Maricá","id":"way/968292798","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.920755,-8.0459968],[-34.9208155,-8.0459616],[-34.9209968,-8.0458613]]}},{"type":"Feature","id":"way/968293261","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/968293261","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9036702,-8.1361884],[-34.9037307,-8.1363727],[-34.9037563,-8.1364496]]}},{"type":"Feature","id":"way/968293262","properties":{"name":"Avenida Visconde de Jequitinhonha","id":"way/968293262","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9033532,-8.1351431],[-34.9035399,-8.1357962],[-34.9036702,-8.1361884]]}},{"type":"Feature","id":"way/968299893","properties":{"name":"Rua José de Alencar","id":"way/968299893","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8888196,-8.0613097],[-34.8883454,-8.0605331]]}},{"type":"Feature","id":"way/968315531","properties":{"name":"Avenida Beira Rio","id":"way/968315531","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9012074,-8.0656507],[-34.9012802,-8.065292]]}},{"type":"Feature","id":"way/968501095","properties":{"name":"Rua Frei Matias Tévis","id":"way/968501095","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8953864,-8.0662722],[-34.8953336,-8.0663762],[-34.8952973,-8.0664332]]}},{"type":"Feature","id":"way/968503938","properties":{"id":"way/968503938","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9315677,-8.012976],[-34.9315096,-8.013514]]}},{"type":"Feature","id":"way/968520978","properties":{"name":"Avenida Inácio Monteiro","id":"way/968520978","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9304581,-8.0465727],[-34.9305139,-8.0466758],[-34.9305904,-8.0468151]]}},{"type":"Feature","id":"way/968523622","properties":{"name":"Avenida Nossa Senhora da Saúde","id":"way/968523622","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9291792,-8.0442857],[-34.9292127,-8.044347],[-34.929276,-8.0444574]]}},{"type":"Feature","id":"way/968554681","properties":{"name":"Avenida Professor Artur de Sá","id":"way/968554681","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9503675,-8.0463985],[-34.9505535,-8.0463981]]}},{"type":"Feature","id":"way/968554682","properties":{"name":"Avenida Professor Artur de Sá","id":"way/968554682","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9494621,-8.0464105],[-34.9503675,-8.0463985]]}},{"type":"Feature","id":"way/968554683","properties":{"name":"Avenida Professor Artur de Sá","id":"way/968554683","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9505535,-8.0463981],[-34.950936,-8.0463973]]}},{"type":"Feature","id":"way/968554685","properties":{"name":"Avenida Professor Artur de Sá","id":"way/968554685","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9527851,-8.0463933],[-34.953557,-8.0463863],[-34.9537926,-8.0463691]]}},{"type":"Feature","id":"way/968554686","properties":{"name":"Avenida Professor Artur de Sá","id":"way/968554686","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9520035,-8.046395],[-34.9527851,-8.0463933]]}},{"type":"Feature","id":"way/968554687","properties":{"name":"Avenida Professor Artur de Sá","id":"way/968554687","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.950936,-8.0463973],[-34.9520035,-8.046395]]}},{"type":"Feature","id":"way/968556419","properties":{"name":"Avenida Professor Artur de Sá","id":"way/968556419","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9489873,-8.0464095],[-34.9494621,-8.0464105]]}},{"type":"Feature","id":"way/968562321","properties":{"name":"Avenida Afonso Olindense","id":"way/968562321","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9595273,-8.0480481],[-34.9595462,-8.048151]]}},{"type":"Feature","id":"way/968562323","properties":{"name":"Avenida Afonso Olindense","id":"way/968562323","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9588027,-8.0435891],[-34.9593571,-8.0456773],[-34.9594241,-8.0459588],[-34.9594554,-8.0462446]]}},{"type":"Feature","id":"way/968562324","properties":{"name":"Avenida Afonso Olindense","id":"way/968562324","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9585928,-8.0427436],[-34.9588027,-8.0435891]]}},{"type":"Feature","id":"way/968562325","properties":{"name":"Avenida Afonso Olindense","id":"way/968562325","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9594554,-8.0462446],[-34.9594706,-8.0464199],[-34.9594648,-8.0466418],[-34.9594456,-8.0468932],[-34.9594314,-8.0470788],[-34.9594259,-8.0472462],[-34.9594739,-8.0476281],[-34.9595273,-8.0480481]]}},{"type":"Feature","id":"way/968562327","properties":{"name":"Avenida Afonso Olindense","id":"way/968562327","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9573192,-8.0386185],[-34.9574417,-8.0388954]]}},{"type":"Feature","id":"way/968562328","properties":{"name":"Avenida Afonso Olindense","id":"way/968562328","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9572304,-8.0384384],[-34.9573192,-8.0386185]]}},{"type":"Feature","id":"way/968562329","properties":{"name":"Avenida Afonso Olindense","id":"way/968562329","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9563449,-8.036792],[-34.9564702,-8.0370337],[-34.9566657,-8.0373884],[-34.9568949,-8.0378041],[-34.9572304,-8.0384384]]}},{"type":"Feature","id":"way/968571143","properties":{"name":"Rua Gomes Taborda","id":"way/968571143","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9225276,-8.0558377],[-34.9228522,-8.0557525]]}},{"type":"Feature","id":"way/968571144","properties":{"name":"Rua Gomes Taborda","id":"way/968571144","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9223723,-8.0558816],[-34.9225276,-8.0558377]]}},{"type":"Feature","id":"way/968571145","properties":{"name":"Rua Gomes Taborda","id":"way/968571145","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9213897,-8.0561337],[-34.9219378,-8.0559888],[-34.9223723,-8.0558816]]}},{"type":"Feature","id":"way/968571147","properties":{"name":"Rua Gomes Taborda","id":"way/968571147","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9191763,-8.0567462],[-34.9192996,-8.0567133]]}},{"type":"Feature","id":"way/968571148","properties":{"name":"Rua Gomes Taborda","id":"way/968571148","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9186169,-8.0569054],[-34.9191763,-8.0567462]]}},{"type":"Feature","id":"way/968571149","properties":{"name":"Rua Gomes Taborda","id":"way/968571149","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9169518,-8.0573893],[-34.9178249,-8.0571344],[-34.9186169,-8.0569054]]}},{"type":"Feature","id":"way/968625619","properties":{"name":"Avenida Marechal Juarez Távora","id":"way/968625619","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9104854,-8.1396438],[-34.9104121,-8.1396208],[-34.9103203,-8.1396115],[-34.9101627,-8.1396169],[-34.9096625,-8.1396713],[-34.9095841,-8.1396603],[-34.9095297,-8.1396527],[-34.9094103,-8.1396261],[-34.9092015,-8.1395256]]}},{"type":"Feature","id":"way/968629855","properties":{"name":"Avenida Marechal Juarez Távora","id":"way/968629855","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9144159,-8.1431499],[-34.9145888,-8.143304]]}},{"type":"Feature","id":"way/968629856","properties":{"name":"Avenida Marechal Juarez Távora","id":"way/968629856","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9120461,-8.1417641],[-34.9121406,-8.1418166],[-34.9122007,-8.1418499],[-34.9132846,-8.1424517],[-34.9138463,-8.1427884],[-34.9144159,-8.1431499]]}},{"type":"Feature","id":"way/968629857","properties":{"name":"Avenida Marechal Juarez Távora","id":"way/968629857","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9145888,-8.143304],[-34.9146897,-8.1433818],[-34.9147299,-8.1434059],[-34.9147732,-8.1434242],[-34.9148217,-8.1434368],[-34.9148716,-8.1434419],[-34.9149217,-8.1434396]]}},{"type":"Feature","id":"way/968898254","properties":{"name":"1A Travessa José da Silva Lucena","id":"way/968898254","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9041278,-8.1155209],[-34.9045649,-8.1149622]]}},{"type":"Feature","id":"way/969857667","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/969857667","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8868391,-8.0428481],[-34.8867785,-8.0428169],[-34.8860603,-8.042477]]}},{"type":"Feature","id":"way/974194239","properties":{"id":"way/974194239","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9227301,-8.0314283],[-34.9226567,-8.03155],[-34.9225269,-8.0317652],[-34.9227744,-8.031896]]}},{"type":"Feature","id":"way/974282048","properties":{"name":"Rua Florínea","id":"way/974282048","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9225838,-8.020744],[-34.9226978,-8.0211151]]}},{"type":"Feature","id":"way/974655063","properties":{"name":"Rua do Futuro","id":"way/974655063","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9037978,-8.0362344],[-34.9035685,-8.0365399]]}},{"type":"Feature","id":"way/974688525","properties":{"name":"Rua Marquês de Baipendi","id":"way/974688525","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8896921,-8.0296481],[-34.8895083,-8.029615],[-34.88915,-8.0295544]]}},{"type":"Feature","id":"way/974688527","properties":{"name":"Rua Fonseca Oliveira","id":"way/974688527","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8878238,-8.0314743],[-34.8884395,-8.0311151],[-34.8886265,-8.0310069]]}},{"type":"Feature","id":"way/974688528","properties":{"name":"Rua Carlos Fernandes","id":"way/974688528","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8864684,-8.0326915],[-34.8858229,-8.032291],[-34.8852405,-8.0319217]]}},{"type":"Feature","id":"way/991346778","properties":{"name":"Praça Treze de Junho","id":"way/991346778","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8950927,-8.028628],[-34.8951539,-8.0283541],[-34.8951757,-8.0282599]]}},{"type":"Feature","id":"way/992933130","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/992933130","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8820222,-8.0918559],[-34.8826358,-8.094303]]}},{"type":"Feature","id":"way/995660015","properties":{"name":"Rua Treze de Maio","id":"way/995660015","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8799976,-8.0471505],[-34.8802457,-8.047491]]}},{"type":"Feature","id":"way/995660016","properties":{"name":"Rua Treze de Maio","id":"way/995660016","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8799333,-8.0469923],[-34.8799741,-8.0470611],[-34.8799976,-8.0471505]]}},{"type":"Feature","id":"way/995660017","properties":{"name":"Rua Treze de Maio","id":"way/995660017","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8796697,-8.04668],[-34.8797322,-8.0467197],[-34.8797661,-8.0467573],[-34.8798123,-8.0468144],[-34.8798473,-8.0468647],[-34.8798639,-8.0468892],[-34.8798971,-8.0469365],[-34.8799333,-8.0469923]]}},{"type":"Feature","id":"way/998755059","properties":{"name":"Rua Leão Falcão","id":"way/998755059","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8764403,-8.0453009],[-34.877022,-8.0449064]]}},{"type":"Feature","id":"way/999748445","properties":{"name":"Rua Cosmorama","id":"way/999748445","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9107984,-8.1402156],[-34.9106817,-8.1399182],[-34.9106348,-8.1398107],[-34.9105731,-8.1397204],[-34.9104854,-8.1396438]]}},{"type":"Feature","id":"way/1002053167","properties":{"name":"Rua Vinte e Um de Abril","id":"way/1002053167","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9183656,-8.0751017],[-34.9179953,-8.0751493],[-34.9177798,-8.0751941],[-34.9176271,-8.0752259],[-34.9173771,-8.0752854]]}},{"type":"Feature","id":"way/1002053172","properties":{"name":"Praça do Baobá da Encruzilhada","id":"way/1002053172","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8922965,-8.036214],[-34.8922951,-8.0361989],[-34.8922987,-8.0361685],[-34.8923115,-8.0361406],[-34.8923322,-8.0361179],[-34.8923581,-8.0361028],[-34.8923847,-8.0360961],[-34.8924142,-8.0360972],[-34.8924421,-8.0361068],[-34.892466,-8.0361239]]}},{"type":"Feature","id":"way/1008204570","properties":{"name":"Rua Itacoatiara","id":"way/1008204570","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9170353,-8.0203235],[-34.9169461,-8.0202856],[-34.9169232,-8.0202751],[-34.9169105,-8.0202698],[-34.9168949,-8.0202639],[-34.916881,-8.0202617],[-34.9168712,-8.0202584],[-34.9168614,-8.0202576]]}},{"type":"Feature","id":"way/1009012071","properties":{"name":"Rua Bruno Veloso","id":"way/1009012071","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9074006,-8.1204823],[-34.9074618,-8.1204762],[-34.907921,-8.1204389],[-34.9084622,-8.1204018]]}},{"type":"Feature","id":"way/1009012073","properties":{"name":"Rua Bruno Veloso","id":"way/1009012073","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9084622,-8.1204018],[-34.9085525,-8.1203952],[-34.9086043,-8.1203876],[-34.9086484,-8.1203756],[-34.9086837,-8.1203614],[-34.9087013,-8.1203472],[-34.9087124,-8.1203361],[-34.9087179,-8.1203232],[-34.9087179,-8.1203057],[-34.9086782,-8.120249]]}},{"type":"Feature","id":"way/1009012080","properties":{"name":"Rua Bruno Veloso","id":"way/1009012080","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9074397,-8.1206231],[-34.907449,-8.120561],[-34.9074562,-8.1205132],[-34.9074618,-8.1204762]]}},{"type":"Feature","id":"way/1009105713","properties":{"id":"way/1009105713","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9033605,-8.1183003],[-34.9033694,-8.1184396],[-34.9033666,-8.118447],[-34.903358,-8.1184547],[-34.9030274,-8.1186806],[-34.9030101,-8.1186559],[-34.9032084,-8.1185203],[-34.9031251,-8.1184009],[-34.9031109,-8.1184106]]}},{"type":"Feature","id":"way/1009393795","properties":{"name":"Avenida Central","id":"way/1009393795","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8957946,-8.0730239],[-34.8957206,-8.0730101],[-34.8955273,-8.0729543]]}},{"type":"Feature","id":"way/1010825399","properties":{"name":"Rua do Futuro","id":"way/1010825399","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9035685,-8.0365399],[-34.9033928,-8.0367656],[-34.9031874,-8.037058],[-34.9030253,-8.0372463],[-34.9028108,-8.0374867]]}},{"type":"Feature","id":"way/1010830123","properties":{"name":"Ciclovia Graça Araújo","id":"way/1010830123","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8780995,-8.0562447],[-34.8781347,-8.0563092],[-34.8781166,-8.0563218],[-34.8780224,-8.0563834],[-34.8779539,-8.0564296]]}},{"type":"Feature","id":"way/1010830124","properties":{"name":"Rua da Aurora","id":"way/1010830124","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.879867,-8.0595287],[-34.8798761,-8.0595022],[-34.8798723,-8.0594768],[-34.8798615,-8.059459],[-34.8797918,-8.0593439],[-34.8793562,-8.0586102]]}},{"type":"Feature","id":"way/1010830125","properties":{"name":"Praça da República","id":"way/1010830125","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8786706,-8.0602974],[-34.8787695,-8.0602847]]}},{"type":"Feature","id":"way/1013775892","properties":{"name":"Rua do Riachuelo","id":"way/1013775892","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.883309,-8.0592019],[-34.8833446,-8.0592617]]}},{"type":"Feature","id":"way/1014648478","properties":{"name":"Rua Conselheiro Teodoro","id":"way/1014648478","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9152777,-8.0492852],[-34.9151804,-8.0489532]]}},{"type":"Feature","id":"way/1016257109","properties":{"name":"Rua Bruno Veloso","id":"way/1016257109","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.905909,-8.1207589],[-34.9053184,-8.1208424],[-34.9052444,-8.1208529],[-34.9051935,-8.1208343],[-34.9051825,-8.1208303],[-34.905139,-8.1208303],[-34.9050909,-8.1208317],[-34.9050186,-8.1208413],[-34.9049629,-8.1208493],[-34.9041813,-8.1209376],[-34.9041463,-8.1209443],[-34.9040762,-8.1209632],[-34.9040558,-8.120977],[-34.9040354,-8.1209973],[-34.9040268,-8.121017]]}},{"type":"Feature","id":"way/1016647975","properties":{"name":"Rua Nunes Machado","id":"way/1016647975","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8899718,-8.0562396],[-34.8899501,-8.0561639],[-34.8899435,-8.0561526],[-34.8899217,-8.0561291],[-34.8898942,-8.0561028],[-34.889878,-8.0560812],[-34.8898572,-8.0560455],[-34.8896048,-8.0555213],[-34.8895984,-8.0555156],[-34.8895896,-8.05551],[-34.8895352,-8.0554958]]}},{"type":"Feature","id":"way/1016647976","properties":{"name":"Rua Nunes Machado","id":"way/1016647976","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8895352,-8.0554958],[-34.8895291,-8.0554678],[-34.8895217,-8.0554087],[-34.8895242,-8.0550427]]}},{"type":"Feature","id":"way/1016647977","properties":{"name":"Rua Nunes Machado","id":"way/1016647977","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8895242,-8.0550427],[-34.8895376,-8.0549815],[-34.8895515,-8.0549282],[-34.8895677,-8.0548815],[-34.8896169,-8.0547753]]}},{"type":"Feature","id":"way/1020109932","properties":{"name":"Avenida Historiador Jordão Emerenciano","id":"way/1020109932","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9432218,-8.0358866],[-34.9432188,-8.0359391],[-34.9432099,-8.035963],[-34.9432036,-8.0359806],[-34.9431897,-8.0359977],[-34.9431698,-8.0360095],[-34.9431493,-8.036016],[-34.9431162,-8.0360167],[-34.9430783,-8.0360131],[-34.9430348,-8.0360028],[-34.9429681,-8.0359748]]}},{"type":"Feature","id":"way/1020545062","properties":{"name":"Rua Fernandes Vieira","id":"way/1020545062","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8922332,-8.0527242],[-34.8922257,-8.0527201],[-34.8922161,-8.0527149],[-34.8921982,-8.0526916],[-34.8921803,-8.0526716],[-34.8921582,-8.0526525],[-34.8921467,-8.0526456],[-34.8921217,-8.0526305]]}},{"type":"Feature","id":"way/1026537040","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/1026537040","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9329299,-7.9890987],[-34.9330232,-7.9891471],[-34.9330949,-7.9891996],[-34.9331727,-7.9892833],[-34.9332694,-7.9894193],[-34.9333031,-7.989472],[-34.9334369,-7.9896644],[-34.9334691,-7.9897116],[-34.9335066,-7.989768],[-34.9335402,-7.9898158],[-34.9340804,-7.9906279]]}},{"type":"Feature","id":"way/1052528723","properties":{"name":"Ponte Princesa Isabel","id":"way/1052528723","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8786706,-8.0602974],[-34.8793717,-8.0598514],[-34.8798404,-8.0595533],[-34.879867,-8.0595287]]}},{"type":"Feature","id":"way/1064097385","properties":{"name":"Avenida da Saudade","id":"way/1064097385","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8835691,-8.0505012],[-34.8827698,-8.0510773]]}},{"type":"Feature","id":"way/1082321800","properties":{"name":"Rua Emiliano Braga","id":"way/1082321800","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9416432,-8.0404634],[-34.9421293,-8.0402076]]}},{"type":"Feature","id":"way/1088556105","properties":{"id":"way/1088556105","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9225269,-8.0317652],[-34.9223176,-8.0316592]]}},{"type":"Feature","id":"way/1099738743","properties":{"name":"Avenida Militar","id":"way/1099738743","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8710412,-8.0541265],[-34.8710393,-8.0540802],[-34.8710472,-8.0540216]]}},{"type":"Feature","id":"way/1099927565","properties":{"id":"way/1099927565","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9278095,-8.0594555],[-34.927464,-8.0594339]]}},{"type":"Feature","id":"way/1099927566","properties":{"id":"way/1099927566","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9278852,-8.0596765],[-34.9278502,-8.0595859],[-34.9278095,-8.0594555]]}},{"type":"Feature","id":"way/1101930428","properties":{"name":"Metrô/Aeroporto","id":"way/1101930428","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9147005,-8.1338527],[-34.9147058,-8.1338196],[-34.9146357,-8.1335425],[-34.9144563,-8.1328329],[-34.9144965,-8.1328055],[-34.9144904,-8.1327884]]}},{"type":"Feature","id":"way/1101930435","properties":{"name":"Metrô/Aeroporto","id":"way/1101930435","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9152882,-8.1325544],[-34.9152935,-8.1325711]]}},{"type":"Feature","id":"way/1101930439","properties":{"name":"Metrô/Aeroporto","id":"way/1101930439","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9160808,-8.1323093],[-34.9160796,-8.1323252]]}},{"type":"Feature","id":"way/1101930440","properties":{"name":"Metrô/Aeroporto","id":"way/1101930440","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9146755,-8.1338203],[-34.914686,-8.1338173],[-34.9147005,-8.1338527],[-34.9146951,-8.1338697]]}},{"type":"Feature","id":"way/1101930441","properties":{"name":"Metrô/Aeroporto","id":"way/1101930441","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9173355,-8.132358],[-34.9173733,-8.132389],[-34.9173312,-8.1323901]]}},{"type":"Feature","id":"way/1101930442","properties":{"name":"Metrô/Aeroporto","id":"way/1101930442","type":"Proibido"},"geometry":{"type":"LineString","coordinates":[[-34.9173733,-8.132389],[-34.9174281,-8.1324307]]}},{"type":"Feature","id":"way/1102860839","properties":{"name":"Rua Senhor do Bonfim","id":"way/1102860839","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9370577,-7.9934356],[-34.9369649,-7.9934892],[-34.9362065,-7.993927],[-34.9361778,-7.9939363],[-34.9361338,-7.9939428],[-34.9355048,-7.9938804]]}},{"type":"Feature","id":"way/1102860840","properties":{"name":"Beco da Avenida Otacilio de Azevedo","id":"way/1102860840","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9346106,-7.9929899],[-34.9348088,-7.9932362],[-34.9352874,-7.99367],[-34.9355048,-7.9938804]]}},{"type":"Feature","id":"way/1104325389","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104325389","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9016487,-8.1364182],[-34.9017173,-8.1366968],[-34.9017644,-8.1367307],[-34.9017947,-8.1368164],[-34.901781,-8.1368659],[-34.9018186,-8.1369587],[-34.9018431,-8.1369891],[-34.9018941,-8.1371245],[-34.9019735,-8.1373538],[-34.9019626,-8.1374051],[-34.9020784,-8.1377483],[-34.9021169,-8.1377967],[-34.902137,-8.1378551],[-34.9021303,-8.1379232],[-34.9022467,-8.1382801],[-34.9022788,-8.1383027],[-34.9023106,-8.1384014],[-34.9023019,-8.1384319],[-34.9024203,-8.1387929],[-34.9024489,-8.1388085],[-34.9025531,-8.139135],[-34.9026136,-8.1393103],[-34.9025959,-8.1394516],[-34.9027504,-8.1399149],[-34.9027824,-8.1399548],[-34.9029196,-8.1403539],[-34.9029596,-8.1403744],[-34.9029823,-8.1404478],[-34.9029598,-8.1404974],[-34.9030923,-8.1408734],[-34.9031343,-8.1409074],[-34.9031548,-8.1409717],[-34.9031408,-8.141005],[-34.9032729,-8.141389],[-34.9033113,-8.1414185],[-34.9033315,-8.1414583],[-34.9033172,-8.1415325],[-34.9034714,-8.1418886],[-34.9035209,-8.1419173],[-34.9035908,-8.1420772],[-34.9035833,-8.142124],[-34.9037166,-8.1424234],[-34.9038936,-8.1428081],[-34.9039551,-8.1428521],[-34.9040023,-8.1429556],[-34.9039953,-8.143003],[-34.904165,-8.1433449],[-34.9042217,-8.1433845],[-34.9042461,-8.1434328],[-34.904248,-8.1434977],[-34.9044086,-8.1438275],[-34.9044828,-8.1438654],[-34.9045582,-8.1440218],[-34.9047443,-8.1443967],[-34.9047422,-8.1444766],[-34.9048685,-8.1447447],[-34.9049194,-8.1447965],[-34.9051016,-8.1451635]]}},{"type":"Feature","id":"way/1104325401","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104325401","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9013098,-8.1353492],[-34.9014204,-8.1356775],[-34.9014174,-8.1357887],[-34.9015475,-8.1361611],[-34.9016079,-8.1362296],[-34.9016473,-8.1363634],[-34.9016487,-8.1364182]]}},{"type":"Feature","id":"way/1104338043","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104338043","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8999166,-8.132138],[-34.9000961,-8.1325519],[-34.9003399,-8.1331128],[-34.9003391,-8.1331541],[-34.9003758,-8.1332437],[-34.9004113,-8.1332601],[-34.9004838,-8.1334265],[-34.9006891,-8.1338365],[-34.9006829,-8.1338955],[-34.9007394,-8.1340231],[-34.9007786,-8.1340488],[-34.9010874,-8.1347515],[-34.9010846,-8.1348241],[-34.9012215,-8.1351708],[-34.9012499,-8.1351924],[-34.9013098,-8.1353492]]}},{"type":"Feature","id":"way/1104338060","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104338060","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8985441,-8.1291368],[-34.8986504,-8.1293738],[-34.8989432,-8.1300261],[-34.8992034,-8.13059],[-34.8995562,-8.1313606],[-34.8999166,-8.132138]]}},{"type":"Feature","id":"way/1104340515","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104340515","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8941215,-8.1186916],[-34.8942845,-8.11897],[-34.8942811,-8.1190373],[-34.8944805,-8.1193651],[-34.8945279,-8.1193773],[-34.8945445,-8.1194053],[-34.8945354,-8.1194671],[-34.8947797,-8.1198415],[-34.89482,-8.1198567],[-34.8948554,-8.1199134],[-34.8948512,-8.1199574],[-34.8949385,-8.1201119],[-34.8949769,-8.1201225],[-34.8951067,-8.1203604],[-34.8951403,-8.120426],[-34.8951331,-8.1204576],[-34.8952574,-8.1207002],[-34.8953071,-8.1207334],[-34.8953721,-8.1208615],[-34.8953661,-8.1209147],[-34.8955498,-8.1212547],[-34.8955861,-8.1212824],[-34.8956073,-8.1213192],[-34.8956009,-8.1213655],[-34.8957961,-8.1217639],[-34.8958344,-8.1217769],[-34.8960112,-8.1221346]]}},{"type":"Feature","id":"way/1104353872","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104353872","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8931467,-8.1170442],[-34.8931879,-8.1171114],[-34.8931694,-8.1171627],[-34.8933164,-8.1174093],[-34.8933563,-8.1174128],[-34.8934456,-8.1175591],[-34.8934351,-8.1176076],[-34.8936187,-8.1179098],[-34.8936753,-8.1179399],[-34.8937413,-8.1180604],[-34.8937344,-8.1181079],[-34.8939139,-8.1184118],[-34.8939732,-8.1184401],[-34.8941215,-8.1186916]]}},{"type":"Feature","id":"way/1104390571","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104390571","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8971483,-8.1253735],[-34.8974002,-8.1260164],[-34.8975896,-8.1265173],[-34.8977337,-8.1269853],[-34.8980049,-8.1278924],[-34.8980741,-8.1280946],[-34.8985441,-8.1291368]]}},{"type":"Feature","id":"way/1104409708","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104409708","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8921562,-8.1154427],[-34.8923068,-8.1156714],[-34.8923032,-8.1157215],[-34.8925417,-8.1161065],[-34.8925798,-8.1161147],[-34.892614,-8.116173],[-34.8926118,-8.116219],[-34.8928058,-8.1165602],[-34.8928511,-8.1165697],[-34.8928913,-8.1166382],[-34.8928954,-8.1167071],[-34.8930478,-8.1169512],[-34.8930879,-8.1169551],[-34.8931467,-8.1170442]]}},{"type":"Feature","id":"way/1104411712","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104411712","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8911798,-8.11397],[-34.8912454,-8.114059],[-34.8912445,-8.1141221],[-34.8913411,-8.1142666],[-34.8913988,-8.1142736],[-34.8914485,-8.1143532],[-34.8914496,-8.1144227],[-34.8916619,-8.1147436],[-34.8917275,-8.1147679],[-34.8917544,-8.1148142],[-34.8917514,-8.1148727],[-34.8919541,-8.115176],[-34.8920089,-8.1151907],[-34.8921562,-8.1154427]]}},{"type":"Feature","id":"way/1104411717","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104411717","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8899503,-8.1119246],[-34.8900386,-8.1120811],[-34.8900396,-8.112138],[-34.8901928,-8.1124151],[-34.8902436,-8.1124472],[-34.8902845,-8.1125225],[-34.8902814,-8.1125636],[-34.8904726,-8.1129077],[-34.8905167,-8.1129277],[-34.8905542,-8.1129947],[-34.8905579,-8.1130389],[-34.8907532,-8.1133582],[-34.8908017,-8.1133847],[-34.8908386,-8.1134516],[-34.8908296,-8.113488],[-34.8910237,-8.1137914],[-34.8910815,-8.1138143],[-34.8911798,-8.11397]]}},{"type":"Feature","id":"way/1104412346","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104412346","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8892384,-8.1103799],[-34.88933,-8.1105748],[-34.8893208,-8.1106215],[-34.8894541,-8.1109284],[-34.8895095,-8.110958],[-34.889658,-8.1112822],[-34.8896465,-8.1113522],[-34.8896927,-8.1114442],[-34.889737,-8.1114675],[-34.8897751,-8.1115404],[-34.8897621,-8.1116078],[-34.8898275,-8.1117536],[-34.8898748,-8.1117745],[-34.8899503,-8.1119246]]}},{"type":"Feature","id":"way/1104412348","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104412348","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8885489,-8.1088693],[-34.8886279,-8.1090569],[-34.8886283,-8.1091405],[-34.8887887,-8.1094847],[-34.8888308,-8.109496],[-34.8888735,-8.1095752],[-34.8888606,-8.1096295],[-34.8890417,-8.1100061],[-34.8890766,-8.1100146],[-34.8891061,-8.1100686],[-34.8890956,-8.1101293],[-34.889177,-8.1103156],[-34.8892165,-8.1103296],[-34.8892384,-8.1103799]]}},{"type":"Feature","id":"way/1104412356","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104412356","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8876655,-8.1069052],[-34.8877581,-8.1071119],[-34.8877539,-8.1071652],[-34.8878998,-8.1074988],[-34.8879507,-8.1075301],[-34.8880622,-8.1077736],[-34.8880443,-8.1078349],[-34.8881225,-8.1080092],[-34.8881725,-8.1080321],[-34.8882135,-8.1081178],[-34.8882062,-8.1081742],[-34.8883596,-8.1085227],[-34.8884059,-8.108555],[-34.8885489,-8.1088693]]}},{"type":"Feature","id":"way/1104412359","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104412359","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8866594,-8.1046552],[-34.8866727,-8.1046891],[-34.8866659,-8.10475],[-34.886795,-8.1050425],[-34.8868474,-8.1050643],[-34.8868792,-8.1051291],[-34.8868664,-8.1051877],[-34.8870048,-8.1055202],[-34.8870607,-8.105548],[-34.8870941,-8.1056301],[-34.8870723,-8.1056709],[-34.8872369,-8.1060354],[-34.8872928,-8.1060704],[-34.8873175,-8.1061303],[-34.8873039,-8.1061779],[-34.8874728,-8.1065399],[-34.8875138,-8.1065586],[-34.8875455,-8.106621],[-34.8875293,-8.1066689],[-34.8875763,-8.1067703],[-34.8876153,-8.1067971],[-34.8876655,-8.1069052]]}},{"type":"Feature","id":"way/1104412801","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104412801","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8855623,-8.1023438],[-34.885659,-8.102556],[-34.8856983,-8.1025762],[-34.8857825,-8.102753],[-34.8857858,-8.1028322],[-34.8861184,-8.1035583],[-34.8861661,-8.1035843],[-34.8862176,-8.1037006],[-34.8862154,-8.1037599],[-34.8863314,-8.1040231],[-34.8863916,-8.1040775],[-34.8864222,-8.1041434],[-34.8864116,-8.1041983],[-34.8865589,-8.1045201],[-34.8866159,-8.1045598],[-34.8866594,-8.1046552]]}},{"type":"Feature","id":"way/1104412804","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104412804","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8850859,-8.1012827],[-34.8851775,-8.1014716],[-34.885164,-8.101513],[-34.885196,-8.1015825],[-34.8852431,-8.1016035],[-34.8852841,-8.1016846],[-34.8852766,-8.1017425],[-34.8854286,-8.1020698],[-34.8854765,-8.1020938],[-34.8855158,-8.1021769],[-34.8855095,-8.1022318],[-34.8855623,-8.1023438]]}},{"type":"Feature","id":"way/1104422380","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104422380","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8843968,-8.0998095],[-34.8845888,-8.1002046],[-34.8845812,-8.1002744],[-34.8848937,-8.1009514],[-34.8849557,-8.1009845],[-34.8850859,-8.1012827]]}},{"type":"Feature","id":"way/1104422383","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104422383","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8836863,-8.0983435],[-34.8840307,-8.0991258],[-34.8840814,-8.0991631],[-34.8842131,-8.0994317],[-34.8842001,-8.0994745],[-34.8842678,-8.099615],[-34.8843084,-8.0996281],[-34.8843968,-8.0998095]]}},{"type":"Feature","id":"way/1104422881","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104422881","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.883057,-8.0959873],[-34.8832778,-8.0969046],[-34.8835334,-8.0979613],[-34.8836265,-8.0982118],[-34.8836863,-8.0983435]]}},{"type":"Feature","id":"way/1104422886","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104422886","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8826358,-8.094303],[-34.883057,-8.0959873]]}},{"type":"Feature","id":"way/1104422889","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104422889","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8817115,-8.090619],[-34.8820222,-8.0918559]]}},{"type":"Feature","id":"way/1104424202","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104424202","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8816184,-8.0902282],[-34.8815777,-8.0900431],[-34.88162,-8.0899736]]}},{"type":"Feature","id":"way/1104430122","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104430122","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8960112,-8.1221346],[-34.8961612,-8.1224268],[-34.8961461,-8.1224825],[-34.8962319,-8.1226567],[-34.8962803,-8.1226758],[-34.8963467,-8.1228215],[-34.8963302,-8.1228662],[-34.8964502,-8.1232261],[-34.8964802,-8.1232532],[-34.8965073,-8.1233344],[-34.8965007,-8.1233837],[-34.8965756,-8.1236377],[-34.8966026,-8.1236689],[-34.8966742,-8.1238993],[-34.8969521,-8.1248489],[-34.8971483,-8.1253735]]}},{"type":"Feature","id":"way/1104436063","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104436063","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9051016,-8.1451635],[-34.9052378,-8.1454204],[-34.9052456,-8.1455089],[-34.9056248,-8.1462804],[-34.9056791,-8.1463111],[-34.9056947,-8.1463481],[-34.9056817,-8.1464086],[-34.9057927,-8.1466279],[-34.9058241,-8.1466935],[-34.905873,-8.1467198],[-34.9058925,-8.1467717],[-34.9059091,-8.1468056],[-34.9058947,-8.1468467],[-34.9062623,-8.1476819],[-34.9063548,-8.1477691],[-34.906827,-8.148781]]}},{"type":"Feature","id":"way/1104436067","properties":{"name":"Ciclovia Orla de Boa Viagem","id":"way/1104436067","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.906827,-8.148781],[-34.9068473,-8.148833],[-34.9068233,-8.1488898],[-34.9069433,-8.1492158],[-34.9069922,-8.1492547],[-34.9070272,-8.1493319],[-34.9070259,-8.1494209],[-34.907142,-8.1497423],[-34.9071853,-8.1497841],[-34.9072018,-8.1498239],[-34.9071848,-8.1499381],[-34.9072872,-8.1501873],[-34.9073984,-8.1502855],[-34.9077385,-8.1511302]]}},{"type":"Feature","id":"way/1104436070","properties":{"name":"Avenida Boa Viagem","id":"way/1104436070","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.907781,-8.1512375],[-34.9077385,-8.1511302],[-34.9077566,-8.1511232],[-34.9078144,-8.1511016]]}},{"type":"Feature","id":"way/1105544819","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/1105544819","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8927623,-8.0487092],[-34.8927918,-8.0486925],[-34.8928435,-8.0486601],[-34.892968,-8.0485938],[-34.892995,-8.0485773]]}},{"type":"Feature","id":"way/1106674108","properties":{"name":"Rua Terra Nova","id":"way/1106674108","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9486517,-8.1200603],[-34.9485283,-8.1200236],[-34.9482963,-8.1199547]]}},{"type":"Feature","id":"way/1107369082","properties":{"name":"Praça Melvin Jones","id":"way/1107369082","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9074272,-8.0331687],[-34.9071474,-8.033023]]}},{"type":"Feature","id":"way/1107370514","properties":{"name":"Rua Padre Roma","id":"way/1107370514","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9071149,-8.0330113],[-34.9071642,-8.0328907]]}},{"type":"Feature","id":"way/1107376174","properties":{"name":"Rua Padre Roma","id":"way/1107376174","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9074272,-8.0331687],[-34.9074078,-8.0332634],[-34.9073246,-8.0333061],[-34.9072722,-8.0332847],[-34.907209,-8.0332741],[-34.9071505,-8.0332908],[-34.9071197,-8.0333168],[-34.9071043,-8.0333564],[-34.9070889,-8.0334114],[-34.9070596,-8.0334327],[-34.9069965,-8.0334617],[-34.9069025,-8.033509],[-34.9068208,-8.0335547],[-34.9067746,-8.0335883],[-34.9067392,-8.0336188],[-34.9067823,-8.0336691],[-34.90679,-8.0336936],[-34.9067531,-8.0337195],[-34.9067469,-8.0337958]]}},{"type":"Feature","id":"way/1107376435","properties":{"name":"Rua Padre Roma","id":"way/1107376435","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9067469,-8.0337958],[-34.9066699,-8.0337927],[-34.9066005,-8.033808],[-34.9065189,-8.0338308],[-34.9064434,-8.0338583],[-34.9063371,-8.0338964],[-34.9062123,-8.0339346],[-34.9061353,-8.033959],[-34.9060398,-8.0339742],[-34.9059951,-8.0339941],[-34.9059628,-8.0340352],[-34.905952,-8.0340917],[-34.9059458,-8.0341451],[-34.9059307,-8.0342983]]}},{"type":"Feature","id":"way/1107378197","properties":{"name":"Rua Padre Roma","id":"way/1107378197","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9059307,-8.0342983],[-34.9058629,-8.0343002]]}},{"type":"Feature","id":"way/1107393163","properties":{"name":"Ciclovia Riomar","id":"way/1107393163","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8901736,-8.0854146],[-34.8902169,-8.0854636],[-34.89023,-8.085479],[-34.8902487,-8.0855253],[-34.8902392,-8.0855685],[-34.8901916,-8.0856382]]}},{"type":"Feature","id":"way/1107393616","properties":{"name":"Ciclovia Riomar","id":"way/1107393616","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8905193,-8.0851363],[-34.8904742,-8.0851483],[-34.8904218,-8.0851784],[-34.8902298,-8.0853698],[-34.8901979,-8.0853951]]}},{"type":"Feature","id":"way/1107397317","properties":{"name":"Rua Pio IX","id":"way/1107397317","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.911224,-8.0452594],[-34.9110425,-8.04583],[-34.9109124,-8.0462376],[-34.9108507,-8.0464501]]}},{"type":"Feature","id":"way/1107446160","properties":{"name":"Ponte da Torre","id":"way/1107446160","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9041963,-8.0455356],[-34.9039867,-8.0454951],[-34.9037387,-8.0454402],[-34.9034783,-8.0453853],[-34.903151,-8.0453087]]}},{"type":"Feature","id":"way/1107446161","properties":{"name":"Ponte da Torre","id":"way/1107446161","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.903151,-8.0453087],[-34.9031055,-8.0452953],[-34.9030782,-8.045278],[-34.9030586,-8.0452453],[-34.903046,-8.0452067],[-34.9030509,-8.0451616],[-34.9030528,-8.0451446],[-34.9030741,-8.0450862],[-34.9033391,-8.0444964]]}},{"type":"Feature","id":"way/1107451333","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/1107451333","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.892995,-8.0485773],[-34.8930457,-8.0485921]]}},{"type":"Feature","id":"way/1107451334","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/1107451334","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8927623,-8.0487092],[-34.8927432,-8.0487586]]}},{"type":"Feature","id":"way/1107455490","properties":{"name":"Avenida Norte Miguel Arraes de Alencar","id":"way/1107455490","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9302889,-8.0162714],[-34.9304649,-8.0161841],[-34.9305556,-8.0162456]]}},{"type":"Feature","id":"way/1107459718","properties":{"name":"Avenida Norte Miguel Arraes de Alencar","id":"way/1107459718","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8849385,-8.0420307],[-34.8849929,-8.041984]]}},{"type":"Feature","id":"way/1107459719","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/1107459719","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8849385,-8.0420307],[-34.884944,-8.0421068],[-34.8848803,-8.0421708],[-34.8847812,-8.04219],[-34.8847068,-8.0423215],[-34.8847298,-8.0423582]]}},{"type":"Feature","id":"way/1107516076","properties":{"name":"Avenida Doutor Jayme da Fonte","id":"way/1107516076","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8787994,-8.0403012],[-34.8787344,-8.0403535],[-34.8786698,-8.0404056],[-34.8785113,-8.0405442]]}},{"type":"Feature","id":"way/1107522779","properties":{"id":"way/1107522779","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8784411,-8.0644975],[-34.8784806,-8.0648105],[-34.8785354,-8.065029],[-34.8786076,-8.0652552],[-34.8785919,-8.0652897],[-34.877916,-8.0652222]]}},{"type":"Feature","id":"way/1107857914","properties":{"name":"Rua Itanagé","id":"way/1107857914","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.921277,-8.1064701],[-34.9205491,-8.1058287]]}},{"type":"Feature","id":"way/1107857915","properties":{"name":"Rua Potengy","id":"way/1107857915","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9186192,-8.1064227],[-34.9182444,-8.1068412]]}},{"type":"Feature","id":"way/1109759338","properties":{"name":"Rua Rio Beberibe","id":"way/1109759338","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8917491,-8.0038058],[-34.8915126,-8.0038175],[-34.8912179,-8.0038618]]}},{"type":"Feature","id":"way/1128460193","properties":{"name":"Parque das Graças Lúcia Moura","id":"way/1128460193","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9036549,-8.052944],[-34.9036947,-8.0528054],[-34.9037345,-8.0526111],[-34.9037958,-8.0522725],[-34.9038799,-8.0517172],[-34.9039272,-8.0511641],[-34.9039388,-8.0508834],[-34.9039082,-8.0506069],[-34.9038085,-8.0500737],[-34.9036871,-8.0495932],[-34.903659,-8.0494923],[-34.9035162,-8.04909],[-34.9032182,-8.0483207],[-34.9031308,-8.0479706]]}},{"type":"Feature","id":"way/1137082094","properties":{"name":"Ponte Buarque de Macedo","id":"way/1137082094","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8739789,-8.0623468],[-34.8764167,-8.0616331]]}},{"type":"Feature","id":"way/1164743879","properties":{"name":"Rua Alvenópolis","id":"way/1164743879","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9373797,-8.0767173],[-34.9372703,-8.0767477],[-34.9370799,-8.0767776],[-34.9367955,-8.0767636],[-34.9364985,-8.0767369],[-34.9362584,-8.0767182],[-34.9360686,-8.0767182],[-34.9359749,-8.076734],[-34.9359023,-8.076761],[-34.9357934,-8.0768431],[-34.9357441,-8.0769044],[-34.9357216,-8.0769253],[-34.9356502,-8.0769973],[-34.9355268,-8.0771699],[-34.9354249,-8.0773186],[-34.9352988,-8.077478],[-34.9351433,-8.0776957]]}},{"type":"Feature","id":"way/1164743880","properties":{"name":"Rua Alvenópolis","id":"way/1164743880","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9347989,-8.0780937],[-34.934749,-8.0781445],[-34.9345451,-8.0783756],[-34.9344651,-8.0784666],[-34.9343395,-8.0785821]]}},{"type":"Feature","id":"way/1164743881","properties":{"name":"Rua Alvenópolis","id":"way/1164743881","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9351433,-8.0776957],[-34.9350494,-8.0778179],[-34.9349367,-8.0779533],[-34.9348874,-8.0780036]]}},{"type":"Feature","id":"way/1164743882","properties":{"name":"Rua Alvenópolis","id":"way/1164743882","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9348874,-8.0780036],[-34.9347989,-8.0780937]]}},{"type":"Feature","id":"way/1174030251","properties":{"name":"Rua do Riachuelo","id":"way/1174030251","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8820297,-8.0601153],[-34.881979,-8.0600204]]}},{"type":"Feature","id":"way/1175625343","properties":{"name":"Rua Paissandú","id":"way/1175625343","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8944918,-8.0597579],[-34.8944769,-8.0597471],[-34.8942343,-8.059533],[-34.8941396,-8.0594296]]}},{"type":"Feature","id":"way/1175632578","properties":{"name":"Rua da Aurora","id":"way/1175632578","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8793416,-8.0584865],[-34.8793036,-8.0584592],[-34.8792529,-8.0584228],[-34.877977,-8.0564651],[-34.8779708,-8.0564556],[-34.8779539,-8.0564296],[-34.8779071,-8.0563574]]}},{"type":"Feature","id":"way/1175632580","properties":{"name":"Rua da Aurora","id":"way/1175632580","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8779071,-8.0563574],[-34.8778869,-8.0562332],[-34.8778703,-8.0561315]]}},{"type":"Feature","id":"way/1176343943","properties":{"name":"Avenida Governador Agamenon Magalhães","id":"way/1176343943","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8853737,-8.0421849],[-34.884944,-8.0421068]]}},{"type":"Feature","id":"way/1177251511","properties":{"name":"Rua Ibiporã","id":"way/1177251511","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.9006642,-8.0725157],[-34.9006379,-8.0724945],[-34.9005891,-8.0724753],[-34.9005546,-8.0724784],[-34.90052,-8.0724904],[-34.9004844,-8.0725116],[-34.9004184,-8.0725538],[-34.9003777,-8.072578],[-34.9003421,-8.0726062],[-34.9002994,-8.0726333],[-34.9002425,-8.0726474],[-34.9000088,-8.0726987],[-34.8999529,-8.0727048],[-34.8997537,-8.0727038],[-34.8996205,-8.0726927],[-34.8993674,-8.0726545],[-34.899094,-8.0726102],[-34.8989152,-8.072582],[-34.8987566,-8.0725911],[-34.8985604,-8.0726052],[-34.8982901,-8.0726031],[-34.8982072,-8.0726005],[-34.8980701,-8.0725883],[-34.8979484,-8.0725357],[-34.8978144,-8.0725075],[-34.8976542,-8.0724953],[-34.8973776,-8.0724785],[-34.8971073,-8.0724571],[-34.8968916,-8.072451],[-34.89686,-8.0724571],[-34.8968207,-8.0724739],[-34.8967976,-8.0724899],[-34.8967822,-8.072512],[-34.8967722,-8.0725357]]}},{"type":"Feature","id":"way/1177251512","properties":{"name":"Rua Ibiporã","id":"way/1177251512","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8967363,-8.0725367],[-34.8965446,-8.0732494]]}},{"type":"Feature","id":"way/1177335896","properties":{"name":"Rua Prefeito Jorge Martins","id":"way/1177335896","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.8913595,-8.0691738],[-34.8913584,-8.0692014],[-34.891355,-8.069222],[-34.8913423,-8.0692475],[-34.8912463,-8.0693021]]}},{"type":"Feature","id":"way/1179879262","properties":{"name":"Avenida Beira Rio","id":"way/1179879262","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9008864,-8.067218],[-34.9008994,-8.0671772],[-34.9009456,-8.0669671],[-34.9009621,-8.066877]]}},{"type":"Feature","id":"way/1183970372","properties":{"name":"Ciclovia Norte","id":"way/1183970372","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8769243,-8.0475048],[-34.8770289,-8.0474313]]}},{"type":"Feature","id":"way/1184004956","properties":{"name":"Avenida Sul","id":"way/1184004956","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9107356,-8.1157511],[-34.9107502,-8.1157944],[-34.9107692,-8.1158579]]}},{"type":"Feature","id":"way/1184004957","properties":{"name":"Avenida Sul","id":"way/1184004957","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9107692,-8.1158579],[-34.9107969,-8.1160237],[-34.9108104,-8.1161848],[-34.9108182,-8.1163683],[-34.9108374,-8.1164912],[-34.9108102,-8.1166331],[-34.9108835,-8.1170076],[-34.9109714,-8.117377],[-34.9112345,-8.1184402]]}},{"type":"Feature","id":"way/1184004990","properties":{"name":"Rua Santos Cosme e Damião","id":"way/1184004990","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9216042,-8.1119892],[-34.921559,-8.1119504],[-34.920172,-8.1107579]]}},{"type":"Feature","id":"way/1184005002","properties":{"name":"Avenida Senador Robert Kennedy","id":"way/1184005002","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9205625,-8.11899],[-34.9208899,-8.1192706],[-34.9209592,-8.1193341]]}},{"type":"Feature","id":"way/1184099726","properties":{"name":"Rua Vinte e Um de Abril","id":"way/1184099726","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9106613,-8.0767743],[-34.9104722,-8.0767981],[-34.9103873,-8.0768114],[-34.9098144,-8.0769012],[-34.909642,-8.0769254],[-34.9091945,-8.076991]]}},{"type":"Feature","id":"way/1189266169","properties":{"name":"Rua do Futuro","id":"way/1189266169","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9042645,-8.0356913],[-34.9039909,-8.0360153]]}},{"type":"Feature","id":"way/1192066621","properties":{"id":"way/1192066621","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8689842,-8.0569452],[-34.8690064,-8.0570059]]}},{"type":"Feature","id":"way/1192066622","properties":{"id":"way/1192066622","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8687313,-8.0562492],[-34.8689842,-8.0569452]]}},{"type":"Feature","id":"way/1200826939","properties":{"name":"Rua Carlos Alberto Valença","id":"way/1200826939","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.937841,-8.0778776],[-34.9377827,-8.0777117],[-34.9375446,-8.0771143],[-34.9374837,-8.0769615],[-34.9373931,-8.0767456],[-34.9373797,-8.0767173]]}},{"type":"Feature","id":"way/1200830889","properties":{"name":"Estrada das Ubaias","id":"way/1200830889","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9190051,-8.0303563],[-34.9190824,-8.030515],[-34.919128,-8.030604],[-34.9191917,-8.0307585],[-34.9192286,-8.0308722],[-34.9192617,-8.0310075],[-34.9193722,-8.0319842],[-34.919426,-8.0321364],[-34.919486,-8.0322413],[-34.919533,-8.0323064],[-34.9196404,-8.0324273],[-34.9197143,-8.0325072]]}},{"type":"Feature","id":"way/1200830890","properties":{"name":"Rua Doutor Samuel Lins","id":"way/1200830890","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9164892,-8.0330443],[-34.9165722,-8.0331075],[-34.916604,-8.0331307],[-34.9166322,-8.0331576],[-34.916825,-8.0333762],[-34.916935,-8.0335014]]}},{"type":"Feature","id":"way/1216298883","properties":{"name":"Rua Paula Batista","id":"way/1216298883","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9148568,-8.023887],[-34.9148244,-8.0238086]]}},{"type":"Feature","id":"way/1216298884","properties":{"name":"Rua Eugênio Samico","id":"way/1216298884","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9154306,-8.0233673],[-34.9152928,-8.0234849],[-34.9149311,-8.0238185],[-34.9148568,-8.023887]]}},{"type":"Feature","id":"way/1231083445","properties":{"name":"Rua Madre de Deus","id":"way/1231083445","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8736574,-8.0636227],[-34.8737151,-8.0632482],[-34.873796,-8.0626349],[-34.8738023,-8.0625801],[-34.8738047,-8.0625383],[-34.873801,-8.0624808],[-34.8737916,-8.0623949]]}},{"type":"Feature","id":"way/1234964959","properties":{"name":"Ciclovia Agamenon Magalhães","id":"way/1234964959","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.892995,-8.0485773],[-34.8930181,-8.0486056],[-34.8930751,-8.0486654],[-34.893711,-8.0494643],[-34.8942093,-8.0501102],[-34.8951228,-8.0512678],[-34.8951408,-8.0512913],[-34.8952724,-8.0514643],[-34.8955801,-8.0518796],[-34.8959091,-8.0523746],[-34.8959362,-8.0524154],[-34.8964936,-8.0532082],[-34.8966728,-8.0534354],[-34.8970649,-8.0539883],[-34.8976309,-8.0547679],[-34.8977094,-8.0548914],[-34.8978421,-8.0551397],[-34.8979052,-8.0553077],[-34.8979749,-8.0555248],[-34.897989,-8.0556204],[-34.8979897,-8.0556894],[-34.8980239,-8.0560001],[-34.8980306,-8.0563089],[-34.8980435,-8.0567874],[-34.89804,-8.0571215],[-34.898047,-8.0575325],[-34.8980522,-8.0588131],[-34.8980348,-8.0591772],[-34.8979674,-8.0597578],[-34.8978606,-8.0608053],[-34.8978158,-8.0611807],[-34.8976234,-8.0629863],[-34.8975487,-8.0636771],[-34.8975219,-8.0638853]]}},{"type":"Feature","id":"way/1234964960","properties":{"name":"Ciclovia Agamenon Magalhães","id":"way/1234964960","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.897278,-8.0638582],[-34.8978111,-8.0589702],[-34.8978237,-8.0586795],[-34.8978138,-8.0567641],[-34.8978,-8.0559801],[-34.8977707,-8.0557513],[-34.8977322,-8.055556],[-34.8976551,-8.0553272],[-34.8975596,-8.055129],[-34.8974318,-8.0549169],[-34.8972531,-8.0546775],[-34.8968017,-8.0540521],[-34.8961624,-8.0531887],[-34.8957879,-8.0526628],[-34.8957365,-8.0525819],[-34.895605,-8.052375],[-34.8952198,-8.0517803],[-34.8951149,-8.0516451],[-34.8949652,-8.0514522],[-34.894927,-8.0514029],[-34.8928966,-8.048825],[-34.8927918,-8.0486925]]}},{"type":"Feature","id":"way/1234964961","properties":{"name":"Ciclovia Agamenon Magalhães","id":"way/1234964961","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.897278,-8.0638582],[-34.8975219,-8.0638853],[-34.8975089,-8.0640016],[-34.8976363,-8.0640117],[-34.8975605,-8.064759],[-34.8975664,-8.0649404],[-34.8974052,-8.0652179],[-34.8973364,-8.0654005],[-34.8973726,-8.0654676],[-34.8973072,-8.0655265],[-34.8972091,-8.0658062],[-34.8971367,-8.0663842],[-34.896987,-8.0675192],[-34.8967852,-8.0690139],[-34.896759,-8.0691893],[-34.8967205,-8.0693876],[-34.8966805,-8.0695493],[-34.8966081,-8.0697979],[-34.8965988,-8.0699138],[-34.8966142,-8.070013],[-34.8966481,-8.0701213],[-34.8967036,-8.070225],[-34.8967883,-8.0702769],[-34.896719,-8.0703775],[-34.8964802,-8.0703333],[-34.8964757,-8.0704678],[-34.8963903,-8.0704749],[-34.8963212,-8.0705071],[-34.8962602,-8.0705564],[-34.896183,-8.0706389],[-34.8958212,-8.0710495],[-34.8953953,-8.0715365],[-34.8945735,-8.0724989],[-34.8943389,-8.072781],[-34.894263,-8.0728943],[-34.8941988,-8.0730064],[-34.8941276,-8.0731648],[-34.8940867,-8.0732636],[-34.8940601,-8.0735632],[-34.8938578,-8.0741812],[-34.8937821,-8.0741567],[-34.8935201,-8.0749545],[-34.8933686,-8.0753714],[-34.8933578,-8.0755786],[-34.8933149,-8.0757193],[-34.8933002,-8.0758229],[-34.8933082,-8.0759477],[-34.8933324,-8.0760659],[-34.8933605,-8.0761349],[-34.8934115,-8.0762305],[-34.8934732,-8.0763102],[-34.8935711,-8.0764403],[-34.8936153,-8.076516],[-34.8936596,-8.0766288],[-34.8936757,-8.0767152],[-34.8936864,-8.0768161],[-34.8936877,-8.076921],[-34.8936609,-8.0770537],[-34.8935617,-8.0773644],[-34.8932385,-8.0783483],[-34.8929976,-8.0790532],[-34.8929717,-8.0791357],[-34.8929778,-8.0791895],[-34.8929982,-8.0793304],[-34.8931265,-8.0794372],[-34.8931531,-8.0794604],[-34.8931677,-8.0794849],[-34.8931738,-8.0795113],[-34.8931653,-8.0795335],[-34.8931498,-8.0795523],[-34.8931292,-8.0795635],[-34.8930464,-8.0795897],[-34.8929485,-8.0796206],[-34.8927975,-8.0797124],[-34.8926467,-8.0796441],[-34.8925635,-8.0797245],[-34.8925388,-8.0797789],[-34.8924607,-8.079855],[-34.8923983,-8.0799307],[-34.8923679,-8.0800064],[-34.8923271,-8.0801399],[-34.8923008,-8.0801809],[-34.8922716,-8.0801942],[-34.8921414,-8.0802202]]}},{"type":"Feature","id":"way/1238509972","properties":{"name":"Avenida Professor José dos Anjos","id":"way/1238509972","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8755468,-8.0202844],[-34.8753026,-8.0201451]]}},{"type":"Feature","id":"way/1241145625","properties":{"name":"Ciclovia Agamenon Magalhães","id":"way/1241145625","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8921414,-8.0802202],[-34.8921759,-8.0804925],[-34.8921782,-8.0807023],[-34.8921554,-8.080823],[-34.8921181,-8.0809485],[-34.8920901,-8.0810392],[-34.892013,-8.0811831],[-34.891964,-8.0812513],[-34.8918694,-8.0813721],[-34.8915349,-8.0817576],[-34.8910971,-8.082272],[-34.890783,-8.0826453],[-34.8902182,-8.0833085],[-34.8892828,-8.0844057],[-34.8888901,-8.0848232],[-34.888632,-8.085102],[-34.8884301,-8.0853031]]}},{"type":"Feature","id":"way/1268293193","properties":{"name":"Rua Cerejeira","id":"way/1268293193","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.8992705,-8.1236779],[-34.8989451,-8.1228539]]}},{"type":"Feature","id":"way/1273806782","properties":{"name":"Rua Bruno Veloso","id":"way/1273806782","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9040268,-8.121017],[-34.9039933,-8.1210136]]}},{"type":"Feature","id":"way/1283298543","properties":{"name":"Ciclovia de Joana Bezerra","id":"way/1283298543","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.891198,-8.0707406],[-34.8915531,-8.0705855],[-34.8916505,-8.0705461],[-34.8917635,-8.0705614],[-34.8923904,-8.070693],[-34.8925613,-8.0706961],[-34.8926967,-8.0706534],[-34.8948996,-8.0695131],[-34.8949358,-8.0695651]]}},{"type":"Feature","id":"way/1283298544","properties":{"name":"Avenida Desembargador Guerra Barreto","id":"way/1283298544","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8949358,-8.0695651],[-34.8950787,-8.0694884],[-34.8951196,-8.0694672],[-34.8951919,-8.06943],[-34.8952482,-8.0694011]]}},{"type":"Feature","id":"way/1284274823","properties":{"name":"Rua Itaimbé","id":"way/1284274823","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9182444,-8.1068412],[-34.9178754,-8.1065144]]}},{"type":"Feature","id":"way/1303718123","properties":{"name":"Rua Bruno Veloso","id":"way/1303718123","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9074397,-8.1206231],[-34.9073354,-8.120636],[-34.9072208,-8.1206502],[-34.9071375,-8.120633],[-34.9070859,-8.1206208],[-34.907041,-8.1206152],[-34.9060971,-8.1207448],[-34.9060044,-8.120759],[-34.905909,-8.1207589]]}},{"type":"Feature","id":"way/1307312646","properties":{"name":"R. Maria de Fátima Soares","id":"way/1307312646","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9304104,-8.0313648],[-34.9304172,-8.0312701],[-34.930304,-8.030827],[-34.9302135,-8.030584],[-34.9301599,-8.0305296]]}},{"type":"Feature","id":"way/1307312648","properties":{"name":"Ponte Engenheiro Jaime Gusmão","id":"way/1307312648","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9290608,-8.0279241],[-34.9288769,-8.0286931],[-34.9288256,-8.0288894],[-34.9288203,-8.028998],[-34.9288486,-8.0291189],[-34.9289034,-8.0292206],[-34.9289689,-8.0292889],[-34.9302306,-8.0303946],[-34.9303545,-8.0305312],[-34.9304395,-8.0306732],[-34.9304695,-8.030766],[-34.9305216,-8.0310899]]}},{"type":"Feature","id":"way/1307312649","properties":{"name":"Ponte Engenheiro Jaime Gusmão","id":"way/1307312649","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9304418,-8.031109],[-34.9303891,-8.0308049],[-34.930359,-8.030712],[-34.9302741,-8.0305701],[-34.9301502,-8.0304334],[-34.9288885,-8.0293277],[-34.928823,-8.0292594],[-34.9287681,-8.0291578],[-34.9287398,-8.0290369],[-34.9287451,-8.0289282],[-34.9287964,-8.028732],[-34.9289864,-8.0279303]]}},{"type":"Feature","id":"way/1308480931","properties":{"name":"Parque das Graças Lúcia Moura","id":"way/1308480931","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9029035,-8.0453364],[-34.9028947,-8.0453735],[-34.9028834,-8.0454101],[-34.9028761,-8.045434],[-34.9027033,-8.0454524]]}},{"type":"Feature","id":"way/1310963800","properties":{"name":"Avenida Jornalista Possidonio Cavalcanti Bastos","id":"way/1310963800","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9300231,-8.0321484],[-34.9300781,-8.0320528],[-34.9301538,-8.0319359],[-34.9302451,-8.0318189],[-34.9303376,-8.0316807],[-34.9304068,-8.0315463],[-34.9304407,-8.0314408],[-34.9304598,-8.0313404],[-34.9304595,-8.0312401],[-34.9304418,-8.031109]]}},{"type":"Feature","id":"way/1310963801","properties":{"name":"Rua Dom Diamantino Costa","id":"way/1310963801","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9302832,-8.0332521],[-34.9300231,-8.0321484]]}},{"type":"Feature","id":"way/1310963802","properties":{"name":"Ponte Engenheiro Jaime Gusmão","id":"way/1310963802","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9290954,-8.0277253],[-34.9290608,-8.0279241]]}},{"type":"Feature","id":"way/1310963803","properties":{"name":"Ponte Engenheiro Jaime Gusmão","id":"way/1310963803","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9289864,-8.0279303],[-34.9289864,-8.0278943],[-34.9289815,-8.0278723],[-34.928975,-8.0278514],[-34.9289622,-8.0278227]]}},{"type":"Feature","id":"way/1310963804","properties":{"name":"Avenida Jornalista Possidonio Cavalcanti Bastos","id":"way/1310963804","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9305216,-8.0310899],[-34.9305843,-8.031106],[-34.9306363,-8.0310831]]}},{"type":"Feature","id":"way/1310963807","properties":{"name":"Ponte Engenheiro Jaime Gusmão","id":"way/1310963807","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9289622,-8.0278227],[-34.9289482,-8.027802],[-34.9289304,-8.0277872],[-34.9289076,-8.027772],[-34.9288893,-8.0277632],[-34.9288686,-8.0277557],[-34.9288325,-8.0277407]]}},{"type":"Feature","id":"way/1322285823","properties":{"name":"Avenida Dezessete de Agosto","id":"way/1322285823","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.9289894,-8.027624],[-34.9290919,-8.0276102],[-34.9291795,-8.0275875]]}},{"type":"Feature","id":"way/1339825498","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/1339825498","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.92374,-7.9991648],[-34.9238313,-7.9990677],[-34.923909,-7.9989842],[-34.9240244,-7.9988765],[-34.924141,-7.9987836],[-34.9242711,-7.9986959],[-34.9245849,-7.9984714],[-34.9246856,-7.9983744],[-34.9248719,-7.9981753],[-34.9249059,-7.9981299],[-34.9249511,-7.9980697],[-34.9250114,-7.9979787]]}},{"type":"Feature","id":"way/1339825499","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/1339825499","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9255896,-7.9962039],[-34.9256008,-7.9961853],[-34.9257732,-7.9959177],[-34.9259126,-7.9957228]]}},{"type":"Feature","id":"way/1339825500","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/1339825500","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9278171,-7.9934533],[-34.9280155,-7.9931951],[-34.9282344,-7.9928923],[-34.9284372,-7.9926084],[-34.9286509,-7.9922995]]}},{"type":"Feature","id":"way/1339825501","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/1339825501","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9297354,-7.9906028],[-34.9297921,-7.9903105],[-34.9298129,-7.9902475],[-34.9298387,-7.9901711],[-34.9299208,-7.9899782]]}},{"type":"Feature","id":"way/1339825503","properties":{"name":"Avenida Vereador Otacílio Azevedo","id":"way/1339825503","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.9318175,-7.9889446],[-34.9318939,-7.9889386],[-34.9319389,-7.9889366],[-34.9321575,-7.98892],[-34.9323499,-7.9889366],[-34.9325221,-7.9889692],[-34.9325531,-7.9889751],[-34.9327362,-7.9890316],[-34.9329299,-7.9890987]]}},{"type":"Feature","id":"way/1341354760","properties":{"name":"Rua Primeiro de Março","id":"way/1341354760","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.8774731,-8.0642833],[-34.8784151,-8.0644608],[-34.8784411,-8.0644975]]}},{"type":"Feature","id":"way/1342237413","properties":{"name":"Rua Treze de Maio","id":"way/1342237413","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8836916,-8.052551],[-34.8837403,-8.0526264],[-34.8837774,-8.0526736]]}},{"type":"Feature","id":"way/1352837590","properties":{"name":"Avenida Marginal","id":"way/1352837590","type":"Ciclovia"},"geometry":{"type":"LineString","coordinates":[[-34.8993617,-8.0027874],[-34.9004619,-8.0038523]]}},{"type":"Feature","id":"way/1360889707","properties":{"name":"Rua da Saudade","id":"way/1360889707","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8791569,-8.0555999],[-34.8794923,-8.0560918],[-34.8798386,-8.0566181]]}},{"type":"Feature","id":"way/1394172239","properties":{"name":"Rua Henriqueta Torreiro","id":"way/1394172239","type":"Baixa velocidade"},"geometry":{"type":"LineString","coordinates":[[-34.894472,-8.0878613],[-34.8943966,-8.0872048]]}},{"type":"Feature","id":"way/1408853433","properties":{"name":"Parque das Graças Lúcia Moura","id":"way/1408853433","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9031308,-8.0479706],[-34.902958,-8.0473919],[-34.9029162,-8.0472203],[-34.9028696,-8.0468362],[-34.9027899,-8.0464336],[-34.9027734,-8.0463631],[-34.9027591,-8.0462762],[-34.9027221,-8.045982],[-34.9027084,-8.0458642],[-34.9027033,-8.0454524]]}},{"type":"Feature","id":"way/1411652417","properties":{"name":"Rua Engenheiro José Estelita","id":"way/1411652417","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8912303,-8.0772615],[-34.8915168,-8.0773694],[-34.8917352,-8.0774608]]}},{"type":"Feature","id":"way/1412255782","properties":{"name":"Praça da República","id":"way/1412255782","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8780131,-8.0612593],[-34.8772876,-8.0614413],[-34.8771943,-8.0614651],[-34.8771227,-8.0614795]]}},{"type":"Feature","id":"way/1412255783","properties":{"name":"Praça da República","id":"way/1412255783","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.8780764,-8.0611255],[-34.8780204,-8.0607471],[-34.8779652,-8.0603477],[-34.877961,-8.0603179]]}},{"type":"Feature","id":"way/1417995493","properties":{"name":"Rua Doutor Leopoldo Lins","id":"way/1417995493","type":"Ciclofaixa"},"geometry":{"type":"LineString","coordinates":[[-34.890002,-8.0497217],[-34.8909695,-8.049522],[-34.8913576,-8.049388]]}},{"type":"Feature","id":"way/1419490879","properties":{"name":"Rua Doutor Tavares Correia","id":"way/1419490879","type":"Ciclorrota"},"geometry":{"type":"LineString","coordinates":[[-34.9163307,-8.1153088],[-34.9161981,-8.1153279]]}},{"type":"Feature","id":"way/1429393047","properties":{"name":"Rua Dos Hebreus","id":"way/1429393047","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9203908,-8.0857938],[-34.9202372,-8.0852883],[-34.9203016,-8.0852644],[-34.920256,-8.0850254]]}},{"type":"Feature","id":"way/1429393048","properties":{"name":"Beco","id":"way/1429393048","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9202372,-8.0852883],[-34.9200622,-8.0853428]]}},{"type":"Feature","id":"way/1430348601","properties":{"name":"Rua Doze De Outubro","id":"way/1430348601","type":"Calçada compartilhada"},"geometry":{"type":"LineString","coordinates":[[-34.9222438,-8.0851482],[-34.9223019,-8.0853213],[-34.9224091,-8.0856123]]}},{"type":"Feature","id":"node/1120614474","properties":{"name":"bicicletário da CHESF","id":"node/1120614474","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9305952,-8.0653027]}},{"type":"Feature","id":"node/1641806473","properties":{"name":"bicicletário do banco santander","id":"node/1641806473","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9119148,-8.0557354]}},{"type":"Feature","id":"node/1678273356","properties":{"id":"node/1678273356","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9244554,-8.0580881]}},{"type":"Feature","id":"node/2166856633","properties":{"name":"Oficina do seu Raimundo","id":"node/2166856633","type":"Oficinas & lojas"},"geometry":{"type":"Point","coordinates":[-34.9328058,-8.0706786]}},{"type":"Feature","id":"node/2556159989","properties":{"id":"node/2556159989","type":"Oficinas & lojas"},"geometry":{"type":"Point","coordinates":[-34.9178623,-8.0519889]}},{"type":"Feature","id":"node/3194743731","properties":{"name":"Bike Norte","id":"node/3194743731","type":"Oficinas & lojas"},"geometry":{"type":"Point","coordinates":[-34.9118817,-8.024197]}},{"type":"Feature","id":"node/3717693353","properties":{"id":"node/3717693353","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913702,-8.0923353]}},{"type":"Feature","id":"node/3718586691","properties":{"id":"node/3718586691","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.916976,-8.0955433]}},{"type":"Feature","id":"node/3718670770","properties":{"id":"node/3718670770","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9147823,-8.1342568]}},{"type":"Feature","id":"node/3720515981","properties":{"id":"node/3720515981","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.870791,-8.0627541]}},{"type":"Feature","id":"node/3720546957","properties":{"id":"node/3720546957","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8742595,-8.0650003]}},{"type":"Feature","id":"node/3720546958","properties":{"id":"node/3720546958","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8744554,-8.0641911]}},{"type":"Feature","id":"node/3772348324","properties":{"id":"node/3772348324","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.930183,-8.0654948]}},{"type":"Feature","id":"node/3772348325","properties":{"name":"Academia Chesf","id":"node/3772348325","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9310761,-8.0657909]}},{"type":"Feature","id":"node/3809963426","properties":{"name":"Cais do Sertão","id":"node/3809963426","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8704502,-8.0612281]}},{"type":"Feature","id":"node/3853310366","properties":{"name":"Bicicletário do Edf. Parnamirim","id":"node/3853310366","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9131265,-8.0322838]}},{"type":"Feature","id":"node/3869788783","properties":{"name":"Bicicletário Alepe","id":"node/3869788783","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8802284,-8.0583607]}},{"type":"Feature","id":"node/3869788784","properties":{"name":"Bicicletário Fundarpe","id":"node/3869788784","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880563,-8.0596271]}},{"type":"Feature","id":"node/3869788785","properties":{"name":"Bicicletário Parque 13 de Maio","id":"node/3869788785","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8819687,-8.0579171]}},{"type":"Feature","id":"node/3869788786","properties":{"name":"Bicicletário Prefeitura","id":"node/3869788786","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8725299,-8.0547014]}},{"type":"Feature","id":"node/3869788787","properties":{"name":"Bicicletário TRT","id":"node/3869788787","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8722868,-8.0559436]}},{"type":"Feature","id":"node/4100497432","properties":{"id":"node/4100497432","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8801243,-8.0578231]}},{"type":"Feature","id":"node/5736473906","properties":{"id":"node/5736473906","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9043463,-8.0384136]}},{"type":"Feature","id":"node/5900621611","properties":{"id":"node/5900621611","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8967281,-8.0859587]}},{"type":"Feature","id":"node/6535987020","properties":{"id":"node/6535987020","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9357349,-8.0426148]}},{"type":"Feature","id":"node/7188733279","properties":{"id":"node/7188733279","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9045391,-8.1422728]}},{"type":"Feature","id":"node/7204299969","properties":{"name":"NIATE UFPE","id":"node/7204299969","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9526868,-8.0550577]}},{"type":"Feature","id":"node/7204299976","properties":{"name":"Posto Polo Pina","id":"node/7204299976","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.88231,-8.092206]}},{"type":"Feature","id":"node/7204299983","properties":{"name":"Parque Dona Lindu","id":"node/7204299983","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9036844,-8.1422653]}},{"type":"Feature","id":"node/7204326585","properties":{"name":"Padre Carapuceiro","id":"node/7204326585","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8954169,-8.1210098]}},{"type":"Feature","id":"node/7204326586","properties":{"name":"R. Verdes Mares","id":"node/7204326586","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9013796,-8.1352308]}},{"type":"Feature","id":"node/7204326587","properties":{"name":"Segundo Jardim","id":"node/7204326587","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8867654,-8.1048814]}},{"type":"Feature","id":"node/7204326588","properties":{"name":"Prof. José Brandão","id":"node/7204326588","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.89104,-8.1137369]}},{"type":"Feature","id":"node/7204326589","properties":{"name":"Praça do Rosarinho","id":"node/7204326589","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8967708,-8.0327102]}},{"type":"Feature","id":"node/7204326590","properties":{"name":"Pina","id":"node/7204326590","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8840186,-8.0990083]}},{"type":"Feature","id":"node/7204326591","properties":{"name":"R. Alfredo de Medeiros","id":"node/7204326591","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8905709,-8.0418614]}},{"type":"Feature","id":"node/7204326592","properties":{"name":"Mercado da Encruzilhada","id":"node/7204326592","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8913845,-8.0369899]}},{"type":"Feature","id":"node/7204326593","properties":{"name":"Hospital Oswaldo Cruz","id":"node/7204326593","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8881181,-8.0478164]}},{"type":"Feature","id":"node/7204326594","properties":{"name":"R. Bernardino Soares da Silva","id":"node/7204326594","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8907734,-8.0444877]}},{"type":"Feature","id":"node/7204326595","properties":{"name":"Rua Doutor Vicente Meira","id":"node/7204326595","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8948128,-8.0440128]}},{"type":"Feature","id":"node/7204326596","properties":{"name":"Venezuela","id":"node/7204326596","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8947475,-8.047012]}},{"type":"Feature","id":"node/7204326597","properties":{"name":"Praça da FEB","id":"node/7204326597","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8948252,-8.0401811]}},{"type":"Feature","id":"node/7204326598","properties":{"name":"Náutico","id":"node/7204326598","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8974496,-8.0420719]}},{"type":"Feature","id":"node/7204326599","properties":{"name":"Praça Dr. José Vilela","id":"node/7204326599","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.91137,-8.03403]}},{"type":"Feature","id":"node/7204326600","properties":{"name":"Casa Rosada","id":"node/7204326600","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8973164,-8.0351458]}},{"type":"Feature","id":"node/7204326601","properties":{"name":"Faculdade Damas","id":"node/7204326601","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9029058,-8.0390186]}},{"type":"Feature","id":"node/7204326602","properties":{"name":"Parque da Jaqueira","id":"node/7204326602","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9033728,-8.0366798]}},{"type":"Feature","id":"node/7204326603","properties":{"name":"R. Bruno Maia","id":"node/7204326603","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8969794,-8.0469895]}},{"type":"Feature","id":"node/7204326604","properties":{"name":"R. Adalberto Camargo","id":"node/7204326604","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8997584,-8.0442128]}},{"type":"Feature","id":"node/7204326605","properties":{"name":"Rua Samuel Pinto","id":"node/7204326605","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8926042,-8.0520986]}},{"type":"Feature","id":"node/7204326606","properties":{"name":"Praça Otília","id":"node/7204326606","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.89233,-8.048384]}},{"type":"Feature","id":"node/7204326607","properties":{"name":"Colégio Agnes Erskine","id":"node/7204326607","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9013058,-8.0466918]}},{"type":"Feature","id":"node/7204326608","properties":{"name":"Praça do Entroncamento","id":"node/7204326608","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.896989,-8.0504888]}},{"type":"Feature","id":"node/7204326609","properties":{"name":"Instituto Capibaribe","id":"node/7204326609","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9018615,-8.0505195]}},{"type":"Feature","id":"node/7204326610","properties":{"name":"Beira Rio","id":"node/7204326610","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9042585,-8.047239]}},{"type":"Feature","id":"node/7204326611","properties":{"name":"Praça João Pereira Borges","id":"node/7204326611","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9018285,-8.0544086]}},{"type":"Feature","id":"node/7204326612","properties":{"name":"Ponte da Capunga","id":"node/7204326612","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9050039,-8.0520241]}},{"type":"Feature","id":"node/7204326613","properties":{"name":"Praça do Derby","id":"node/7204326613","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8991701,-8.0560671]}},{"type":"Feature","id":"node/7204326614","properties":{"name":"Politécnica","id":"node/7204326614","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9038211,-8.0595212]}},{"type":"Feature","id":"node/7204326615","properties":{"name":"CNBB","id":"node/7204326615","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.89531,-8.057475]}},{"type":"Feature","id":"node/7204326616","properties":{"name":"R. Silva Ramos","id":"node/7204326616","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8964212,-8.0560306]}},{"type":"Feature","id":"node/7204326617","properties":{"name":"Castelinho","id":"node/7204326617","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8986324,-8.1289861]}},{"type":"Feature","id":"node/7204326618","properties":{"name":"Praça Chora Menino","id":"node/7204326618","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8951776,-8.0606218]}},{"type":"Feature","id":"node/7204326619","properties":{"name":"Praça Miguel de Cervantes","id":"node/7204326619","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8937564,-8.065077]}},{"type":"Feature","id":"node/7204326620","properties":{"name":"SJCC","id":"node/7204326620","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8787347,-8.0534257]}},{"type":"Feature","id":"node/7204326621","properties":{"name":"Rua da Soledade","id":"node/7204326621","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8899672,-8.0579007]}},{"type":"Feature","id":"node/7204326622","properties":{"name":"Salesiano","id":"node/7204326622","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8921045,-8.0613555]}},{"type":"Feature","id":"node/7204326623","properties":{"name":"Rua do Lazer","id":"node/7204326623","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8881673,-8.0542505]}},{"type":"Feature","id":"node/7204326624","properties":{"name":"Praça Oswaldo Cruz","id":"node/7204326624","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8910526,-8.0546704]}},{"type":"Feature","id":"node/7204326625","properties":{"name":"SESC Santo Amaro","id":"node/7204326625","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8827713,-8.0499004]}},{"type":"Feature","id":"node/7204326626","properties":{"name":"BikePE -Cemitério de Santo Amaro","id":"node/7204326626","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8861592,-8.0511721]}},{"type":"Feature","id":"node/7204326628","properties":{"name":"Frei Cassimiro","id":"node/7204326628","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8780758,-8.0480364]}},{"type":"Feature","id":"node/7204326629","properties":{"name":"Sossego","id":"node/7204326629","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8840345,-8.0543316]}},{"type":"Feature","id":"node/7204326630","properties":{"name":"Palmares","id":"node/7204326630","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.882595,-8.0534341]}},{"type":"Feature","id":"node/7204326631","properties":{"name":"Igreja de Santa Cruz","id":"node/7204326631","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.88813,-8.06231]}},{"type":"Feature","id":"node/7204326632","properties":{"name":"Riachuelo","id":"node/7204326632","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.88571,-8.05826]}},{"type":"Feature","id":"node/7204326633","properties":{"name":"Cine São Luiz","id":"node/7204326633","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8819838,-8.0623763]}},{"type":"Feature","id":"node/7204326634","properties":{"name":"Matriz da Boa Vista","id":"node/7204326634","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.88519,-8.06263]}},{"type":"Feature","id":"node/7204326635","properties":{"name":"Tortura Nunca Mais","id":"node/7204326635","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.878319,-8.056193]}},{"type":"Feature","id":"node/7204326636","properties":{"name":"Parque Treze de Maio","id":"node/7204326636","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.88106,-8.05854]}},{"type":"Feature","id":"node/7204326637","properties":{"name":"Ponte do Limoeiro","id":"node/7204326637","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.87397,-8.05039]}},{"type":"Feature","id":"node/7204326638","properties":{"name":"Camilo Simões","id":"node/7204326638","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.87581,-8.05316]}},{"type":"Feature","id":"node/7204326639","properties":{"name":"Praça Joaquim Nabuco","id":"node/7204326639","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.88135,-8.06444]}},{"type":"Feature","id":"node/7204326640","properties":{"name":"Casa da Cultura","id":"node/7204326640","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8829502,-8.0667863]}},{"type":"Feature","id":"node/7204326641","properties":{"name":"Praça da República","id":"node/7204326641","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.87839,-8.06112]}},{"type":"Feature","id":"node/7204326642","properties":{"name":"Praça da Independência","id":"node/7204326642","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.87837,-8.06418]}},{"type":"Feature","id":"node/7204326643","properties":{"name":"Paço Alfândega","id":"node/7204326643","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8742295,-8.0637619]}},{"type":"Feature","id":"node/7204326644","properties":{"name":"Cais de Santa Rita","id":"node/7204326644","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8757,-8.06707]}},{"type":"Feature","id":"node/7204326645","properties":{"name":"Praça do Arsenal","id":"node/7204326645","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.871049,-8.061392]}},{"type":"Feature","id":"node/7204326646","properties":{"name":"Boulevard Rio Branco","id":"node/7204326646","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.872696,-8.0625979]}},{"type":"Feature","id":"node/7204326647","properties":{"name":"Prefeitura","id":"node/7204326647","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.87221,-8.05529]}},{"type":"Feature","id":"node/7204326648","properties":{"name":"Praça Tiradentes","id":"node/7204326648","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8723948,-8.0587934]}},{"type":"Feature","id":"node/7206255941","properties":{"id":"node/7206255941","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8960376,-8.0643997]}},{"type":"Feature","id":"node/7206255942","properties":{"id":"node/7206255942","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8957815,-8.0652244]}},{"type":"Feature","id":"node/7206255943","properties":{"id":"node/7206255943","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8946145,-8.064104]}},{"type":"Feature","id":"node/7206255944","properties":{"id":"node/7206255944","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8944844,-8.0640562]}},{"type":"Feature","id":"node/7206255945","properties":{"id":"node/7206255945","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8937543,-8.0656248]}},{"type":"Feature","id":"node/7206255946","properties":{"id":"node/7206255946","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9040629,-8.0466061]}},{"type":"Feature","id":"node/7206255947","properties":{"id":"node/7206255947","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9040936,-8.0359854]}},{"type":"Feature","id":"node/7206255948","properties":{"id":"node/7206255948","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8772143,-8.0604911]}},{"type":"Feature","id":"node/7206255949","properties":{"id":"node/7206255949","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8710321,-8.0615194]}},{"type":"Feature","id":"node/7206255950","properties":{"id":"node/7206255950","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8731067,-8.064658]}},{"type":"Feature","id":"node/7248461481","properties":{"id":"node/7248461481","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.872331,-8.0588715]}},{"type":"Feature","id":"node/7248461482","properties":{"id":"node/7248461482","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8717749,-8.0589966]}},{"type":"Feature","id":"node/7258241646","properties":{"id":"node/7258241646","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8716589,-8.061846]}},{"type":"Feature","id":"node/7258241647","properties":{"id":"node/7258241647","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8719089,-8.0617926]}},{"type":"Feature","id":"node/7258245175","properties":{"id":"node/7258245175","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8805384,-8.0576397]}},{"type":"Feature","id":"node/7258245176","properties":{"id":"node/7258245176","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8815322,-8.0709069]}},{"type":"Feature","id":"node/7258245177","properties":{"id":"node/7258245177","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.88476,-8.0729486]}},{"type":"Feature","id":"node/7258245178","properties":{"id":"node/7258245178","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8727598,-8.0537773]}},{"type":"Feature","id":"node/7258245179","properties":{"id":"node/7258245179","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9010015,-8.1318319]}},{"type":"Feature","id":"node/7258245180","properties":{"id":"node/7258245180","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9057682,-8.0372824]}},{"type":"Feature","id":"node/7258245181","properties":{"id":"node/7258245181","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9115289,-8.0288304]}},{"type":"Feature","id":"node/7258245182","properties":{"id":"node/7258245182","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8825237,-8.0941709]}},{"type":"Feature","id":"node/7258245183","properties":{"id":"node/7258245183","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8833811,-8.0976859]}},{"type":"Feature","id":"node/7258245184","properties":{"id":"node/7258245184","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8842797,-8.1000736]}},{"type":"Feature","id":"node/7258254785","properties":{"id":"node/7258254785","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8920562,-8.1154589]}},{"type":"Feature","id":"node/7258254786","properties":{"id":"node/7258254786","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8940574,-8.1187668]}},{"type":"Feature","id":"node/7258254787","properties":{"id":"node/7258254787","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8958598,-8.1220423]}},{"type":"Feature","id":"node/7258254788","properties":{"id":"node/7258254788","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9001404,-8.1328623]}},{"type":"Feature","id":"node/7258254789","properties":{"id":"node/7258254789","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9035756,-8.1422658]}},{"type":"Feature","id":"node/7258254790","properties":{"id":"node/7258254790","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9052878,-8.1457456]}},{"type":"Feature","id":"node/7258301109","properties":{"id":"node/7258301109","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9043845,-8.0411193]}},{"type":"Feature","id":"node/7258641636","properties":{"id":"node/7258641636","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8721727,-8.0604966]}},{"type":"Feature","id":"node/7258969496","properties":{"id":"node/7258969496","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9171208,-8.0412605]}},{"type":"Feature","id":"node/7258969497","properties":{"id":"node/7258969497","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9332813,-8.0214506]}},{"type":"Feature","id":"node/7370270498","properties":{"id":"node/7370270498","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8890073,-8.0586149]}},{"type":"Feature","id":"node/7969991050","properties":{"name":"Restaurante Universitário UFPE","id":"node/7969991050","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9533747,-8.0505829]}},{"type":"Feature","id":"node/7969991051","properties":{"name":"CCS UFPE","id":"node/7969991051","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.9474288,-8.0501292]}},{"type":"Feature","id":"node/9306598439","properties":{"id":"node/9306598439","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8781455,-8.0679147]}},{"type":"Feature","id":"node/9492930353","properties":{"id":"node/9492930353","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9208904,-8.0458944]}},{"type":"Feature","id":"node/9949967131","properties":{"id":"node/9949967131","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.899052,-8.0353395]}},{"type":"Feature","id":"node/10665519922","properties":{"id":"node/10665519922","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9127856,-8.0363807]}},{"type":"Feature","id":"node/11040349768","properties":{"id":"node/11040349768","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9037822,-8.0365287]}},{"type":"Feature","id":"node/12532218552","properties":{"name":"Boutique velo","id":"node/12532218552","type":"Estações de bicicleta"},"geometry":{"type":"Point","coordinates":[-34.8798685,-8.0667296]}},{"type":"Feature","id":"node/12542338193","properties":{"id":"node/12542338193","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8801458,-8.0593432]}},{"type":"Feature","id":"node/12920182370","properties":{"id":"node/12920182370","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9002559,-8.0351261]}},{"type":"Feature","id":"node/12943413192","properties":{"id":"node/12943413192","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8702512,-8.0607004]}},{"type":"Feature","id":"node/12944942693","properties":{"id":"node/12944942693","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9030285,-8.0316851]}},{"type":"Feature","id":"node/13004799426","properties":{"id":"node/13004799426","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9245979,-8.1131239]}},{"type":"Feature","id":"node/13057155074","properties":{"id":"node/13057155074","type":"Oficinas & lojas"},"geometry":{"type":"Point","coordinates":[-34.9098908,-8.0985377]}},{"type":"Feature","id":"node/13112920829","properties":{"name":"Estação Werneck","id":"node/13112920829","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9368575,-8.0858345]}},{"type":"Feature","id":"node/13112920830","properties":{"name":"Creche Dorgiane dos Santos Xavier Souza","id":"node/13112920830","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8771718,-8.0198156]}},{"type":"Feature","id":"node/13112920831","properties":{"name":"Praça Maestro Milton Rodrigues","id":"node/13112920831","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8827512,-8.0476192]}},{"type":"Feature","id":"node/13112920832","properties":{"name":"Praça Cabipa","id":"node/13112920832","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8981081,-8.0437621]}},{"type":"Feature","id":"node/13112920833","properties":{"name":"Praça Juliete Moura","id":"node/13112920833","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9325309,-8.0860762]}},{"type":"Feature","id":"node/13112920834","properties":{"name":"Banco Bradesco","id":"node/13112920834","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8721835,-8.0644766]}},{"type":"Feature","id":"node/13112920835","properties":{"name":"Praça Maria Lucia","id":"node/13112920835","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9268831,-8.1037652]}},{"type":"Feature","id":"node/13112920836","properties":{"name":"Quadra Neópolis","id":"node/13112920836","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9464761,-8.1163471]}},{"type":"Feature","id":"node/13112920837","properties":{"name":"Praça da Truaca","id":"node/13112920837","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9515212,-8.1111243]}},{"type":"Feature","id":"node/13112920838","properties":{"name":"Praça Tempo de Crescer","id":"node/13112920838","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9507915,-8.1111115]}},{"type":"Feature","id":"node/13112920839","properties":{"name":"Praça Raízes","id":"node/13112920839","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9506921,-8.1121923]}},{"type":"Feature","id":"node/13112920840","properties":{"name":"Praça do Tamarindo","id":"node/13112920840","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.950104,-8.1143814]}},{"type":"Feature","id":"node/13112920841","properties":{"name":"Praça Três Marias","id":"node/13112920841","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9510884,-8.1133074]}},{"type":"Feature","id":"node/13112920842","properties":{"name":"Praça dos Iburenses","id":"node/13112920842","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9470032,-8.117584]}},{"type":"Feature","id":"node/13112920843","properties":{"name":"IPHAN","id":"node/13112920843","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8836217,-8.0677544]}},{"type":"Feature","id":"node/13112920844","properties":{"name":"Praça Padre Romano Zufferey","id":"node/13112920844","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9396992,-8.0782211]}},{"type":"Feature","id":"node/13112920845","properties":{"name":"Praça de Joana Bezerra","id":"node/13112920845","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8969895,-8.0719379]}},{"type":"Feature","id":"node/13112920846","properties":{"name":"Praça José da Costa Porto","id":"node/13112920846","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9007637,-8.0719222]}},{"type":"Feature","id":"node/13112920847","properties":{"name":"Praça do Mangue","id":"node/13112920847","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9165449,-8.0850655]}},{"type":"Feature","id":"node/13112920848","properties":{"name":"Praça Marcantônio Vilaça","id":"node/13112920848","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8891225,-8.0990709]}},{"type":"Feature","id":"node/13112920849","properties":{"name":"Porto Terra Nova","id":"node/13112920849","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8760222,-8.0781711]}},{"type":"Feature","id":"node/13112920850","properties":{"name":"Praça Don Helder","id":"node/13112920850","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.953711,-8.0815153]}},{"type":"Feature","id":"node/13112920851","properties":{"name":"Praça João Vinte e Três","id":"node/13112920851","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9553558,-8.0832271]}},{"type":"Feature","id":"node/13112920852","properties":{"name":"2a Praça da Vila dos Bancários","id":"node/13112920852","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9556462,-8.0818098]}},{"type":"Feature","id":"node/13112920853","properties":{"name":"Praça Saberé","id":"node/13112920853","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.95243,-8.037334]}},{"type":"Feature","id":"node/13112920854","properties":{"name":"Praça Mano Marlon Lins","id":"node/13112920854","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.962555,-8.023725]}},{"type":"Feature","id":"node/13112920855","properties":{"name":"Escola Municipal Nova Morada","id":"node/13112920855","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.952404,-8.025928]}},{"type":"Feature","id":"node/13112920856","properties":{"name":"Praça dos Ipês","id":"node/13112920856","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.954411,-8.026612]}},{"type":"Feature","id":"node/13112920857","properties":{"name":"Quadra Sobral","id":"node/13112920857","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932417,-8.030682]}},{"type":"Feature","id":"node/13112920858","properties":{"name":"COMPAZ Miguel Arraes","id":"node/13112920858","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.914461,-8.054413]}},{"type":"Feature","id":"node/13112920859","properties":{"name":"Praça Professor Calazans","id":"node/13112920859","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.910183,-8.050529]}},{"type":"Feature","id":"node/13112920860","properties":{"name":"Creche Escola Municipal João Amazonas","id":"node/13112920860","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906106,-8.002406]}},{"type":"Feature","id":"node/13112920861","properties":{"name":"Escola Municipal Olindina Monteiro de Oliveira França","id":"node/13112920861","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906219,-8.002599]}},{"type":"Feature","id":"node/13112920862","properties":{"name":"Restaurante Pahu Poke","id":"node/13112920862","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89785,-8.045637]}},{"type":"Feature","id":"node/13112920863","properties":{"name":"Mercado Público de Nova Descoberta","id":"node/13112920863","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.922569,-8.000434]}},{"type":"Feature","id":"node/13112920864","properties":{"name":"Campo de Singapura","id":"node/13112920864","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.900691,-8.004986]}},{"type":"Feature","id":"node/13112920865","properties":{"name":"Escola Municipal Poeta Solano Trindade","id":"node/13112920865","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.889038,-8.018404]}},{"type":"Feature","id":"node/13112920866","properties":{"name":"Escola Municipal Antônio Heráclio do Rego","id":"node/13112920866","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.888921,-8.018392]}},{"type":"Feature","id":"node/13112920867","properties":{"name":"Praça da FEB","id":"node/13112920867","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894823,-8.040292]}},{"type":"Feature","id":"node/13112920868","properties":{"name":"Largo da Encruzilhada","id":"node/13112920868","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.891603,-8.037655]}},{"type":"Feature","id":"node/13112920869","properties":{"name":"Praça do Rosarinho","id":"node/13112920869","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.896367,-8.033181]}},{"type":"Feature","id":"node/13112920870","properties":{"name":"CRAS Dois Irmãos","id":"node/13112920870","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.941218,-8.016487]}},{"type":"Feature","id":"node/13112920871","properties":{"name":"CRAS Alto do Mandu","id":"node/13112920871","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927204,-8.024885]}},{"type":"Feature","id":"node/13112920872","properties":{"name":"Baobá","id":"node/13112920872","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904224,-8.041909]}},{"type":"Feature","id":"node/13112920873","properties":{"name":"Estação La Greca","id":"node/13112920873","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.909673,-8.037485]}},{"type":"Feature","id":"node/13112920874","properties":{"name":"Praça Miguel de Cervantes","id":"node/13112920874","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894031,-8.067784]}},{"type":"Feature","id":"node/13112920875","properties":{"name":"COMPAZ atriz Leda Alves","id":"node/13112920875","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.891015,-8.094028]}},{"type":"Feature","id":"node/13112920876","properties":{"name":"Secretaria de Meio Ambiente","id":"node/13112920876","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89927,-8.039986]}},{"type":"Feature","id":"node/13112920877","properties":{"name":"Sá e Souza","id":"node/13112920877","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907579,-8.139783]}},{"type":"Feature","id":"node/13112920878","properties":{"name":"Praça Jardim América","id":"node/13112920878","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.919941,-8.105742]}},{"type":"Feature","id":"node/13112920879","properties":{"name":"Quadra Imbiribeira","id":"node/13112920879","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.910224,-8.085383]}},{"type":"Feature","id":"node/13112920880","properties":{"name":"Largura","id":"node/13112920880","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.917809,-8.03228]}},{"type":"Feature","id":"node/13112920881","properties":{"id":"node/13112920881","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904604,-8.044202]}},{"type":"Feature","id":"node/13112920882","properties":{"id":"node/13112920882","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904873,-8.044362]}},{"type":"Feature","id":"node/13112920883","properties":{"name":"Praça José Sales Filho","id":"node/13112920883","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904601,-8.045068]}},{"type":"Feature","id":"node/13112920884","properties":{"name":"Orora","id":"node/13112920884","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876978,-8.054677]}},{"type":"Feature","id":"node/13112920885","properties":{"name":"Praça Dona Elizabeth","id":"node/13112920885","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881892,-8.04546]}},{"type":"Feature","id":"node/13112920886","properties":{"name":"Praça Adulccio Junior","id":"node/13112920886","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.88124,-8.04595]}},{"type":"Feature","id":"node/13112920887","properties":{"name":"Praça Eduardo Campos (Ilha de Deus)","id":"node/13112920887","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9023837,-8.0861692]}},{"type":"Feature","id":"node/13112920888","properties":{"name":"Polo Academia da Cidade - Jordão Baixo","id":"node/13112920888","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.936864,-8.136767]}},{"type":"Feature","id":"node/13112920889","properties":{"id":"node/13112920889","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.905241,-8.087266]}},{"type":"Feature","id":"node/13112920890","properties":{"id":"node/13112920890","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.905338,-8.086933]}},{"type":"Feature","id":"node/13112920891","properties":{"name":"RM","id":"node/13112920891","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907628,-8.053024]}},{"type":"Feature","id":"node/13112920892","properties":{"name":"Feira agroecológia de Setubal","id":"node/13112920892","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.908172,-8.137121]}},{"type":"Feature","id":"node/13112920893","properties":{"name":"Marco Zero da Ilha de Deus","id":"node/13112920893","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9006234,-8.0876702]}},{"type":"Feature","id":"node/13112920894","properties":{"name":"Praça do Tourão","id":"node/13112920894","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.925466,-8.092827]}},{"type":"Feature","id":"node/13112920895","properties":{"name":"Praça Prof. Barreto Campelo","id":"node/13112920895","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913412,-8.046696]}},{"type":"Feature","id":"node/13112920896","properties":{"name":"Douro","id":"node/13112920896","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.87934,-8.062035]}},{"type":"Feature","id":"node/13112920897","properties":{"name":"EREM Clotilde de Oliveira","id":"node/13112920897","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.926109,-8.020037]}},{"type":"Feature","id":"node/13112920898","properties":{"name":"Escola Est. Professor Motta e Albuquerque","id":"node/13112920898","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.905053,-8.029923]}},{"type":"Feature","id":"node/13112920899","properties":{"name":"Bacurau - Galo","id":"node/13112920899","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.950044,-8.115168]}},{"type":"Feature","id":"node/13112920900","properties":{"name":"Conjunto Europa","id":"node/13112920900","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906404,-8.134607]}},{"type":"Feature","id":"node/13112921001","properties":{"name":"Procuradoria Geral do Estado","id":"node/13112921001","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879806,-8.061773]}},{"type":"Feature","id":"node/13112921002","properties":{"name":"Vapor","id":"node/13112921002","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.87857,-8.053736]}},{"type":"Feature","id":"node/13112921003","properties":{"name":"Central CadÚnico","id":"node/13112921003","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.87932,-8.051184]}},{"type":"Feature","id":"node/13112921004","properties":{"name":"Travessa Carapuceiro","id":"node/13112921004","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.901911,-8.118732]}},{"type":"Feature","id":"node/13112921005","properties":{"name":"Lagoa do Araçá","id":"node/13112921005","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913271,-8.092967]}},{"type":"Feature","id":"node/13112921006","properties":{"name":"Lagoa do Araçá","id":"node/13112921006","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.915443,-8.096513]}},{"type":"Feature","id":"node/13112921007","properties":{"name":"Borsoi","id":"node/13112921007","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887765,-8.104557]}},{"type":"Feature","id":"node/13112921008","properties":{"name":"Sindicato dos Contabilistas","id":"node/13112921008","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892679,-8.058173]}},{"type":"Feature","id":"node/13112921009","properties":{"name":"Praça da Infãncia Córrego do Morcego","id":"node/13112921009","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907454,-8.003033]}},{"type":"Feature","id":"node/13112921010","properties":{"name":"Parque Jardim do Poço","id":"node/13112921010","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.924598,-8.031438]}},{"type":"Feature","id":"node/13112921011","properties":{"name":"Parque Jardim do Poço","id":"node/13112921011","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.925246,-8.032042]}},{"type":"Feature","id":"node/13112921012","properties":{"name":"Parcão Sítio da Trindade","id":"node/13112921012","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.914133,-8.031846]}},{"type":"Feature","id":"node/13112921013","properties":{"name":"Rua dos Arcos","id":"node/13112921013","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.922842,-8.033828]}},{"type":"Feature","id":"node/13112921014","properties":{"name":"Dantas Barreto","id":"node/13112921014","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881683,-8.069768]}},{"type":"Feature","id":"node/13112921015","properties":{"name":"Praça João Pereira Borges","id":"node/13112921015","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.901764,-8.05432]}},{"type":"Feature","id":"node/13112921016","properties":{"name":"UFRPE 2","id":"node/13112921016","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.950863,-8.016237]}},{"type":"Feature","id":"node/13112921017","properties":{"name":"UFRPE","id":"node/13112921017","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.945253,-8.016447]}},{"type":"Feature","id":"node/13112921018","properties":{"name":"Parque Santos Dumont 2","id":"node/13112921018","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.908225,-8.129184]}},{"type":"Feature","id":"node/13112921019","properties":{"name":"Parque Santos Dumont 1","id":"node/13112921019","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907551,-8.13028]}},{"type":"Feature","id":"node/13112921020","properties":{"name":"Bruno Veloso","id":"node/13112921020","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.901952,-8.121301]}},{"type":"Feature","id":"node/13112921021","properties":{"name":"Parque Ecológico Rio Azul","id":"node/13112921021","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.909269,-8.134723]}},{"type":"Feature","id":"node/13112921022","properties":{"name":"Praça Walt Disney","id":"node/13112921022","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.889162,-8.107903]}},{"type":"Feature","id":"node/13112921023","properties":{"name":"Praça Cidade do Porto","id":"node/13112921023","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.889522,-8.106064]}},{"type":"Feature","id":"node/13112921024","properties":{"name":"Praça Comandante Alex","id":"node/13112921024","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.890877,-8.106038]}},{"type":"Feature","id":"node/13112921025","properties":{"name":"Estação e metrô Antônio Falcão","id":"node/13112921025","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.909087,-8.109634]}},{"type":"Feature","id":"node/13112921026","properties":{"name":"AACD","id":"node/13112921026","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894148,-8.071839]}},{"type":"Feature","id":"node/13112921027","properties":{"name":"Quadra de Jardim Planalto","id":"node/13112921027","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.958396,-8.084302]}},{"type":"Feature","id":"node/13112921028","properties":{"name":"Escola Municipal de Tejipió","id":"node/13112921028","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.964395,-8.091995]}},{"type":"Feature","id":"node/13112921029","properties":{"name":"Estação Coqueiral","id":"node/13112921029","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.964639,-8.091186]}},{"type":"Feature","id":"node/13112921030","properties":{"name":"Praça do ABC","id":"node/13112921030","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.918527,-8.073582]}},{"type":"Feature","id":"node/13112921031","properties":{"name":"Praça Irmã Douraci Joaguim","id":"node/13112921031","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.918298,-8.071787]}},{"type":"Feature","id":"node/13112921032","properties":{"name":"Praça Zeppelin (Jiquiá)","id":"node/13112921032","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.92525,-8.083425]}},{"type":"Feature","id":"node/13112921033","properties":{"name":"Praça da Sudene","id":"node/13112921033","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.921882,-8.114094]}},{"type":"Feature","id":"node/13112921034","properties":{"name":"Praça Aleixo de Oliveira","id":"node/13112921034","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.924747,-8.112414]}},{"type":"Feature","id":"node/13112921035","properties":{"name":"Praça Vicente Antunes","id":"node/13112921035","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.918499,-8.11461]}},{"type":"Feature","id":"node/13112921036","properties":{"name":"Praça da Lua","id":"node/13112921036","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887377,-8.086239]}},{"type":"Feature","id":"node/13112921037","properties":{"name":"Barraca de Pingo","id":"node/13112921037","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883828,-8.099856]}},{"type":"Feature","id":"node/13112921038","properties":{"name":"Praça do Sargento","id":"node/13112921038","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.918605,-8.115912]}},{"type":"Feature","id":"node/13112921039","properties":{"name":"Praça Franco Gomes Coutinho","id":"node/13112921039","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.919767,-8.07872]}},{"type":"Feature","id":"node/13112921040","properties":{"name":"Praça Nossa Senhora de Fátima","id":"node/13112921040","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.930639,-8.072198]}},{"type":"Feature","id":"node/13112921041","properties":{"name":"Praça Zeppelin (San Martin)","id":"node/13112921041","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927955,-8.072877]}},{"type":"Feature","id":"node/13112921042","properties":{"name":"Praça Professor Paulo Silveira do Nascimento","id":"node/13112921042","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.921773,-8.083229]}},{"type":"Feature","id":"node/13112921043","properties":{"name":"Praça Sargento Max Wolf Filho","id":"node/13112921043","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.911402,-8.071678]}},{"type":"Feature","id":"node/13112921044","properties":{"name":"TI Caxangá","id":"node/13112921044","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.954845,-8.031226]}},{"type":"Feature","id":"node/13112921045","properties":{"name":"Orla de Brasilia Teimosa (Buraco da Véia)","id":"node/13112921045","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876596,-8.079951]}},{"type":"Feature","id":"node/13112921046","properties":{"name":"Acad. da cidade – Polo Cafezópolis","id":"node/13112921046","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.908857,-8.099821]}},{"type":"Feature","id":"node/13112921047","properties":{"name":"Academia da Cidade Polo Chão de estrelas","id":"node/13112921047","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.87587,-8.020313]}},{"type":"Feature","id":"node/13112921048","properties":{"name":"Buriti","id":"node/13112921048","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.929403,-8.010254]}},{"type":"Feature","id":"node/13112921049","properties":{"name":"CMEI Prof. FRANCISCO do Amaral Lopes","id":"node/13112921049","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.888587,-8.044902]}},{"type":"Feature","id":"node/13112921050","properties":{"name":"Parque das Graças 03","id":"node/13112921050","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.902784,-8.048016]}},{"type":"Feature","id":"node/13112921051","properties":{"name":"Parque das Graças 02","id":"node/13112921051","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.903651,-8.049569]}},{"type":"Feature","id":"node/13112921052","properties":{"name":"Parque das Graças 01","id":"node/13112921052","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.902913,-8.045406]}},{"type":"Feature","id":"node/13112921053","properties":{"name":"TI Getulio Vargas 02","id":"node/13112921053","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.921716,-8.05029]}},{"type":"Feature","id":"node/13112921054","properties":{"name":"TI CDU","id":"node/13112921054","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.943299,-8.038463]}},{"type":"Feature","id":"node/13112921055","properties":{"name":"Mercado de Casa Amarela 04","id":"node/13112921055","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.917754,-8.025911]}},{"type":"Feature","id":"node/13112921056","properties":{"name":"Praça Maciel Pinheiro","id":"node/13112921056","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.885148,-8.062604]}},{"type":"Feature","id":"node/13112921057","properties":{"name":"Praça Eça de Queiroz","id":"node/13112921057","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907299,-8.050652]}},{"type":"Feature","id":"node/13112921058","properties":{"name":"Dpt. Remo Do Sport Club Do Recife","id":"node/13112921058","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.90451,-8.053573]}},{"type":"Feature","id":"node/13112921059","properties":{"name":"Simonesia","id":"node/13112921059","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932698,-8.028989]}},{"type":"Feature","id":"node/13112921060","properties":{"id":"node/13112921060","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.899404,-8.068887]}},{"type":"Feature","id":"node/13112921061","properties":{"name":"CRAS Campina do Barreto","id":"node/13112921061","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881264,-8.015904]}},{"type":"Feature","id":"node/13112921062","properties":{"name":"Praça do Burity","id":"node/13112921062","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.929304,-8.016857]}},{"type":"Feature","id":"node/13112921063","properties":{"name":"Academia da Cidade Polo Simão Borba","id":"node/13112921063","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.925422,-8.096667]}},{"type":"Feature","id":"node/13112921064","properties":{"name":"Praça Chora Menino","id":"node/13112921064","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89503,-8.060339]}},{"type":"Feature","id":"node/13112921065","properties":{"name":"Praça dos Taxistas","id":"node/13112921065","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.946227,-8.118421]}},{"type":"Feature","id":"node/13112921066","properties":{"name":"Praça Dom Miguel Valverde 03","id":"node/13112921066","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892775,-8.035682]}},{"type":"Feature","id":"node/13112921067","properties":{"name":"Praça Dom Miguel Valverde 02","id":"node/13112921067","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892489,-8.035839]}},{"type":"Feature","id":"node/13112921068","properties":{"name":"Praça Dom Miguel Valverde 01","id":"node/13112921068","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892587,-8.035414]}},{"type":"Feature","id":"node/13112921069","properties":{"name":"Praça João Pessoa de Queiroz","id":"node/13112921069","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932783,-8.067368]}},{"type":"Feature","id":"node/13112921070","properties":{"name":"Praça Prof. Calazans","id":"node/13112921070","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.910226,-8.050543]}},{"type":"Feature","id":"node/13112921071","properties":{"name":"Praça dos Iburenses - Academia Recife","id":"node/13112921071","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.94702,-8.117503]}},{"type":"Feature","id":"node/13112921072","properties":{"name":"Escola Municipal Engenheiro Edinaldo Miranda de Oliveira","id":"node/13112921072","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89256,-8.034676]}},{"type":"Feature","id":"node/13112921073","properties":{"name":"Academia da Cidade Polo Ilha do Leite","id":"node/13112921073","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.893419,-8.0666]}},{"type":"Feature","id":"node/13112921074","properties":{"name":"Praça Jardim América","id":"node/13112921074","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.919859,-8.105865]}},{"type":"Feature","id":"node/13112921075","properties":{"name":"Praça do Bongi 02","id":"node/13112921075","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.921888,-8.063776]}},{"type":"Feature","id":"node/13112921076","properties":{"name":"Estação Afogados 02","id":"node/13112921076","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906456,-8.077713]}},{"type":"Feature","id":"node/13112921077","properties":{"name":"Estação Afogados 01","id":"node/13112921077","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.90643,-8.077317]}},{"type":"Feature","id":"node/13112921078","properties":{"name":"Praça da Vitória","id":"node/13112921078","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.93423,-8.094366]}},{"type":"Feature","id":"node/13112921079","properties":{"name":"Praça Jornalista Anibal Fernandes","id":"node/13112921079","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.93012,-8.093229]}},{"type":"Feature","id":"node/13112921080","properties":{"name":"Praça Manfredo Nigro","id":"node/13112921080","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932518,-8.093423]}},{"type":"Feature","id":"node/13112921081","properties":{"name":"Praça José Cecílio de Lira","id":"node/13112921081","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.933347,-8.094168]}},{"type":"Feature","id":"node/13112921082","properties":{"name":"Praça São Braz","id":"node/13112921082","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931675,-8.094303]}},{"type":"Feature","id":"node/13112921083","properties":{"name":"Praça Eduardo Cardoso","id":"node/13112921083","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.93143,-8.09648]}},{"type":"Feature","id":"node/13112921084","properties":{"name":"Praça 4 de Outubro","id":"node/13112921084","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.938989,-8.095365]}},{"type":"Feature","id":"node/13112921085","properties":{"name":"Praça Nossa Senhora de Lourdes","id":"node/13112921085","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.943836,-8.095502]}},{"type":"Feature","id":"node/13112921086","properties":{"name":"Mercado de Areias","id":"node/13112921086","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.933831,-8.089414]}},{"type":"Feature","id":"node/13112921087","properties":{"name":"Praça da Lavadeira","id":"node/13112921087","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.936713,-8.094601]}},{"type":"Feature","id":"node/13112921088","properties":{"name":"Campo de Areias","id":"node/13112921088","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.936488,-8.101343]}},{"type":"Feature","id":"node/13112921089","properties":{"name":"Praça João Stanislau","id":"node/13112921089","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.938385,-8.097552]}},{"type":"Feature","id":"node/13112921090","properties":{"name":"Hospital Eduardo Campos da Pessoa Idosa","id":"node/13112921090","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.928055,-8.10024]}},{"type":"Feature","id":"node/13112921091","properties":{"name":"Hospital Otávio de Freitas","id":"node/13112921091","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.961801,-8.086909]}},{"type":"Feature","id":"node/13112921092","properties":{"name":"Escola Municipal Professora Maria da Paz Brandão Alves","id":"node/13112921092","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.96149,-8.08243]}},{"type":"Feature","id":"node/13112921093","properties":{"name":"Estação Tejipió","id":"node/13112921093","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.956638,-8.090533]}},{"type":"Feature","id":"node/13112921094","properties":{"name":"Praça da Cavalaria 02","id":"node/13112921094","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927558,-8.065398]}},{"type":"Feature","id":"node/13112921095","properties":{"name":"Praça da Cavalaria 01","id":"node/13112921095","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927059,-8.065575]}},{"type":"Feature","id":"node/13112921096","properties":{"name":"EREM Professora Helena Pugó","id":"node/13112921096","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932112,-8.067679]}},{"type":"Feature","id":"node/13112921097","properties":{"name":"Praça de San Martin (Praça da Infância)","id":"node/13112921097","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.928825,-8.071083]}},{"type":"Feature","id":"node/13112921098","properties":{"name":"Praça do El Salvador","id":"node/13112921098","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.940126,-8.08056]}},{"type":"Feature","id":"node/13112921099","properties":{"name":"Hospital da Mulher (Emergência)","id":"node/13112921099","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.940573,-8.071672]}},{"type":"Feature","id":"node/13112921100","properties":{"name":"Hospital da Mulher (Acesso Funcionários)","id":"node/13112921100","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.94103,-8.070992]}},{"type":"Feature","id":"node/13112921101","properties":{"name":"Hospital da Mulher (Administração)","id":"node/13112921101","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.940774,-8.072143]}},{"type":"Feature","id":"node/13112921102","properties":{"name":"T.I Largo da Paz","id":"node/13112921102","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904849,-8.081301]}},{"type":"Feature","id":"node/13112921103","properties":{"name":"Escola Municipal Professor Antônio de Brito Alves","id":"node/13112921103","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.917902,-8.073999]}},{"type":"Feature","id":"node/13112921104","properties":{"name":"Maternidade Professor Bandeira Filho","id":"node/13112921104","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.911157,-8.079081]}},{"type":"Feature","id":"node/13112921105","properties":{"name":"Mercado de Afogados","id":"node/13112921105","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.905679,-8.07812]}},{"type":"Feature","id":"node/13112921106","properties":{"name":"Calçada do metrô de Afogados","id":"node/13112921106","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906812,-8.077758]}},{"type":"Feature","id":"node/13112921107","properties":{"name":"Calçada do Sport Clube do Recife","id":"node/13112921107","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.902053,-8.061897]}},{"type":"Feature","id":"node/13112921108","properties":{"name":"Restaurante Universitário (UFPE)","id":"node/13112921108","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.953117,-8.050748]}},{"type":"Feature","id":"node/13112921109","properties":{"name":"Reitoria UFPE","id":"node/13112921109","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9457,-8.052232]}},{"type":"Feature","id":"node/13112921110","properties":{"name":"Cemitério da Várzea","id":"node/13112921110","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.952951,-8.046323]}},{"type":"Feature","id":"node/13112921111","properties":{"name":"Praça da Várzea","id":"node/13112921111","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.959424,-8.048868]}},{"type":"Feature","id":"node/13112921112","properties":{"name":"Praça Pinto Damásio","id":"node/13112921112","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.959424,-8.048726]}},{"type":"Feature","id":"node/13112921113","properties":{"name":"Melhor Cantinho da Cidade","id":"node/13112921113","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.95816,-8.050249]}},{"type":"Feature","id":"node/13112921114","properties":{"name":"Praça do Rosário","id":"node/13112921114","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.958382,-8.050628]}},{"type":"Feature","id":"node/13112921115","properties":{"name":"Ascendino Neves","id":"node/13112921115","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907993,-8.04109]}},{"type":"Feature","id":"node/13112921116","properties":{"name":"Praça do Bom Pastor","id":"node/13112921116","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.940214,-8.048151]}},{"type":"Feature","id":"node/13112921117","properties":{"name":"Praça Estevão Sá","id":"node/13112921117","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.947151,-8.036372]}},{"type":"Feature","id":"node/13112921118","properties":{"name":"Praça Cosme Viana","id":"node/13112921118","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.908901,-8.065535]}},{"type":"Feature","id":"node/13112921119","properties":{"name":"Escola Professor Leal de Barros","id":"node/13112921119","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.943977,-8.056172]}},{"type":"Feature","id":"node/13112921120","properties":{"name":"Praça Luiz de Lacerda","id":"node/13112921120","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.943348,-8.03624]}},{"type":"Feature","id":"node/13112921121","properties":{"name":"Praça Nova Esperança","id":"node/13112921121","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932589,-8.030911]}},{"type":"Feature","id":"node/13112921122","properties":{"name":"Praça Cordislândia","id":"node/13112921122","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.934944,-8.039667]}},{"type":"Feature","id":"node/13112921123","properties":{"name":"Praça Professor Coelho de Almeida","id":"node/13112921123","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931443,-8.045391]}},{"type":"Feature","id":"node/13112921124","properties":{"name":"Praça do Berardo","id":"node/13112921124","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.912518,-8.056582]}},{"type":"Feature","id":"node/13112921125","properties":{"name":"Praça da Chesf","id":"node/13112921125","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931021,-8.062798]}},{"type":"Feature","id":"node/13112921126","properties":{"name":"Praça Luiz Gonzaga","id":"node/13112921126","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932018,-8.06513]}},{"type":"Feature","id":"node/13112921127","properties":{"name":"Praça da Paz Arcebispo Dom Helder Câmara","id":"node/13112921127","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.933376,-8.066907]}},{"type":"Feature","id":"node/13112921128","properties":{"name":"Praça da Fé","id":"node/13112921128","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927325,-8.056242]}},{"type":"Feature","id":"node/13112921129","properties":{"name":"COMPAZ Escritor Ariano Suassuna","id":"node/13112921129","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.92624,-8.059943]}},{"type":"Feature","id":"node/13112921130","properties":{"name":"COMPAZ Escritor Ariano Suassuna","id":"node/13112921130","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.926057,-8.06]}},{"type":"Feature","id":"node/13112921131","properties":{"name":"COMPAZ Escritor Ariano Suassuna","id":"node/13112921131","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.926036,-8.059568]}},{"type":"Feature","id":"node/13112921132","properties":{"name":"Praça Áureo Xavier","id":"node/13112921132","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.926897,-8.050059]}},{"type":"Feature","id":"node/13112921133","properties":{"name":"Praça Dom José Pereira Alves","id":"node/13112921133","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.925347,-8.049242]}},{"type":"Feature","id":"node/13112921134","properties":{"name":"Praça Batista da Silva","id":"node/13112921134","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.908331,-8.04248]}},{"type":"Feature","id":"node/13112921135","properties":{"name":"Praça Gregório Bezerra","id":"node/13112921135","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.915332,-8.044783]}},{"type":"Feature","id":"node/13112921136","properties":{"name":"Praça José da Mota Silveira","id":"node/13112921136","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.903803,-8.056312]}},{"type":"Feature","id":"node/13112921137","properties":{"name":"Praça Domingos Giovanetti","id":"node/13112921137","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904332,-8.047389]}},{"type":"Feature","id":"node/13112921138","properties":{"name":"Praça Paulo Freire","id":"node/13112921138","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904993,-8.049865]}},{"type":"Feature","id":"node/13112921139","properties":{"name":"Estádio do Arruda","id":"node/13112921139","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892724,-8.026138]}},{"type":"Feature","id":"node/13112921140","properties":{"name":"Praça de Campo Grande","id":"node/13112921140","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877331,-8.032432]}},{"type":"Feature","id":"node/13112921141","properties":{"name":"Campo de Concentração de Treinamento de Futebol Internacional do Brasil","id":"node/13112921141","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.922249,-8.010314]}},{"type":"Feature","id":"node/13112921142","properties":{"name":"Praça Augusto Rodrigues","id":"node/13112921142","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.885128,-8.039258]}},{"type":"Feature","id":"node/13112921143","properties":{"name":"Quadra do Viaduto João Tude Melo","id":"node/13112921143","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.910298,-8.037617]}},{"type":"Feature","id":"node/13112921144","properties":{"name":"Praça Dr. José Vilela 02","id":"node/13112921144","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.911385,-8.034301]}},{"type":"Feature","id":"node/13112921145","properties":{"name":"Praça Dr. José Vilela 01","id":"node/13112921145","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.911542,-8.034201]}},{"type":"Feature","id":"node/13112921146","properties":{"name":"Praça Maria José dos Santos","id":"node/13112921146","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.88756,-8.01786]}},{"type":"Feature","id":"node/13112921147","properties":{"name":"Praça Newton Vaz","id":"node/13112921147","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.893929,-8.025131]}},{"type":"Feature","id":"node/13112921148","properties":{"name":"Praça Maria da Conceição de Barros","id":"node/13112921148","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89415,-8.008204]}},{"type":"Feature","id":"node/13112921149","properties":{"name":"Escola Embaixador Gilberto Amado","id":"node/13112921149","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887709,-8.032715]}},{"type":"Feature","id":"node/13112921150","properties":{"name":"Praça de Apipucos","id":"node/13112921150","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.93407,-8.021096]}},{"type":"Feature","id":"node/13112921151","properties":{"name":"Maternidade Professor Bandeira Filho","id":"node/13112921151","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.886474,-8.031968]}},{"type":"Feature","id":"node/13112921152","properties":{"name":"Secretaria Executiva de Vigilência em Saúde SEVS","id":"node/13112921152","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887033,-8.051501]}},{"type":"Feature","id":"node/13112921153","properties":{"name":"Praça Josenildo Lins","id":"node/13112921153","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.909362,-8.026665]}},{"type":"Feature","id":"node/13112921154","properties":{"name":"Praça Castro Alves","id":"node/13112921154","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887137,-8.039819]}},{"type":"Feature","id":"node/13112921155","properties":{"name":"Academia da Cidade Polo Torreão","id":"node/13112921155","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883142,-8.041221]}},{"type":"Feature","id":"node/13112921156","properties":{"name":"Praça de Vinte de Julho","id":"node/13112921156","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879121,-8.025585]}},{"type":"Feature","id":"node/13112921157","properties":{"name":"Campo Campina de Barreto","id":"node/13112921157","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881429,-8.016671]}},{"type":"Feature","id":"node/13112921158","properties":{"name":"USF Prof. Antônio Francisco Areias","id":"node/13112921158","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877107,-8.02185]}},{"type":"Feature","id":"node/13112921159","properties":{"name":"Praça Josélia","id":"node/13112921159","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.926694,-8.00283]}},{"type":"Feature","id":"node/13112921160","properties":{"name":"Praça Desenhista Eulino Santos","id":"node/13112921160","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883099,-8.022786]}},{"type":"Feature","id":"node/13112921161","properties":{"name":"Calçada da Av. João de Barros","id":"node/13112921161","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.891949,-8.038326]}},{"type":"Feature","id":"node/13112921162","properties":{"name":"Praça Deputado Fabio Correa","id":"node/13112921162","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906336,-8.022375]}},{"type":"Feature","id":"node/13112921163","properties":{"name":"Quadra do Vasco","id":"node/13112921163","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.921227,-8.012574]}},{"type":"Feature","id":"node/13112921164","properties":{"name":"Praça do Monteiro","id":"node/13112921164","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.928384,-8.027899]}},{"type":"Feature","id":"node/13112921165","properties":{"name":"Praça Jorn. Francisco Pessoa de Queiroz","id":"node/13112921165","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913993,-8.037022]}},{"type":"Feature","id":"node/13112921166","properties":{"name":"Praça Otávio de Freitas","id":"node/13112921166","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.900583,-8.057962]}},{"type":"Feature","id":"node/13112921167","properties":{"name":"Mercado da Encruzilhada (Belém)","id":"node/13112921167","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892145,-8.036484]}},{"type":"Feature","id":"node/13112921168","properties":{"name":"Praça Marcelino Champagnat","id":"node/13112921168","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.900547,-8.041828]}},{"type":"Feature","id":"node/13112921169","properties":{"name":"Praça Elvira de Souza","id":"node/13112921169","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.901488,-8.043824]}},{"type":"Feature","id":"node/13112921170","properties":{"name":"Praça Flor de Santana","id":"node/13112921170","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.917937,-8.038042]}},{"type":"Feature","id":"node/13112921171","properties":{"name":"Praça Everaldo Bidou Lambbe","id":"node/13112921171","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.911113,-8.038094]}},{"type":"Feature","id":"node/13112921172","properties":{"name":"Praça Compositor Antônio Maria","id":"node/13112921172","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.91385,-8.040173]}},{"type":"Feature","id":"node/13112921173","properties":{"name":"Praça Vagner Love","id":"node/13112921173","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.922475,-8.037233]}},{"type":"Feature","id":"node/13112921174","properties":{"name":"Escola Municipal da Mangabeira","id":"node/13112921174","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.900727,-8.02397]}},{"type":"Feature","id":"node/13112921175","properties":{"name":"Canteiro Central da Avenida José Américo","id":"node/13112921175","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931229,-8.010048]}},{"type":"Feature","id":"node/13112921176","properties":{"name":"Praça Sr. Bartolomeu","id":"node/13112921176","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932825,-8.0178]}},{"type":"Feature","id":"node/13112921177","properties":{"name":"Centro de Saúde Dr. Luiz Wilson","id":"node/13112921177","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.904211,-8.021005]}},{"type":"Feature","id":"node/13112921178","properties":{"name":"Largo Bomba do Hemetério","id":"node/13112921178","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.903306,-8.020276]}},{"type":"Feature","id":"node/13112921179","properties":{"name":"Mercado da Encruzilhada","id":"node/13112921179","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892381,-8.036496]}},{"type":"Feature","id":"node/13112921180","properties":{"name":"Praça Marcos Bocoiô","id":"node/13112921180","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.90648,-8.029259]}},{"type":"Feature","id":"node/13112921181","properties":{"name":"Praça Amaro Albino Pimentel","id":"node/13112921181","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.897958,-8.030074]}},{"type":"Feature","id":"node/13112921182","properties":{"name":"Praça na Rua Alice Tibiriçá","id":"node/13112921182","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882671,-8.009851]}},{"type":"Feature","id":"node/13112921183","properties":{"name":"Praça André Antunes","id":"node/13112921183","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883045,-8.012874]}},{"type":"Feature","id":"node/13112921184","properties":{"name":"Praça USF Irmã Terezinha","id":"node/13112921184","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877927,-8.020391]}},{"type":"Feature","id":"node/13112921185","properties":{"name":"Praça do Fundão","id":"node/13112921185","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.889461,-8.014039]}},{"type":"Feature","id":"node/13112921186","properties":{"name":"Escola Estadual Prof. José dos Anjos","id":"node/13112921186","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.916663,-7.989077]}},{"type":"Feature","id":"node/13112921187","properties":{"name":"USF/ Praça Alto do Capitão","id":"node/13112921187","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913872,-7.999824]}},{"type":"Feature","id":"node/13112921188","properties":{"name":"Praça Canavial","id":"node/13112921188","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.901627,-8.000872]}},{"type":"Feature","id":"node/13112921189","properties":{"name":"Praça Paulo Bernardo","id":"node/13112921189","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.898421,-8.032335]}},{"type":"Feature","id":"node/13112921190","properties":{"name":"Praça Ulisses Leon de Oliveira","id":"node/13112921190","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.8894026,-8.0292462]}},{"type":"Feature","id":"node/13112921191","properties":{"name":"Praça da rotatória","id":"node/13112921191","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887623,-8.028423]}},{"type":"Feature","id":"node/13112921192","properties":{"name":"Praça Sargento Pincel","id":"node/13112921192","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876334,-8.025006]}},{"type":"Feature","id":"node/13112921193","properties":{"name":"Praça do Lindomar","id":"node/13112921193","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876512,-8.025546]}},{"type":"Feature","id":"node/13112921194","properties":{"name":"Praça Dalceu","id":"node/13112921194","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881685,-8.024248]}},{"type":"Feature","id":"node/13112921195","properties":{"name":"Praça Márcio Condonga","id":"node/13112921195","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887708,-8.049551]}},{"type":"Feature","id":"node/13112921196","properties":{"name":"Canteiro Central da Rua Othon Paraíso","id":"node/13112921196","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.88346,-8.039759]}},{"type":"Feature","id":"node/13112921197","properties":{"name":"Montreal","id":"node/13112921197","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877434,-8.055833]}},{"type":"Feature","id":"node/13112921198","properties":{"name":"Restaurante Ôge","id":"node/13112921198","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880989,-8.060789]}},{"type":"Feature","id":"node/13112921199","properties":{"name":"Parque de Esculturas","id":"node/13112921199","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.870118,-8.066052]}},{"type":"Feature","id":"node/13112921200","properties":{"name":"Canteiro Central da Rua Othon Paraíso","id":"node/13112921200","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883362,-8.0405]}},{"type":"Feature","id":"node/13112921201","properties":{"name":"Le Parc 2","id":"node/13112921201","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9044502,-8.109552]}},{"type":"Feature","id":"node/13112921202","properties":{"name":"Praça em frente a COMPESA","id":"node/13112921202","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892814,-8.07969]}},{"type":"Feature","id":"node/13112921203","properties":{"name":"Praça de Joana Bezerra","id":"node/13112921203","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.896521,-8.070371]}},{"type":"Feature","id":"node/13112921204","properties":{"name":"Pontilhão da Paissandu","id":"node/13112921204","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.897482,-8.062248]}},{"type":"Feature","id":"node/13112921205","properties":{"name":"Praça do Derby","id":"node/13112921205","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.898268,-8.056429]}},{"type":"Feature","id":"node/13112921206","properties":{"name":"Catamaran","id":"node/13112921206","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880251,-8.072869]}},{"type":"Feature","id":"node/13112921207","properties":{"name":"Le Parc","id":"node/13112921207","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9037635,-8.1111506]}},{"type":"Feature","id":"node/13112921208","properties":{"name":"Rua da Carioca","id":"node/13112921208","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876891,-8.067243]}},{"type":"Feature","id":"node/13112921209","properties":{"name":"Forte das Cinco Pontas","id":"node/13112921209","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880826,-8.071375]}},{"type":"Feature","id":"node/13112921210","properties":{"name":"Praça dos Guerreiros","id":"node/13112921210","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.950094,-8.115151]}},{"type":"Feature","id":"node/13112921211","properties":{"name":"Praça da UR5","id":"node/13112921211","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.947362,-8.130905]}},{"type":"Feature","id":"node/13112921212","properties":{"name":"Campo Armador Antônio Moreno","id":"node/13112921212","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.886124,-8.042649]}},{"type":"Feature","id":"node/13112921213","properties":{"name":"Capitão","id":"node/13112921213","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877948,-8.054155]}},{"type":"Feature","id":"node/13112921214","properties":{"name":"Museu Forte do Brum","id":"node/13112921214","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.870974,-8.053399]}},{"type":"Feature","id":"node/13112921215","properties":{"name":"Bacurau - Galo","id":"node/13112921215","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877703,-8.054352]}},{"type":"Feature","id":"node/13112921216","properties":{"name":"Rua da Palma","id":"node/13112921216","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880844,-8.065571]}},{"type":"Feature","id":"node/13112921217","properties":{"name":"Igreja de Nossa Senhora das Fronteiras","id":"node/13112921217","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89641,-8.058486]}},{"type":"Feature","id":"node/13112921218","properties":{"name":"Rua Imperatriz Tereza Cristina (SECR)","id":"node/13112921218","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883058,-8.063276]}},{"type":"Feature","id":"node/13112921219","properties":{"name":"Quadra da Praça Joana Bezerra","id":"node/13112921219","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.897201,-8.069119]}},{"type":"Feature","id":"node/13112921220","properties":{"name":"Praça na Rua Velha","id":"node/13112921220","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.885324,-8.064536]}},{"type":"Feature","id":"node/13112921221","properties":{"name":"Praça na Rua Ibiporã","id":"node/13112921221","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.899747,-8.072545]}},{"type":"Feature","id":"node/13112921222","properties":{"name":"Praça Jenner de Souza","id":"node/13112921222","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.900287,-8.054847]}},{"type":"Feature","id":"node/13112921223","properties":{"name":"Praça Dom Bosco 02","id":"node/13112921223","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.893497,-8.063156]}},{"type":"Feature","id":"node/13112921224","properties":{"name":"Praça Cássia Kiss de Lima","id":"node/13112921224","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.900274,-8.07002]}},{"type":"Feature","id":"node/13112921225","properties":{"name":"Praça na Rua Epaminondas de Melo 02","id":"node/13112921225","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.898203,-8.060148]}},{"type":"Feature","id":"node/13112921226","properties":{"name":"Escola Municipal Novo Mangue","id":"node/13112921226","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.903516,-8.075248]}},{"type":"Feature","id":"node/13112921227","properties":{"name":"Rua dos Amores","id":"node/13112921227","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.872742,-8.061931]}},{"type":"Feature","id":"node/13112921228","properties":{"name":"Rua do Bom Jesus","id":"node/13112921228","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.871469,-8.062339]}},{"type":"Feature","id":"node/13112921229","properties":{"name":"Quadra de Futsal da Aurora","id":"node/13112921229","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876785,-8.054688]}},{"type":"Feature","id":"node/13112921230","properties":{"name":"Praça Aurora","id":"node/13112921230","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.874193,-8.050858]}},{"type":"Feature","id":"node/13112921231","properties":{"name":"Quadra Kássio Rinaldo","id":"node/13112921231","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881934,-8.041654]}},{"type":"Feature","id":"node/13112921232","properties":{"name":"Praça Agamenon (Ilha do Joaneiro)","id":"node/13112921232","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881279,-8.04036]}},{"type":"Feature","id":"node/13112921233","properties":{"name":"Ministério do Trabalho e Emprego (MTE)","id":"node/13112921233","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.88729,-8.043009]}},{"type":"Feature","id":"node/13112921234","properties":{"name":"Igreja de Nossa Sra do Rosário dos Pretos","id":"node/13112921234","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877865,-8.065145]}},{"type":"Feature","id":"node/13112921235","properties":{"name":"Igreja de São Gonçalo","id":"node/13112921235","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.889557,-8.064563]}},{"type":"Feature","id":"node/13112921236","properties":{"name":"CEHAB","id":"node/13112921236","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879605,-8.038264]}},{"type":"Feature","id":"node/13112921237","properties":{"name":"Casa da Cultura","id":"node/13112921237","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882639,-8.066281]}},{"type":"Feature","id":"node/13112921238","properties":{"name":"Campo do Onze","id":"node/13112921238","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.878633,-8.040533]}},{"type":"Feature","id":"node/13112921239","properties":{"name":"Agência Caixa (Rua Dr. Leopoldo Lins)","id":"node/13112921239","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89253,-8.048825]}},{"type":"Feature","id":"node/13112921240","properties":{"name":"Praça Otília","id":"node/13112921240","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.893086,-8.049572]}},{"type":"Feature","id":"node/13112921241","properties":{"name":"Praça Numa Pompilho","id":"node/13112921241","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883053,-8.047908]}},{"type":"Feature","id":"node/13112921242","properties":{"name":"Praça do Campo Santo (UTEC)","id":"node/13112921242","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882972,-8.050882]}},{"type":"Feature","id":"node/13112921243","properties":{"name":"INSS (Rua dos Palmares)","id":"node/13112921243","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.884051,-8.052544]}},{"type":"Feature","id":"node/13112921244","properties":{"name":"Rua João Fernandes Vieira","id":"node/13112921244","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.890047,-8.056195]}},{"type":"Feature","id":"node/13112921245","properties":{"name":"Liceu/Nóbrega","id":"node/13112921245","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887995,-8.055856]}},{"type":"Feature","id":"node/13112921246","properties":{"name":"Rua Corredor do Bispo","id":"node/13112921246","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887004,-8.057618]}},{"type":"Feature","id":"node/13112921247","properties":{"name":"Rua Duque de Caxias","id":"node/13112921247","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877461,-8.064372]}},{"type":"Feature","id":"node/13112921248","properties":{"name":"Praça Nelson Ferreira","id":"node/13112921248","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882917,-8.052985]}},{"type":"Feature","id":"node/13112921249","properties":{"name":"Praça Sérgio Loreto","id":"node/13112921249","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.884976,-8.072245]}},{"type":"Feature","id":"node/13112921250","properties":{"name":"ETE Almirante Soares Dutra","id":"node/13112921250","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.875797,-8.047268]}},{"type":"Feature","id":"node/13112921251","properties":{"name":"Av. Dantas Barreto (Magno Equipamentos)","id":"node/13112921251","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882247,-8.070524]}},{"type":"Feature","id":"node/13112921252","properties":{"name":"Av. Dantas Barreto (Armarinho Mundial)","id":"node/13112921252","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881156,-8.069169]}},{"type":"Feature","id":"node/13112921253","properties":{"name":"Travessa do Arsenal da Guerra","id":"node/13112921253","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876882,-8.066582]}},{"type":"Feature","id":"node/13112921254","properties":{"name":"Teatro Santa Izabel","id":"node/13112921254","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.878125,-8.060864]}},{"type":"Feature","id":"node/13112921255","properties":{"name":"Rua Sete de Setembro","id":"node/13112921255","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883783,-8.062773]}},{"type":"Feature","id":"node/13112921256","properties":{"name":"Rua Matias de Albuquerque","id":"node/13112921256","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.878953,-8.063946]}},{"type":"Feature","id":"node/13112921257","properties":{"name":"Rua Imperatriz Tereza Cristina (UTEC)","id":"node/13112921257","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.884272,-8.062917]}},{"type":"Feature","id":"node/13112921258","properties":{"name":"Cais do Sertão 02","id":"node/13112921258","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.869912,-8.0597]}},{"type":"Feature","id":"node/13112921259","properties":{"name":"Praça Prof. Agamenon Magalhães","id":"node/13112921259","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882224,-8.04375]}},{"type":"Feature","id":"node/13112921260","properties":{"name":"Praça Onze de Junho","id":"node/13112921260","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.874673,-8.044687]}},{"type":"Feature","id":"node/13112921261","properties":{"name":"Praça do Pilar","id":"node/13112921261","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.869899,-8.056903]}},{"type":"Feature","id":"node/13112921262","properties":{"name":"Praça Ascenso Ferreira","id":"node/13112921262","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.873707,-8.06248]}},{"type":"Feature","id":"node/13112921263","properties":{"name":"Praça Dezessete","id":"node/13112921263","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876884,-8.065236]}},{"type":"Feature","id":"node/13112921264","properties":{"name":"Praça 13 de Maio","id":"node/13112921264","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883036,-8.057172]}},{"type":"Feature","id":"node/13112921265","properties":{"name":"Mercado Público Santo Amaro","id":"node/13112921265","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876554,-8.046823]}},{"type":"Feature","id":"node/13112921266","properties":{"name":"Escola Sizenando Silveira","id":"node/13112921266","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881862,-8.054547]}},{"type":"Feature","id":"node/13112921267","properties":{"name":"DER","id":"node/13112921267","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.875872,-8.045735]}},{"type":"Feature","id":"node/13112921268","properties":{"name":"Centro POP","id":"node/13112921268","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876503,-8.064019]}},{"type":"Feature","id":"node/13112921269","properties":{"name":"Praça VDC","id":"node/13112921269","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932366,-8.094894]}},{"type":"Feature","id":"node/13112921270","properties":{"name":"Praça do Sena","id":"node/13112921270","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.933449,-8.095948]}},{"type":"Feature","id":"node/13112921271","properties":{"name":"Praça Ministro João Gonçalves de Souza","id":"node/13112921271","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.943445,-8.047958]}},{"type":"Feature","id":"node/13112921272","properties":{"name":"Praça Bom Partor","id":"node/13112921272","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.939783,-8.049256]}},{"type":"Feature","id":"node/13112921273","properties":{"name":"Praça Brasilit (Praça do Caxito - Várzea)","id":"node/13112921273","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.950275,-8.04175]}},{"type":"Feature","id":"node/13112921274","properties":{"name":"Estação Santa Luzia","id":"node/13112921274","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.929929,-8.084265]}},{"type":"Feature","id":"node/13112921275","properties":{"name":"Estação Ipiranga","id":"node/13112921275","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913458,-8.077304]}},{"type":"Feature","id":"node/13112921276","properties":{"name":"Estação Imbiribeira","id":"node/13112921276","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907617,-8.090517]}},{"type":"Feature","id":"node/13112921277","properties":{"name":"Praça Oswaldo Cruz","id":"node/13112921277","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.891262,-8.05476]}},{"type":"Feature","id":"node/13112921278","properties":{"name":"Praça General Carlos Pinto (Tacaruna)","id":"node/13112921278","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.871947,-8.039867]}},{"type":"Feature","id":"node/13112921279","properties":{"name":"Praça Souto Filho","id":"node/13112921279","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.902955,-8.036143]}},{"type":"Feature","id":"node/13112921280","properties":{"name":"Praça Parque Amorim","id":"node/13112921280","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894945,-8.051925]}},{"type":"Feature","id":"node/13112921281","properties":{"name":"Vila do Vintém","id":"node/13112921281","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.910353,-8.038023]}},{"type":"Feature","id":"node/13112921282","properties":{"name":"Creche Escola Dep. Alcides Teixeira","id":"node/13112921282","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882806,-8.043896]}},{"type":"Feature","id":"node/13112921283","properties":{"name":"Terminal Engenho do Meio","id":"node/13112921283","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.945896,-8.058707]}},{"type":"Feature","id":"node/13112921284","properties":{"name":"Academia da Cidade Polo Heróis da Restauração","id":"node/13112921284","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.935715,-8.097174]}},{"type":"Feature","id":"node/13112921285","properties":{"name":"SESC de Santo Amaro","id":"node/13112921285","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882671,-8.049417]}},{"type":"Feature","id":"node/13112921286","properties":{"name":"COMPAZ Dom Helder Câmara","id":"node/13112921286","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.89552,-8.073515]}},{"type":"Feature","id":"node/13112921287","properties":{"name":"COMPAZ Dom Helder Câmara","id":"node/13112921287","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.895386,-8.073605]}},{"type":"Feature","id":"node/13112921288","properties":{"name":"Academia da Cidade Polo Jordão","id":"node/13112921288","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.936864,-8.136465]}},{"type":"Feature","id":"node/13112921289","properties":{"name":"Praça Jordão Alto","id":"node/13112921289","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.941472,-8.134298]}},{"type":"Feature","id":"node/13112921290","properties":{"name":"Academia Recife - Polo praça da Várzea","id":"node/13112921290","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.959592,-8.049448]}},{"type":"Feature","id":"node/13112921291","properties":{"name":"Praça Jacarezinho","id":"node/13112921291","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882935,-8.018425]}},{"type":"Feature","id":"node/13112921292","properties":{"name":"Prefeitura do Recife","id":"node/13112921292","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.872014,-8.054396]}},{"type":"Feature","id":"node/13112921293","properties":{"name":"Praça Caxito (san martin)","id":"node/13112921293","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931499,-8.075173]}},{"type":"Feature","id":"node/13112921294","properties":{"name":"Orla de Brasília Teimosa 03","id":"node/13112921294","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.878013,-8.0849]}},{"type":"Feature","id":"node/13112921295","properties":{"name":"Orla de Brasília Teimosa 02","id":"node/13112921295","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879131,-8.087805]}},{"type":"Feature","id":"node/13112921296","properties":{"name":"Orla de Brasília Teimosa 01","id":"node/13112921296","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877466,-8.082998]}},{"type":"Feature","id":"node/13112921297","properties":{"name":"Largo da Paz","id":"node/13112921297","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906305,-8.08061]}},{"type":"Feature","id":"node/13112921298","properties":{"name":"Praça Onildo Almeida","id":"node/13112921298","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879427,-8.018555]}},{"type":"Feature","id":"node/13112921299","properties":{"name":"Praça Capiba - Cajueiro","id":"node/13112921299","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.885232,-8.008985]}},{"type":"Feature","id":"node/13112921300","properties":{"name":"Praça Mago Jefferson","id":"node/13112921300","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879546,-8.021061]}},{"type":"Feature","id":"node/13112921301","properties":{"name":"Praça do Sebo","id":"node/13112921301","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.878815,-8.063005]}},{"type":"Feature","id":"node/13112921302","properties":{"name":"Rua do Livramento","id":"node/13112921302","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877726,-8.066597]}},{"type":"Feature","id":"node/13112921303","properties":{"name":"Academia da Cidade Polo Praça do Salgueiro","id":"node/13112921303","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.938078,-8.042365]}},{"type":"Feature","id":"node/13112921304","properties":{"name":"PROCAPE","id":"node/13112921304","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887586,-8.049569]}},{"type":"Feature","id":"node/13112921305","properties":{"name":"Lagoa do Araçá","id":"node/13112921305","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.916198,-8.092784]}},{"type":"Feature","id":"node/13112921306","properties":{"name":"Praça Jarbas Pernambucano","id":"node/13112921306","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883655,-8.011007]}},{"type":"Feature","id":"node/13112921307","properties":{"name":"Praça Santos Dumont","id":"node/13112921307","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894812,-8.030564]}},{"type":"Feature","id":"node/13112921308","properties":{"name":"Instituto Capibaribe","id":"node/13112921308","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.901771,-8.050326]}},{"type":"Feature","id":"node/13112921309","properties":{"name":"Sítio da Trindade","id":"node/13112921309","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.912128,-8.029036]}},{"type":"Feature","id":"node/13112921310","properties":{"name":"Largo Dom Luiz","id":"node/13112921310","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.917293,-8.02077]}},{"type":"Feature","id":"node/13112921311","properties":{"name":"Academia da Cidade Polo Lavadeiras 02","id":"node/13112921311","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.937115,-8.094025]}},{"type":"Feature","id":"node/13112921312","properties":{"name":"Academia Recife - Polo IPSEP","id":"node/13112921312","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.918908,-8.116744]}},{"type":"Feature","id":"node/13112921313","properties":{"name":"Aurora 01","id":"node/13112921313","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879225,-8.05854]}},{"type":"Feature","id":"node/13112921314","properties":{"name":"Academia da Cidade Polo Vila Um Por Todos","id":"node/13112921314","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.922394,-8.010338]}},{"type":"Feature","id":"node/13112921315","properties":{"name":"Campo do Quinze","id":"node/13112921315","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931329,-8.058297]}},{"type":"Feature","id":"node/13112921316","properties":{"name":"Parque Arraial Novo do Bom Jesus","id":"node/13112921316","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.930798,-8.057218]}},{"type":"Feature","id":"node/13112921317","properties":{"name":"Creche Municipal Menino Jesus da Bomba Grande","id":"node/13112921317","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927898,-8.041813]}},{"type":"Feature","id":"node/13112921318","properties":{"name":"Academia da Cidade Polo Lagoa do Araçá","id":"node/13112921318","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913907,-8.096051]}},{"type":"Feature","id":"node/13112921319","properties":{"name":"Escola Municipal Engenheiro Umberto Gondim","id":"node/13112921319","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.884016,-8.084774]}},{"type":"Feature","id":"node/13112921320","properties":{"name":"Colégio Apoio Recife","id":"node/13112921320","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913769,-8.029909]}},{"type":"Feature","id":"node/13112921321","properties":{"name":"Sudene / Lindolfo Color","id":"node/13112921321","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.944924,-8.051418]}},{"type":"Feature","id":"node/13112921322","properties":{"name":"Academia da Cidade - Polo San Martin","id":"node/13112921322","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927623,-8.067027]}},{"type":"Feature","id":"node/13112921323","properties":{"name":"Joana Bezerra","id":"node/13112921323","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.896131,-8.072979]}},{"type":"Feature","id":"node/13112921324","properties":{"name":"Morro da Conceição","id":"node/13112921324","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.915053,-8.019519]}},{"type":"Feature","id":"node/13112921325","properties":{"name":"Encruzilhada / Av. Norte","id":"node/13112921325","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.891961,-8.038346]}},{"type":"Feature","id":"node/13112921326","properties":{"name":"Frei Cassimiro 01","id":"node/13112921326","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881036,-8.04607]}},{"type":"Feature","id":"node/13112921327","properties":{"name":"Praça Melvin Jones","id":"node/13112921327","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.907253,-8.032921]}},{"type":"Feature","id":"node/13112921328","properties":{"name":"Praça do Trabalho","id":"node/13112921328","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.914533,-8.023179]}},{"type":"Feature","id":"node/13112921329","properties":{"name":"Praça de San Martin","id":"node/13112921329","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.928756,-8.070869]}},{"type":"Feature","id":"node/13112921330","properties":{"name":"Praça Doutor Fernando Figueira","id":"node/13112921330","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.893379,-8.065171]}},{"type":"Feature","id":"node/13112921331","properties":{"name":"Antônio Falcão","id":"node/13112921331","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892993,-8.116877]}},{"type":"Feature","id":"node/13112921332","properties":{"name":"Academia da Cidade Polo Praça do Poeta","id":"node/13112921332","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.950311,-8.034472]}},{"type":"Feature","id":"node/13112921333","properties":{"name":"IFPE","id":"node/13112921333","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.949389,-8.058693]}},{"type":"Feature","id":"node/13112921334","properties":{"name":"Academia Recife - Polo Engenho do Meio","id":"node/13112921334","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.943379,-8.057911]}},{"type":"Feature","id":"node/13112921335","properties":{"name":"Geraldão","id":"node/13112921335","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.912957,-8.116765]}},{"type":"Feature","id":"node/13112921336","properties":{"name":"Largo da Encruzilhada","id":"node/13112921336","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.891521,-8.037412]}},{"type":"Feature","id":"node/13112921337","properties":{"name":"Academia Recife - Polo Lagoa do Araçá","id":"node/13112921337","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.915446,-8.096438]}},{"type":"Feature","id":"node/13112921338","properties":{"name":"Academia da Cidade Polo Roda de Fogo","id":"node/13112921338","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.937166,-8.057904]}},{"type":"Feature","id":"node/13112921339","properties":{"name":"Academia Recife - Polo Barro","id":"node/13112921339","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.940371,-8.089444]}},{"type":"Feature","id":"node/13112921340","properties":{"name":"Praça do ABC 02","id":"node/13112921340","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.918629,-8.073318]}},{"type":"Feature","id":"node/13112921341","properties":{"name":"Academia da Cidade - Polo Cajueiro","id":"node/13112921341","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.883104,-8.013948]}},{"type":"Feature","id":"node/13112921342","properties":{"name":"Academia Recife - Polo Casa Amarela 02","id":"node/13112921342","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.915835,-8.022155]}},{"type":"Feature","id":"node/13112921343","properties":{"name":"Academia Recife - Polo Água Fria","id":"node/13112921343","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.888924,-8.009416]}},{"type":"Feature","id":"node/13112921344","properties":{"name":"Rua da Palma 02","id":"node/13112921344","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880346,-8.064066]}},{"type":"Feature","id":"node/13112921345","properties":{"name":"Academia Recife e da Cidade - Polo Coque","id":"node/13112921345","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.897055,-8.069898]}},{"type":"Feature","id":"node/13112921346","properties":{"name":"Academia da Cidade - Polo Santo Amaro","id":"node/13112921346","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877564,-8.039529]}},{"type":"Feature","id":"node/13112921347","properties":{"name":"Academia Recife - Polo Santo Amaro","id":"node/13112921347","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.888056,-8.044548]}},{"type":"Feature","id":"node/13112921348","properties":{"name":"USF Alto do Capitão/ Academia da Cidade 02","id":"node/13112921348","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.914073,-7.999891]}},{"type":"Feature","id":"node/13112921349","properties":{"name":"Praça do Hipódromo/Academia Recife","id":"node/13112921349","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.886958,-8.031969]}},{"type":"Feature","id":"node/13112921350","properties":{"name":"Pátio Santa Cruz","id":"node/13112921350","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887995,-8.062182]}},{"type":"Feature","id":"node/13112921351","properties":{"name":"Parque da Macaxeira","id":"node/13112921351","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.932187,-8.016489]}},{"type":"Feature","id":"node/13112921352","properties":{"name":"Praça da Torre","id":"node/13112921352","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.913747,-8.046486]}},{"type":"Feature","id":"node/13112921353","properties":{"name":"Canal do Cavouco 01","id":"node/13112921353","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931581,-8.04531]}},{"type":"Feature","id":"node/13112921354","properties":{"name":"Praça de Parnamirim","id":"node/13112921354","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.910138,-8.033238]}},{"type":"Feature","id":"node/13112921355","properties":{"name":"UPE/Reitoria","id":"node/13112921355","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.886373,-8.043641]}},{"type":"Feature","id":"node/13112921356","properties":{"name":"Teatro do Parque 02","id":"node/13112921356","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.884729,-8.062083]}},{"type":"Feature","id":"node/13112921357","properties":{"name":"Avenida Guararapes 03 (Canteiro)","id":"node/13112921357","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880218,-8.06284]}},{"type":"Feature","id":"node/13112921358","properties":{"name":"Avenida Guararapes 02 (Correios)","id":"node/13112921358","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880231,-8.062696]}},{"type":"Feature","id":"node/13112921359","properties":{"name":"Upinha CHIÉ","id":"node/13112921359","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.87419,-8.037299]}},{"type":"Feature","id":"node/13112921360","properties":{"name":"Soledade","id":"node/13112921360","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.889887,-8.057979]}},{"type":"Feature","id":"node/13112921361","properties":{"name":"Praça do Derby","id":"node/13112921361","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.899204,-8.055936]}},{"type":"Feature","id":"node/13112921362","properties":{"name":"Praça do Rosarinho","id":"node/13112921362","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.896634,-8.03307]}},{"type":"Feature","id":"node/13112921363","properties":{"name":"Academia da Cidade de Campo Grande","id":"node/13112921363","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.875846,-8.03779]}},{"type":"Feature","id":"node/13112921364","properties":{"name":"Praça do Engenho do Meio","id":"node/13112921364","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.942139,-8.057373]}},{"type":"Feature","id":"node/13112921365","properties":{"name":"Praça de Jardim São Paulo 01","id":"node/13112921365","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.938746,-8.081651]}},{"type":"Feature","id":"node/13112921366","properties":{"name":"EREM João Bezerra","id":"node/13112921366","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882871,-8.085991]}},{"type":"Feature","id":"node/13112921367","properties":{"name":"Redesenho - Rua das Oficinas","id":"node/13112921367","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.884067,-8.084801]}},{"type":"Feature","id":"node/13112921368","properties":{"name":"Sede CTTU","id":"node/13112921368","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879766,-8.05152]}},{"type":"Feature","id":"node/13112921369","properties":{"name":"Parque 13 de Maio","id":"node/13112921369","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881962,-8.056721]}},{"type":"Feature","id":"node/13112921370","properties":{"name":"Cais do Imperador","id":"node/13112921370","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876178,-8.065162]}},{"type":"Feature","id":"node/13112921371","properties":{"name":"Fórum Desembargador Rodolfo Aureliano","id":"node/13112921371","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894387,-8.071099]}},{"type":"Feature","id":"node/13112921372","properties":{"name":"Centro Esportivo Santos Dumont","id":"node/13112921372","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.908555,-8.131018]}},{"type":"Feature","id":"node/13112921373","properties":{"name":"COMPAZ Escritor Ariano Suassuna","id":"node/13112921373","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.92586,-8.059966]}},{"type":"Feature","id":"node/13112921374","properties":{"name":"Rua da Aurora","id":"node/13112921374","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877185,-8.055309]}},{"type":"Feature","id":"node/13112921375","properties":{"name":"TI Getúlio Vargas 01","id":"node/13112921375","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.921197,-8.050516]}},{"type":"Feature","id":"node/13112921376","properties":{"name":"Academia Recife - Praça do ABC","id":"node/13112921376","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.91878,-8.07308]}},{"type":"Feature","id":"node/13112921377","properties":{"name":"Jardim Botânico do Recife","id":"node/13112921377","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.966685,-8.076034]}},{"type":"Feature","id":"node/13112921378","properties":{"name":"Mercado da Encruzilhada","id":"node/13112921378","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892143,-8.037227]}},{"type":"Feature","id":"node/13112921379","properties":{"name":"Parque da Jaqueira","id":"node/13112921379","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.90451,-8.036719]}},{"type":"Feature","id":"node/13112921380","properties":{"name":"Compaz Governador Eduardo Campos","id":"node/13112921380","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.90274,-8.010439]}},{"type":"Feature","id":"node/13112921381","properties":{"name":"Praça Barão de Caiara","id":"node/13112921381","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.911451,-8.03877]}},{"type":"Feature","id":"node/13112921382","properties":{"name":"Parque da Macaxeira","id":"node/13112921382","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.9324,-8.015638]}},{"type":"Feature","id":"node/13112921383","properties":{"name":"ABRE","id":"node/13112921383","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892448,-8.056592]}},{"type":"Feature","id":"node/13112921384","properties":{"name":"Fafire","id":"node/13112921384","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.889372,-8.05801]}},{"type":"Feature","id":"node/13112921385","properties":{"name":"Shopping Boa Vista","id":"node/13112921385","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887418,-8.059141]}},{"type":"Feature","id":"node/13112921386","properties":{"name":"Avenida Conde da Boa Vista","id":"node/13112921386","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882883,-8.061331]}},{"type":"Feature","id":"node/13112921387","properties":{"name":"Avenida Conde da Boa Vista","id":"node/13112921387","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881751,-8.061865]}},{"type":"Feature","id":"node/13112921388","properties":{"name":"Parque 13 de Maio","id":"node/13112921388","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882549,-8.056494]}},{"type":"Feature","id":"node/13112921389","properties":{"name":"Senai","id":"node/13112921389","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.877902,-8.046954]}},{"type":"Feature","id":"node/13112921390","properties":{"name":"Mercado Madalena","id":"node/13112921390","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.908875,-8.052561]}},{"type":"Feature","id":"node/13112921391","properties":{"name":"Rua Gen. José Semeão","id":"node/13112921391","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.886579,-8.055233]}},{"type":"Feature","id":"node/13112921392","properties":{"name":"Paço Alfândega","id":"node/13112921392","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.873615,-8.065165]}},{"type":"Feature","id":"node/13112921393","properties":{"name":"Parque Caiara","id":"node/13112921393","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.928387,-8.03861]}},{"type":"Feature","id":"node/13112921394","properties":{"name":"Mercado do Cordeiro","id":"node/13112921394","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.921254,-8.051709]}},{"type":"Feature","id":"node/13112921395","properties":{"name":"Mercado de Água Fria / Beberibe","id":"node/13112921395","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894536,-8.019887]}},{"type":"Feature","id":"node/13112921396","properties":{"id":"node/13112921396","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.887297,-8.105262]}},{"type":"Feature","id":"node/13112921397","properties":{"name":"Orla do Pina - JCPM","id":"node/13112921397","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881748,-8.090842]}},{"type":"Feature","id":"node/13112921398","properties":{"name":"Parque Dona Lindú 01","id":"node/13112921398","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.903987,-8.140958]}},{"type":"Feature","id":"node/13112921399","properties":{"name":"Rua da Palma","id":"node/13112921399","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880214,-8.063604]}},{"type":"Feature","id":"node/13112921400","properties":{"name":"Pátio do Carmo","id":"node/13112921400","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.879381,-8.066437]}},{"type":"Feature","id":"node/13112921401","properties":{"name":"Praça Noel Rodrigues","id":"node/13112921401","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.927322,-8.066792]}},{"type":"Feature","id":"node/13112921402","properties":{"name":"Praça da Convenção","id":"node/13112921402","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.897725,-8.002664]}},{"type":"Feature","id":"node/13112921403","properties":{"name":"Mercado da Boa Vista","id":"node/13112921403","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.888635,-8.063164]}},{"type":"Feature","id":"node/13112921404","properties":{"name":"Praça Mauriceia","id":"node/13112921404","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.916501,-8.108098]}},{"type":"Feature","id":"node/13112921405","properties":{"name":"Mercado de Afogados","id":"node/13112921405","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.906912,-8.078229]}},{"type":"Feature","id":"node/13112921406","properties":{"name":"Praça da Várzea","id":"node/13112921406","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.959687,-8.048768]}},{"type":"Feature","id":"node/13112921407","properties":{"name":"Escola Municipal Arraial Novo do Bom Jesus","id":"node/13112921407","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.931587,-8.058957]}},{"type":"Feature","id":"node/13112921408","properties":{"name":"Orla de Brasília Teimosa","id":"node/13112921408","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.876762,-8.081022]}},{"type":"Feature","id":"node/13112921409","properties":{"name":"Avenida Beberibe","id":"node/13112921409","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.894086,-8.019307]}},{"type":"Feature","id":"node/13112921410","properties":{"name":"Escola Waldemar de Oliveira","id":"node/13112921410","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.880217,-8.054963]}},{"type":"Feature","id":"node/13112921411","properties":{"name":"Praça Eça de Queiroz","id":"node/13112921411","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.90665,-8.050904]}},{"type":"Feature","id":"node/13112921412","properties":{"name":"Mercado da Madalena","id":"node/13112921412","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.90885,-8.052375]}},{"type":"Feature","id":"node/13112921413","properties":{"name":"Largo de Casa Amarela","id":"node/13112921413","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.918677,-8.026514]}},{"type":"Feature","id":"node/13112921414","properties":{"name":"Mercado de Casa Amarela","id":"node/13112921414","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.917861,-8.026468]}},{"type":"Feature","id":"node/13112921415","properties":{"name":"Rua Dona Ana Xavier","id":"node/13112921415","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.917574,-8.027073]}},{"type":"Feature","id":"node/13112921416","properties":{"name":"Mercado da Encruzilhada","id":"node/13112921416","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.892384,-8.03739]}},{"type":"Feature","id":"node/13112921417","properties":{"name":"Igreja da Santa Cruz","id":"node/13112921417","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.888082,-8.062322]}},{"type":"Feature","id":"node/13112921418","properties":{"name":"Cinema São Luiz","id":"node/13112921418","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882042,-8.06229]}},{"type":"Feature","id":"node/13112921419","properties":{"name":"Parque Treze de Maio","id":"node/13112921419","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881081,-8.058568]}},{"type":"Feature","id":"node/13112921420","properties":{"name":"Praça Visconde de Mauá","id":"node/13112921420","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.878239,-8.056185]}},{"type":"Feature","id":"node/13112921421","properties":{"name":"Praça Visconde de Mauá","id":"node/13112921421","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.882865,-8.066729]}},{"type":"Feature","id":"node/13112921422","properties":{"name":"Praça Joaquim Nabuco","id":"node/13112921422","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.881357,-8.064471]}},{"type":"Feature","id":"node/13112921423","properties":{"name":"Praça da Independência","id":"node/13112921423","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.878392,-8.064233]}},{"type":"Feature","id":"node/13112921424","properties":{"name":"Avenida Rio Branco","id":"node/13112921424","type":"Bicicletários"},"geometry":{"type":"Point","coordinates":[-34.872747,-8.062669]}}]} \ No newline at end of file diff --git a/apps/bicycle-racks/src/db/index.ts b/apps/bicycle-racks/src/db/index.ts new file mode 100644 index 0000000..e2c07e7 --- /dev/null +++ b/apps/bicycle-racks/src/db/index.ts @@ -0,0 +1,13 @@ +import "dotenv/config"; +import { drizzle } from "drizzle-orm/node-postgres"; +import * as schema from "./schema.js"; + +export const db = drizzle({ + connection: { + connectionString: process.env.DATABASE_URL, + ssl: { + ca: process.env.DATABASE_SSL_CA, + }, + }, + schema, +}); diff --git a/apps/bicycle-racks/src/db/schema.ts b/apps/bicycle-racks/src/db/schema.ts new file mode 100644 index 0000000..ed7bd0f --- /dev/null +++ b/apps/bicycle-racks/src/db/schema.ts @@ -0,0 +1,2 @@ +// Re-export everything from the shared database schema +export * from "@atlas/database/schemas/bicycle-racks"; diff --git a/apps/bicycle-racks/src/env.ts b/apps/bicycle-racks/src/env.ts new file mode 100644 index 0000000..d887cbe --- /dev/null +++ b/apps/bicycle-racks/src/env.ts @@ -0,0 +1,22 @@ +import { z } from "zod"; + +const EnvSchema = z.object({ + NODE_ENV: z.string().default("development"), + LOG_LEVEL: z + .enum(["fatal", "error", "warn", "info", "debug", "trace"]) + .default("info"), + PORT: z.coerce.number().default(3005), + DATABASE_URL: z.string().optional(), + DB_HOST: z.string().default("localhost"), + DB_PORT: z.coerce.number().default(5432), + DB_USER: z.string().default("postgres"), + DB_PASSWORD: z.string().default("postgres"), + DB_NAME: z.string().default("atlas_dev"), + DB_SSL: z.string().default("false"), +}); + +export type Env = z.infer; + +const env = EnvSchema.parse(process.env); + +export default env; diff --git a/apps/bicycle-racks/src/generate-openapi.ts b/apps/bicycle-racks/src/generate-openapi.ts new file mode 100644 index 0000000..9e55550 --- /dev/null +++ b/apps/bicycle-racks/src/generate-openapi.ts @@ -0,0 +1,55 @@ +import "dotenv/config"; +import { promises as fs } from "node:fs"; +import * as path from "node:path"; +import { fileURLToPath } from "node:url"; +import app from "./app.js"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +async function generateOpenAPISpec() { + try { + const openAPIDoc = app.getOpenAPIDocument({ + openapi: "3.1.0", + info: { + title: "BicycleRacks API", + version: "1.0.0", + description: "API service for bicycle_racks", + contact: { + name: "Atlas Team", + url: "https://github.com/Ameciclo/atlas", + }, + }, + servers: [ + { + url: `http://localhost:${process.env.PORT || "3005"}`, + description: "Local development server", + }, + { + url: "https://api.atlas.example.com", + description: "Production server", + }, + ], + tags: [ + { + name: "Example", + description: "Example endpoints", + }, + { + name: "System", + description: "System endpoints (health check, etc.)", + }, + ], + }); + + const outputPath = path.join(__dirname, "..", "openapi.json"); + await fs.writeFile(outputPath, JSON.stringify(openAPIDoc, null, 2)); + + console.log(`✓ OpenAPI spec generated at ${outputPath}`); + } catch (error) { + console.error("Failed to generate OpenAPI spec:", error); + process.exit(1); + } +} + +generateOpenAPISpec(); diff --git a/apps/bicycle-racks/src/index.ts b/apps/bicycle-racks/src/index.ts new file mode 100644 index 0000000..b4fe3ef --- /dev/null +++ b/apps/bicycle-racks/src/index.ts @@ -0,0 +1,15 @@ +import { serve } from "@hono/node-server"; +import app from "./app.js"; + +// Get port from environment variable or use 3005 as default +const port = Number.parseInt(process.env.PORT || "3005", 10); + +serve( + { + fetch: app.fetch, + port, + }, + (info) => { + console.log(`Server is running on http://localhost:${info.port}`); + }, +); diff --git a/apps/bicycle-racks/src/lib/constants.ts b/apps/bicycle-racks/src/lib/constants.ts new file mode 100644 index 0000000..fe636be --- /dev/null +++ b/apps/bicycle-racks/src/lib/constants.ts @@ -0,0 +1,16 @@ +import * as HttpStatusPhrases from "stoker/http-status-phrases"; +import { createMessageObjectSchema } from "stoker/openapi/schemas"; + +export const ZOD_ERROR_MESSAGES = { + REQUIRED: "Required", + EXPECTED_NUMBER: "Expected number, received nan", + NO_UPDATES: "No updates provided", +}; + +export const ZOD_ERROR_CODES = { + INVALID_UPDATES: "invalid_updates", +}; + +export const notFoundSchema = createMessageObjectSchema( + HttpStatusPhrases.NOT_FOUND, +); diff --git a/apps/bicycle-racks/src/lib/create-app.ts b/apps/bicycle-racks/src/lib/create-app.ts new file mode 100644 index 0000000..27ef0f2 --- /dev/null +++ b/apps/bicycle-racks/src/lib/create-app.ts @@ -0,0 +1,35 @@ +import { OpenAPIHono } from "@hono/zod-openapi"; +import { cors } from "hono/cors"; +import { notFound, onError, serveEmojiFavicon } from "stoker/middlewares"; +import { defaultHook } from "stoker/openapi"; +import { createPinoLogger } from "../middlewares/pino-logger.js"; + +import type { AppBindings, AppOpenAPI } from "./types.js"; + +export function createRouter() { + return new OpenAPIHono({ + strict: false, + defaultHook, + }); +} + +export default function createApp(): OpenAPIHono { + const app: OpenAPIHono = new OpenAPIHono({ + strict: false, + defaultHook, + }); + + app.use(cors()); + app.use(serveEmojiFavicon("🚀")); + app.use(createPinoLogger()); + app.notFound(notFound); + app.onError(onError); + + return app; +} + +export function createTestApp( + router: AppOpenAPI, +) { + return createApp().route("/", router); +} diff --git a/apps/bicycle-racks/src/lib/types.ts b/apps/bicycle-racks/src/lib/types.ts new file mode 100644 index 0000000..1595c0c --- /dev/null +++ b/apps/bicycle-racks/src/lib/types.ts @@ -0,0 +1,17 @@ +import type { OpenAPIHono, RouteConfig, RouteHandler } from "@hono/zod-openapi"; +import type { Schema } from "hono"; +import type { PinoLogger } from "hono-pino"; + +export interface AppBindings { + Variables: { + logger: PinoLogger; + }; +} + +// biome-ignore lint/complexity/noBannedTypes: OpenAPIHono requires empty object type +export type AppOpenAPI = OpenAPIHono; + +export type AppRouteHandler = RouteHandler< + R, + AppBindings +>; diff --git a/apps/bicycle-racks/src/middlewares/pino-logger.ts b/apps/bicycle-racks/src/middlewares/pino-logger.ts new file mode 100644 index 0000000..cd1095a --- /dev/null +++ b/apps/bicycle-racks/src/middlewares/pino-logger.ts @@ -0,0 +1,20 @@ +import { pinoLogger } from "hono-pino"; +import pino from "pino"; +import type { LoggerOptions } from "pino"; + +export function createPinoLogger() { + const opts: LoggerOptions = { + level: process.env.LOG_LEVEL || "info", + ...(process.env.NODE_ENV === "production" + ? {} + : { + transport: { + target: "pino-pretty", + options: { colorize: true }, + }, + }), + }; + + const loggerInstance = pino(opts); + return pinoLogger({ pino: loggerInstance }); +} diff --git a/apps/bicycle-racks/src/routes/bicycle-racks.handlers.ts b/apps/bicycle-racks/src/routes/bicycle-racks.handlers.ts new file mode 100644 index 0000000..8679e9d --- /dev/null +++ b/apps/bicycle-racks/src/routes/bicycle-racks.handlers.ts @@ -0,0 +1,249 @@ +import { eq, and, sql } from "drizzle-orm"; +import * as HttpStatusCodes from "stoker/http-status-codes"; +import type { AppRouteHandler } from "../lib/types.js"; +import { db } from "../db/index.js"; +import { bicycleRacks, bicycleRackCities } from "@atlas/database/schemas/bicycle-racks"; +import type { + ListRoute, + GetByIdRoute, + NearbyRoute, + StatsRoute, + GeoJsonRoute, +} from "./bicycle-racks.routes.js"; + +export const list: AppRouteHandler = async (c) => { + const { covered, access, capacity_min, capacity_max, operator, city } = + c.req.valid("query"); + + const conditions = []; + if (covered) conditions.push(eq(bicycleRacks.covered, covered)); + if (access) conditions.push(eq(bicycleRacks.access, access)); + if (operator) conditions.push(eq(bicycleRacks.operator, operator)); + if (capacity_min) + conditions.push( + sql`${bicycleRacks.capacity} ~ '^[0-9]+$' AND CAST(${bicycleRacks.capacity} AS INTEGER) >= ${capacity_min}`, + ); + if (capacity_max) + conditions.push( + sql`${bicycleRacks.capacity} ~ '^[0-9]+$' AND CAST(${bicycleRacks.capacity} AS INTEGER) <= ${capacity_max}`, + ); + + if (city) { + conditions.push(eq(bicycleRackCities.city, city)); + const racks = await db + .select() + .from(bicycleRacks) + .innerJoin(bicycleRackCities, eq(bicycleRacks.osm_id, bicycleRackCities.osm_id)) + .where(conditions.length > 0 ? and(...conditions) : undefined); + return c.json(racks.map(item => item.bicycle_racks), HttpStatusCodes.OK); + } else { + const racks = await db + .select() + .from(bicycleRacks) + .where(conditions.length > 0 ? and(...conditions) : undefined); + return c.json(racks, HttpStatusCodes.OK); + } +}; + +export const getById: AppRouteHandler = async (c) => { + const { id } = c.req.valid("param"); + + const rack = await db + .select() + .from(bicycleRacks) + .where(eq(bicycleRacks.id, id)) + .limit(1); + + if (rack.length === 0) { + return c.json( + { message: "Bicycle rack not found" }, + HttpStatusCodes.NOT_FOUND, + ); + } + + return c.json(rack[0], HttpStatusCodes.OK); +}; + +export const nearby: AppRouteHandler = async (c) => { + const { lat, lng, radius, city } = c.req.valid("query"); + + if (city) { + const racks = await db.execute(sql` + SELECT br.*, + ST_Distance( + br.coordinates::geography, + ST_SetSRID(ST_MakePoint(${lng}, ${lat}), 4326)::geography + ) as distance + FROM bicycle_racks br + INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id + WHERE br.coordinates IS NOT NULL + AND brc.city = ${city} + AND ST_Distance( + br.coordinates::geography, + ST_SetSRID(ST_MakePoint(${lng}, ${lat}), 4326)::geography + ) <= ${radius} + ORDER BY distance + `); + return c.json(racks.rows as any, HttpStatusCodes.OK); + } else { + const racks = await db.execute(sql` + SELECT *, + ST_Distance( + coordinates::geography, + ST_SetSRID(ST_MakePoint(${lng}, ${lat}), 4326)::geography + ) as distance + FROM bicycle_racks + WHERE coordinates IS NOT NULL + AND ST_Distance( + coordinates::geography, + ST_SetSRID(ST_MakePoint(${lng}, ${lat}), 4326)::geography + ) <= ${radius} + ORDER BY distance + `); + return c.json(racks.rows as any, HttpStatusCodes.OK); + } +}; + +export const stats: AppRouteHandler = async (c) => { + const { city } = c.req.valid("query"); + + if (city) { + const totalResult = await db.execute( + sql`SELECT COUNT(*) as total FROM bicycle_racks br INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id WHERE brc.city = ${city}`, + ); + const coveredResult = await db.execute( + sql`SELECT COUNT(*) as covered FROM bicycle_racks br INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id WHERE br.covered = 'yes' AND brc.city = ${city}`, + ); + const publicResult = await db.execute( + sql`SELECT COUNT(*) as public_access FROM bicycle_racks br INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id WHERE br.access = 'yes' AND brc.city = ${city}`, + ); + const avgCapacityResult = await db.execute( + sql`SELECT COALESCE(AVG(CAST(br.capacity AS INTEGER)), 0) as avg_capacity FROM bicycle_racks br INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id WHERE br.capacity ~ '^[0-9]+$' AND brc.city = ${city}`, + ); + const operatorStats = await db.execute( + sql`SELECT br.operator, COUNT(*) as count FROM bicycle_racks br INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id WHERE br.operator IS NOT NULL AND brc.city = ${city} GROUP BY br.operator`, + ); + + const byOperator: Record = {}; + for (const row of operatorStats.rows) { + byOperator[row.operator as string] = Number(row.count); + } + + return c.json( + { + total: Number(totalResult.rows[0].total), + covered: Number(coveredResult.rows[0].covered), + public_access: Number(publicResult.rows[0].public_access), + avg_capacity: Number(avgCapacityResult.rows[0].avg_capacity) || 0, + by_operator: byOperator, + }, + HttpStatusCodes.OK, + ); + } else { + const totalResult = await db.execute( + sql`SELECT COUNT(*) as total FROM bicycle_racks`, + ); + const coveredResult = await db.execute( + sql`SELECT COUNT(*) as covered FROM bicycle_racks WHERE covered = 'yes'`, + ); + const publicResult = await db.execute( + sql`SELECT COUNT(*) as public_access FROM bicycle_racks WHERE access = 'yes'`, + ); + const avgCapacityResult = await db.execute( + sql`SELECT COALESCE(AVG(CAST(capacity AS INTEGER)), 0) as avg_capacity FROM bicycle_racks WHERE capacity ~ '^[0-9]+$'`, + ); + const operatorStats = await db.execute( + sql`SELECT operator, COUNT(*) as count FROM bicycle_racks WHERE operator IS NOT NULL GROUP BY operator`, + ); + + const byOperator: Record = {}; + for (const row of operatorStats.rows) { + byOperator[row.operator as string] = Number(row.count); + } + + return c.json( + { + total: Number(totalResult.rows[0].total), + covered: Number(coveredResult.rows[0].covered), + public_access: Number(publicResult.rows[0].public_access), + avg_capacity: Number(avgCapacityResult.rows[0].avg_capacity) || 0, + by_operator: byOperator, + }, + HttpStatusCodes.OK, + ); + } +}; + +export const geojson: AppRouteHandler = async (c) => { + const { city } = c.req.valid("query"); + + if (city) { + const racks = await db.execute(sql` + SELECT br.*, + ST_X(br.coordinates) as longitude, + ST_Y(br.coordinates) as latitude + FROM bicycle_racks br + INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id + WHERE br.coordinates IS NOT NULL + AND brc.city = ${city} + `); + + const features = racks.rows.map((rack) => ({ + type: "Feature" as const, + properties: { + id: rack.id, + name: rack.name, + capacity: rack.capacity, + covered: rack.covered, + access: rack.access, + operator: rack.operator, + bicycle_parking: rack.bicycle_parking, + }, + geometry: { + type: "Point" as const, + coordinates: [Number(rack.longitude), Number(rack.latitude)], + }, + })); + + return c.json( + { + type: "FeatureCollection", + features, + }, + HttpStatusCodes.OK, + ); + } else { + const racks = await db.execute(sql` + SELECT *, + ST_X(coordinates) as longitude, + ST_Y(coordinates) as latitude + FROM bicycle_racks + WHERE coordinates IS NOT NULL + `); + + const features = racks.rows.map((rack) => ({ + type: "Feature" as const, + properties: { + id: rack.id, + name: rack.name, + capacity: rack.capacity, + covered: rack.covered, + access: rack.access, + operator: rack.operator, + bicycle_parking: rack.bicycle_parking, + }, + geometry: { + type: "Point" as const, + coordinates: [Number(rack.longitude), Number(rack.latitude)], + }, + })); + + return c.json( + { + type: "FeatureCollection", + features, + }, + HttpStatusCodes.OK, + ); + } +}; diff --git a/apps/bicycle-racks/src/routes/bicycle-racks.index.ts b/apps/bicycle-racks/src/routes/bicycle-racks.index.ts new file mode 100644 index 0000000..e452fbd --- /dev/null +++ b/apps/bicycle-racks/src/routes/bicycle-racks.index.ts @@ -0,0 +1,12 @@ +import { createRouter } from "../lib/create-app.js"; +import * as handlers from "./bicycle-racks.handlers.js"; +import * as routes from "./bicycle-racks.routes.js"; + +const router = createRouter() + .openapi(routes.list, handlers.list) + .openapi(routes.stats, handlers.stats) + .openapi(routes.nearby, handlers.nearby) + .openapi(routes.geojson, handlers.geojson) + .openapi(routes.getById, handlers.getById); + +export default router; diff --git a/apps/bicycle-racks/src/routes/bicycle-racks.routes.ts b/apps/bicycle-racks/src/routes/bicycle-racks.routes.ts new file mode 100644 index 0000000..6f7ac0b --- /dev/null +++ b/apps/bicycle-racks/src/routes/bicycle-racks.routes.ts @@ -0,0 +1,145 @@ +import { createRoute, z } from "@hono/zod-openapi"; +import * as HttpStatusCodes from "stoker/http-status-codes"; +import { jsonContent } from "stoker/openapi/helpers"; +import { selectBicycleRackSchema } from "@atlas/database/schemas/bicycle-racks"; + +const tags = ["Bicycle Racks"]; + +const statsSchema = z.object({ + total: z.number(), + covered: z.number(), + public_access: z.number(), + avg_capacity: z.number(), + by_operator: z.record(z.number()), +}); + +const geoJsonSchema = z.object({ + type: z.literal("FeatureCollection"), + features: z.array( + z.object({ + type: z.literal("Feature"), + properties: z.record(z.unknown()), + geometry: z.object({ + type: z.literal("Point"), + coordinates: z.array(z.number()), + }), + }), + ), +}); + +export const list = createRoute({ + path: "/bicycle-racks", + method: "get", + tags, + request: { + query: z.object({ + covered: z.enum(["yes", "no"]).optional(), + access: z.enum(["yes", "private", "permissive", "customers"]).optional(), + capacity_min: z.string().regex(/^\d+$/).transform(Number).optional(), + capacity_max: z.string().regex(/^\d+$/).transform(Number).optional(), + operator: z.string().optional(), + city: z.string().optional(), + }), + }, + responses: { + [HttpStatusCodes.OK]: jsonContent( + z.array(selectBicycleRackSchema), + "List of bicycle racks", + ), + }, +}); + +export const getById = createRoute({ + path: "/bicycle-racks/{id}", + method: "get", + tags, + request: { + params: z.object({ + id: z + .string() + .regex(/^\d+$/, "ID must be a valid number") + .transform(Number), + }), + }, + responses: { + [HttpStatusCodes.OK]: jsonContent( + selectBicycleRackSchema, + "Bicycle rack details", + ), + [HttpStatusCodes.NOT_FOUND]: jsonContent( + z.object({ message: z.string() }), + "Bicycle rack not found", + ), + }, +}); + +export const nearby = createRoute({ + path: "/bicycle-racks/nearby", + method: "get", + tags, + request: { + query: z.object({ + lat: z + .string() + .regex(/^-?\d+(\.\d+)?$/, "Latitude must be a valid number") + .transform(Number), + lng: z + .string() + .regex(/^-?\d+(\.\d+)?$/, "Longitude must be a valid number") + .transform(Number), + radius: z + .string() + .regex(/^\d+(\.\d+)?$/, "Radius must be a valid positive number") + .transform(Number) + .default("1000"), + city: z.string().optional(), + }), + }, + responses: { + [HttpStatusCodes.OK]: jsonContent( + z.array( + selectBicycleRackSchema.extend({ + distance: z.number(), + }), + ), + "Nearby bicycle racks", + ), + }, +}); + +export const stats = createRoute({ + path: "/bicycle-racks/stats", + method: "get", + tags, + request: { + query: z.object({ + city: z.string().optional(), + }), + }, + responses: { + [HttpStatusCodes.OK]: jsonContent(statsSchema, "Bicycle racks statistics"), + }, +}); + +export const geojson = createRoute({ + path: "/bicycle-racks/geojson", + method: "get", + tags, + request: { + query: z.object({ + city: z.string().optional(), + }), + }, + responses: { + [HttpStatusCodes.OK]: jsonContent( + geoJsonSchema, + "Bicycle racks as GeoJSON", + ), + }, +}); + +export type ListRoute = typeof list; +export type GetByIdRoute = typeof getById; +export type NearbyRoute = typeof nearby; +export type StatsRoute = typeof stats; +export type GeoJsonRoute = typeof geojson; diff --git a/apps/bicycle-racks/src/routes/example/example.handlers.ts b/apps/bicycle-racks/src/routes/example/example.handlers.ts new file mode 100644 index 0000000..16ea9fd --- /dev/null +++ b/apps/bicycle-racks/src/routes/example/example.handlers.ts @@ -0,0 +1,12 @@ +import type { AppRouteHandler } from "../../lib/types.js"; +import type * as routes from "./example.routes.js"; + +export const list: AppRouteHandler = async (c) => { + return c.json([ + { + id: 1, + message: "Hello from BicycleRacks!", + timestamp: new Date().toISOString(), + }, + ]); +}; diff --git a/apps/bicycle-racks/src/routes/example/example.index.ts b/apps/bicycle-racks/src/routes/example/example.index.ts new file mode 100644 index 0000000..844e0b5 --- /dev/null +++ b/apps/bicycle-racks/src/routes/example/example.index.ts @@ -0,0 +1,7 @@ +import { createRouter } from "../../lib/create-app.js"; +import * as handlers from "./example.handlers.js"; +import * as routes from "./example.routes.js"; + +const router = createRouter().openapi(routes.list, handlers.list); + +export default router; diff --git a/apps/bicycle-racks/src/routes/example/example.routes.ts b/apps/bicycle-racks/src/routes/example/example.routes.ts new file mode 100644 index 0000000..889a5a6 --- /dev/null +++ b/apps/bicycle-racks/src/routes/example/example.routes.ts @@ -0,0 +1,25 @@ +import { createRoute, z } from "@hono/zod-openapi"; +import * as HttpStatusCodes from "stoker/http-status-codes"; +import { jsonContent } from "stoker/openapi/helpers"; + +const tags = ["Example"]; + +const exampleSchema = z.object({ + id: z.number(), + message: z.string(), + timestamp: z.string(), +}); + +export const list = createRoute({ + path: "/examples", + method: "get", + tags, + responses: { + [HttpStatusCodes.OK]: jsonContent( + z.array(exampleSchema), + "List of examples", + ), + }, +}); + +export type ListRoute = typeof list; diff --git a/apps/bicycle-racks/src/routes/health.ts b/apps/bicycle-racks/src/routes/health.ts new file mode 100644 index 0000000..dd8b718 --- /dev/null +++ b/apps/bicycle-racks/src/routes/health.ts @@ -0,0 +1,56 @@ +import { createRoute, z } from "@hono/zod-openapi"; +import { createRouter } from "../lib/create-app.js"; +import * as HttpStatusCodes from "stoker/http-status-codes"; +import { jsonContent } from "stoker/openapi/helpers"; +import { db } from "../db/index.js"; + +const healthSchema = z.object({ + status: z.enum(["ok", "error"]), + timestamp: z.string(), + service: z.string(), + database: z.enum(["connected", "disconnected"]), +}); + +const healthRoute = createRoute({ + path: "/health", + method: "get", + tags: ["System"], + responses: { + [HttpStatusCodes.OK]: jsonContent(healthSchema, "Service is healthy"), + [HttpStatusCodes.SERVICE_UNAVAILABLE]: jsonContent( + healthSchema, + "Service is unhealthy", + ), + }, +}); + +const router = createRouter(); + +router.openapi(healthRoute, async (c) => { + let dbStatus: "connected" | "disconnected" = "connected"; + + try { + // Simple database check + await db.execute("SELECT 1"); + } catch (_error) { + dbStatus = "disconnected"; + return c.json( + { + status: "error" as const, + timestamp: new Date().toISOString(), + service: "bicycle-racks", + database: dbStatus, + }, + HttpStatusCodes.SERVICE_UNAVAILABLE, + ); + } + + return c.json({ + status: "ok" as const, + timestamp: new Date().toISOString(), + service: "bicycle-racks", + database: dbStatus, + }); +}); + +export default router; diff --git a/apps/bicycle-racks/test/bicycle-racks.spec.ts b/apps/bicycle-racks/test/bicycle-racks.spec.ts new file mode 100644 index 0000000..49ef750 --- /dev/null +++ b/apps/bicycle-racks/test/bicycle-racks.spec.ts @@ -0,0 +1,99 @@ +import { describe, it, expect } from "vitest"; +import app from "../src/app.js"; + +describe("BicycleRacks API Routes", () => { + describe("Route Structure", () => { + it("should have health endpoint", async () => { + const res = await app.request("/health"); + expect([200, 503]).toContain(res.status); + }); + + it("should have bicycle-racks list endpoint", async () => { + const res = await app.request("/v1/bicycle-racks"); + expect([200, 500]).toContain(res.status); + }); + + it("should have bicycle-racks by id endpoint", async () => { + const res = await app.request("/v1/bicycle-racks/1"); + expect([200, 404, 500]).toContain(res.status); + }); + + it("should have nearby endpoint", async () => { + const res = await app.request( + "/v1/bicycle-racks/nearby?lat=-8.0476&lng=-34.8770", + ); + expect([200, 500]).toContain(res.status); + }); + + it("should have stats endpoint", async () => { + const res = await app.request("/v1/bicycle-racks/stats"); + expect([200, 500]).toContain(res.status); + }); + + it("should have geojson endpoint", async () => { + const res = await app.request("/v1/bicycle-racks/geojson"); + expect([200, 500]).toContain(res.status); + }); + }); + + describe("Validation", () => { + it("should validate invalid id format", async () => { + const res = await app.request("/v1/bicycle-racks/abc"); + expect(res.status).toBe(422); + + const data = await res.json(); + expect(data).toHaveProperty("success", false); + expect(data).toHaveProperty("error"); + }); + + it("should validate missing nearby parameters", async () => { + const res = await app.request("/v1/bicycle-racks/nearby"); + expect(res.status).toBe(422); + }); + + it("should validate invalid coordinate format", async () => { + const res = await app.request( + "/v1/bicycle-racks/nearby?lat=invalid&lng=-34.8770", + ); + expect(res.status).toBe(422); + }); + }); + + describe("Query Parameters", () => { + it("should accept covered filter", async () => { + const res = await app.request("/v1/bicycle-racks?covered=yes"); + expect([200, 500]).toContain(res.status); + }); + + it("should accept access filter", async () => { + const res = await app.request("/v1/bicycle-racks?access=yes"); + expect([200, 500]).toContain(res.status); + }); + + it("should accept operator filter", async () => { + const res = await app.request("/v1/bicycle-racks?operator=test"); + expect([200, 500]).toContain(res.status); + }); + + it("should accept capacity filters", async () => { + const res = await app.request( + "/v1/bicycle-racks?capacity_min=10&capacity_max=50", + ); + expect([200, 500]).toContain(res.status); + }); + }); + + describe("Response Format", () => { + it("should return JSON responses", async () => { + const res = await app.request("/v1/bicycle-racks/abc"); + expect(res.headers.get("content-type")).toContain("application/json"); + }); + + it("should handle CORS", async () => { + const res = await app.request("/health", { + method: "OPTIONS", + }); + expect([200, 204]).toContain(res.status); + }); + }); +}); diff --git a/apps/bicycle-racks/test/handlers.spec.ts b/apps/bicycle-racks/test/handlers.spec.ts new file mode 100644 index 0000000..ef782c3 --- /dev/null +++ b/apps/bicycle-racks/test/handlers.spec.ts @@ -0,0 +1,40 @@ +import { describe, it, expect, vi } from "vitest"; +import { createTestApp } from "../src/lib/create-app.js"; +import bicycleRacksRoutes from "../src/routes/bicycle-racks.index.js"; + +// Mock the database +vi.mock("../src/db/index.js", () => ({ + db: { + select: vi.fn().mockReturnThis(), + from: vi.fn().mockReturnThis(), + where: vi.fn().mockReturnThis(), + limit: vi.fn().mockResolvedValue([]), + execute: vi.fn().mockResolvedValue({ rows: [] }), + }, +})); + +describe("Bicycle Racks Handlers", () => { + const app = createTestApp(bicycleRacksRoutes); + + describe("GetById Handler", () => { + it("should return 404 for non-existent id", async () => { + const res = await app.request("/bicycle-racks/99999"); + expect(res.status).toBe(404); + + const data = await res.json(); + expect(data).toHaveProperty("message", "Bicycle rack not found"); + }); + }); + + describe("GeoJSON Handler", () => { + it("should return valid GeoJSON structure", async () => { + const res = await app.request("/bicycle-racks/geojson"); + expect(res.status).toBe(200); + + const data = await res.json(); + expect(data).toHaveProperty("type", "FeatureCollection"); + expect(data).toHaveProperty("features"); + expect(Array.isArray(data.features)).toBe(true); + }); + }); +}); diff --git a/apps/bicycle-racks/tsconfig.json b/apps/bicycle-racks/tsconfig.json new file mode 100644 index 0000000..337398c --- /dev/null +++ b/apps/bicycle-racks/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, + "isolatedModules": true, + "declaration": true, + "declarationMap": true, + "lib": ["ES2022"] + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "test"] +} diff --git a/apps/bicycle-racks/tsconfig.test.json b/apps/bicycle-racks/tsconfig.test.json new file mode 100644 index 0000000..5d0ac7c --- /dev/null +++ b/apps/bicycle-racks/tsconfig.test.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "types": ["vitest/globals"] + }, + "include": ["src/**/*", "test/**/*"] +} diff --git a/apps/bicycle-racks/vitest.config.ts b/apps/bicycle-racks/vitest.config.ts new file mode 100644 index 0000000..f5df949 --- /dev/null +++ b/apps/bicycle-racks/vitest.config.ts @@ -0,0 +1,13 @@ +import { defineConfig } from "vitest/config"; + +export default defineConfig({ + test: { + environment: "node", + globals: true, + env: { + DATABASE_URL: + process.env.DATABASE_URL || + "postgresql://postgres:postgres@localhost:5432/atlas", + }, + }, +}); diff --git a/apps/cyclist-counts/docker-compose.yml b/apps/cyclist-counts/docker-compose.yml index 03aa109..3ced72a 100644 --- a/apps/cyclist-counts/docker-compose.yml +++ b/apps/cyclist-counts/docker-compose.yml @@ -70,7 +70,7 @@ services: - with-seed postgres: - image: postgres:16-alpine + image: postgis/postgis:16-3.4-alpine environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres diff --git a/apps/docs/public/openapi/index.json b/apps/docs/public/openapi/index.json index 122226c..81af9f3 100644 --- a/apps/docs/public/openapi/index.json +++ b/apps/docs/public/openapi/index.json @@ -1,4 +1,8 @@ [ + { + "url": "/openapi/bicycle-racks.json", + "title": "Bicycle Racks API" + }, { "url": "/openapi/cyclist-counts.json", "title": "Cyclist Counts API" diff --git a/biome.json b/biome.json index cfa8fa7..61c6179 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json", + "$schema": "https://biomejs.dev/schemas/2.2.7/schema.json", "vcs": { "enabled": false, "clientKind": "git", diff --git a/packages/create-atlas-app/src/generators/docker-compose.ts b/packages/create-atlas-app/src/generators/docker-compose.ts index 297519b..dbaa442 100644 --- a/packages/create-atlas-app/src/generators/docker-compose.ts +++ b/packages/create-atlas-app/src/generators/docker-compose.ts @@ -96,7 +96,7 @@ export function generateDockerCompose(config: AppConfig): string { - with-seed postgres: - image: postgres:16-alpine + image: postgis/postgis:16-3.4-alpine environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres diff --git a/packages/create-atlas-app/test/generators.spec.ts b/packages/create-atlas-app/test/generators.spec.ts index 71a5176..7952db4 100644 --- a/packages/create-atlas-app/test/generators.spec.ts +++ b/packages/create-atlas-app/test/generators.spec.ts @@ -137,7 +137,7 @@ describe("Docker Compose Generator", () => { const compose = generateDockerCompose(configWithDb); expect(compose).toContain("postgres:"); - expect(compose).toContain("postgres:16-alpine"); + expect(compose).toContain("postgis/postgis:16-3.4-alpine"); expect(compose).toContain("DATABASE_URL"); expect(compose).toContain("test_service_db"); expect(compose).toContain("depends_on:"); diff --git a/packages/database/package.json b/packages/database/package.json index fcded45..2ab0670 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -25,6 +25,10 @@ "./schemas/test-db-service": { "types": "./dist/schemas/test-db-service/index.d.ts", "import": "./dist/schemas/test-db-service/index.js" + }, + "./schemas/bicycle-racks": { + "types": "./dist/schemas/bicycle-racks/index.d.ts", + "import": "./dist/schemas/bicycle-racks/index.js" } }, "scripts": { @@ -35,8 +39,11 @@ "format": "biome format .", "db:studio": "drizzle-kit studio", "db:generate": "drizzle-kit generate", + "db:generate:custom": "drizzle-kit generate --custom", + "db:drop": "drizzle-kit drop", "db:migrate": "tsx src/migrate.ts", "db:seed": "tsx src/seed-cyclist-counts.ts", + "db:seed:bicycle-racks": "tsx src/seed-bicycle-racks.ts", "db:reset": "tsx src/migrate.ts && tsx src/seed-cyclist-counts.ts" }, "dependencies": { diff --git a/packages/database/random-queries.sql b/packages/database/random-queries.sql new file mode 100644 index 0000000..fffbb69 --- /dev/null +++ b/packages/database/random-queries.sql @@ -0,0 +1,615 @@ +-- ============================================================================ +-- TESTES SQL PARA TABELA BICYCLE_RACKS +-- ============================================================================ + +-- 1. CONTAGEM GERAL +-- Verificar quantos bicicletários existem no total +SELECT COUNT(*) as total_bicicletarios FROM bicycle_racks; + +-- 2. VERIFICAR ESTRUTURA DA TABELA +-- Ver todas as colunas e tipos de dados +SELECT column_name, data_type, is_nullable +FROM information_schema.columns +WHERE table_name = 'bicycle_racks' +ORDER BY ordinal_position; + +-- 3. AMOSTRA DE DADOS +-- Ver os primeiros 5 registros para entender a estrutura +SELECT * FROM bicycle_racks LIMIT 5; + +-- 4. TESTE POSTGIS +-- Verificar se as coordenadas estão funcionando +SELECT + id, + name, + ST_AsText(coordinates) as coordenadas_wkt, + ST_X(coordinates) as longitude, + ST_Y(coordinates) as latitude +FROM bicycle_racks +WHERE coordinates IS NOT NULL +LIMIT 5; + +-- 5. ANÁLISE POR TIPO DE ACESSO +-- Distribuição por tipo de acesso +SELECT + access, + COUNT(*) as quantidade, + ROUND(COUNT(*) * 100.0 / (SELECT COUNT(*) FROM bicycle_racks), 2) as percentual +FROM bicycle_racks +GROUP BY access +ORDER BY quantidade DESC; + +-- 6. ANÁLISE POR COBERTURA +-- Quantos são cobertos vs descobertos +SELECT + covered, + COUNT(*) as quantidade, + ROUND(COUNT(*) * 100.0 / (SELECT COUNT(*) FROM bicycle_racks), 2) as percentual +FROM bicycle_racks +GROUP BY covered +ORDER BY quantidade DESC; + +-- 7. ANÁLISE DE CAPACIDADE +-- Estatísticas de capacidade (apenas valores numéricos) +SELECT + COUNT(CASE WHEN capacity ~ '^[0-9]+$' THEN 1 END) as capacidades_numericas, + MIN(CASE WHEN capacity ~ '^[0-9]+$' THEN CAST(capacity AS INTEGER) END) as capacidade_minima, + MAX(CASE WHEN capacity ~ '^[0-9]+$' THEN CAST(capacity AS INTEGER) END) as capacidade_maxima, + ROUND(AVG(CASE WHEN capacity ~ '^[0-9]+$' THEN CAST(capacity AS INTEGER) END), 2) as capacidade_media +FROM bicycle_racks; + +-- 8. ANÁLISE POR OPERADOR +-- Top 10 operadores com mais bicicletários +SELECT + operator, + COUNT(*) as quantidade +FROM bicycle_racks +WHERE operator IS NOT NULL +GROUP BY operator +ORDER BY quantidade DESC +LIMIT 10; + +-- 9. ANÁLISE POR TIPO DE ESTACIONAMENTO +-- Distribuição por tipo de bicycle_parking +SELECT + bicycle_parking, + COUNT(*) as quantidade, + ROUND(COUNT(*) * 100.0 / (SELECT COUNT(*) FROM bicycle_racks), 2) as percentual +FROM bicycle_racks +GROUP BY bicycle_parking +ORDER BY quantidade DESC; + +-- 10. BICICLETÁRIOS COM NOMES +-- Quantos têm nomes definidos +SELECT + COUNT(CASE WHEN name IS NOT NULL AND name != '' THEN 1 END) as com_nome, + COUNT(CASE WHEN name IS NULL OR name = '' THEN 1 END) as sem_nome, + COUNT(*) as total +FROM bicycle_racks; + +-- 11. ANÁLISE GEOGRÁFICA - REGIÃO METROPOLITANA DO RECIFE +-- Distribuição por bairros/regiões do Recife usando coordenadas PostGIS +SELECT + CASE + WHEN ST_Y(coordinates) BETWEEN -7.9 AND -8.0 AND ST_X(coordinates) BETWEEN -34.95 AND -34.85 THEN 'Olinda' + WHEN ST_Y(coordinates) BETWEEN -8.0 AND -8.05 AND ST_X(coordinates) BETWEEN -34.92 AND -34.85 THEN 'Recife Centro' + WHEN ST_Y(coordinates) BETWEEN -8.05 AND -8.12 AND ST_X(coordinates) BETWEEN -34.95 AND -34.85 THEN 'Recife Zona Sul' + WHEN ST_Y(coordinates) BETWEEN -8.1 AND -8.2 AND ST_X(coordinates) BETWEEN -35.0 AND -34.9 THEN 'Jaboatão dos Guararapes' + WHEN ST_Y(coordinates) BETWEEN -7.85 AND -7.95 AND ST_X(coordinates) BETWEEN -34.9 AND -34.8 THEN 'Paulista' + WHEN ST_Y(coordinates) BETWEEN -8.0 AND -8.1 AND ST_X(coordinates) BETWEEN -35.0 AND -34.95 THEN 'Recife Zona Oeste' + ELSE 'Outras cidades da RMR' + END as regiao, + COUNT(*) as quantidade +FROM bicycle_racks +WHERE coordinates IS NOT NULL +GROUP BY + CASE + WHEN ST_Y(coordinates) BETWEEN -7.9 AND -8.0 AND ST_X(coordinates) BETWEEN -34.95 AND -34.85 THEN 'Olinda' + WHEN ST_Y(coordinates) BETWEEN -8.0 AND -8.05 AND ST_X(coordinates) BETWEEN -34.92 AND -34.85 THEN 'Recife Centro' + WHEN ST_Y(coordinates) BETWEEN -8.05 AND -8.12 AND ST_X(coordinates) BETWEEN -34.95 AND -34.85 THEN 'Recife Zona Sul' + WHEN ST_Y(coordinates) BETWEEN -8.1 AND -8.2 AND ST_X(coordinates) BETWEEN -35.0 AND -34.9 THEN 'Jaboatão dos Guararapes' + WHEN ST_Y(coordinates) BETWEEN -7.85 AND -7.95 AND ST_X(coordinates) BETWEEN -34.9 AND -34.8 THEN 'Paulista' + WHEN ST_Y(coordinates) BETWEEN -8.0 AND -8.1 AND ST_X(coordinates) BETWEEN -35.0 AND -34.95 THEN 'Recife Zona Oeste' + ELSE 'Outras cidades da RMR' + END +ORDER BY quantidade DESC; + +-- 12. BICICLETÁRIOS PRÓXIMOS AO CENTRO DO RECIFE +-- Usando PostGIS para calcular distâncias (centro: -8.0476, -34.8770) +SELECT + id, + name, + capacity, + access, + covered, + ST_AsText(coordinates) as coordenadas, + ST_Distance( + coordinates::geography, + ST_SetSRID(ST_MakePoint(-34.8770, -8.0476), 4326)::geography + ) as distancia_metros +FROM bicycle_racks +WHERE coordinates IS NOT NULL +ORDER BY distancia_metros +LIMIT 10; + +-- 13. ANÁLISE POR FONTE OSM +-- Análise por tipo de elemento OSM (node, way, relation) +SELECT + osm_type, + COUNT(*) as quantidade, + ROUND(COUNT(*) * 100.0 / (SELECT COUNT(*) FROM bicycle_racks), 2) as percentual +FROM bicycle_racks +GROUP BY osm_type +ORDER BY quantidade DESC; + +-- 14. BICICLETÁRIOS COM TAXAS +-- Quantos cobram taxa +SELECT + fee, + COUNT(*) as quantidade +FROM bicycle_racks +GROUP BY fee +ORDER BY quantidade DESC; + +-- 15. BICICLETÁRIOS SUPERVISIONADOS +-- Quantos têm supervisão +SELECT + supervised, + COUNT(*) as quantidade +FROM bicycle_racks +GROUP BY supervised +ORDER BY quantidade DESC; + +-- 16. BICICLETÁRIOS ILUMINADOS +-- Quantos têm iluminação +SELECT + lit, + COUNT(*) as quantidade +FROM bicycle_racks +GROUP BY lit +ORDER BY quantidade DESC; + +-- 17. ANÁLISE TEMPORAL +-- Quando foram criados os registros +SELECT + DATE(created_at) as data_criacao, + COUNT(*) as quantidade +FROM bicycle_racks +GROUP BY DATE(created_at) +ORDER BY data_criacao DESC; + +-- 18. RESUMO POR PONTOS DE INTERESSE DO RECIFE +-- Estatísticas de bicicletários por local (diferentes raios) +WITH pontos_interesse AS ( + SELECT 'Marco Zero' as local, -34.8713 as lng, -8.0631 as lat, 500 as raio + UNION ALL SELECT 'Shopping Recife', -34.9058, -8.1178, 500 + UNION ALL SELECT 'UFPE', -34.9513, -8.0538, 1000 + UNION ALL SELECT 'Aeroporto', -34.9236, -8.1264, 2000 + UNION ALL SELECT 'Boa Viagem', -34.8956, -8.1280, 1000 +) +SELECT + p.local, + p.raio as raio_metros, + COUNT(b.id) as total_bicicletarios, + MIN(ST_Distance( + b.coordinates::geography, + ST_SetSRID(ST_MakePoint(p.lng, p.lat), 4326)::geography + )) as distancia_minima, + MAX(ST_Distance( + b.coordinates::geography, + ST_SetSRID(ST_MakePoint(p.lng, p.lat), 4326)::geography + )) as distancia_maxima, + ROUND(AVG(ST_Distance( + b.coordinates::geography, + ST_SetSRID(ST_MakePoint(p.lng, p.lat), 4326)::geography + ))::numeric, 2) as distancia_media +FROM pontos_interesse p +LEFT JOIN bicycle_racks b ON ( + b.coordinates IS NOT NULL + AND ST_DWithin( + b.coordinates::geography, + ST_SetSRID(ST_MakePoint(p.lng, p.lat), 4326)::geography, + p.raio + ) +) +GROUP BY p.local, p.raio +ORDER BY total_bicicletarios DESC; + +-- 18b. DETALHES DOS BICICLETÁRIOS PRÓXIMOS +-- Lista detalhada dos bicicletários por ponto de interesse +SELECT + 'Marco Zero (500m)' as local, + id, name, capacity, operator, + ST_Distance(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.8713, -8.0631), 4326)::geography) as distancia_metros +FROM bicycle_racks +WHERE coordinates IS NOT NULL + AND ST_DWithin(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.8713, -8.0631), 4326)::geography, 500) +UNION ALL +SELECT + 'UFPE (1km)', + id, name, capacity, operator, + ST_Distance(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.9513, -8.0538), 4326)::geography) +FROM bicycle_racks +WHERE coordinates IS NOT NULL + AND ST_DWithin(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.9513, -8.0538), 4326)::geography, 1000) +UNION ALL +SELECT + 'Shopping Recife (500m)', + id, name, capacity, operator, + ST_Distance(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.9058, -8.1178), 4326)::geography) +FROM bicycle_racks +WHERE coordinates IS NOT NULL + AND ST_DWithin(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.9058, -8.1178), 4326)::geography, 500) +ORDER BY local, distancia_metros; + +-- 18b. TESTE SIMPLES DE PROXIMIDADE +-- Verificar se há bicicletários próximos (raio maior para teste) +SELECT + 'Teste proximidade' as tipo, + COUNT(*) as total_encontrados, + MIN(ST_Distance(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.8713, -8.0631), 4326)::geography)) as distancia_minima, + MAX(ST_Distance(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.8713, -8.0631), 4326)::geography)) as distancia_maxima +FROM bicycle_racks +WHERE coordinates IS NOT NULL + AND ST_DWithin(coordinates::geography, ST_SetSRID(ST_MakePoint(-34.8713, -8.0631), 4326)::geography, 5000); + +-- 19. ANÁLISE DE ENDEREÇOS +-- Bicicletários com endereços completos +SELECT + COUNT(*) as total, + COUNT(addr_city) as com_cidade, + COUNT(addr_street) as com_rua, + COUNT(addr_housenumber) as com_numero, + COUNT(CASE WHEN addr_city IS NOT NULL AND addr_street IS NOT NULL THEN 1 END) as endereco_completo +FROM bicycle_racks; + +-- 20. ESTATÍSTICAS GERAIS RESUMIDAS +-- Resumo geral dos dados +SELECT + 'Total de bicicletários' as metrica, + COUNT(*)::text as valor +FROM bicycle_racks +UNION ALL +SELECT + 'Com coordenadas PostGIS', + COUNT(CASE WHEN coordinates IS NOT NULL THEN 1 END)::text +FROM bicycle_racks +UNION ALL +SELECT + 'Com nome definido', + COUNT(CASE WHEN name IS NOT NULL AND name != '' THEN 1 END)::text +FROM bicycle_racks +UNION ALL +SELECT + 'Acesso público', + COUNT(CASE WHEN access = 'yes' THEN 1 END)::text +FROM bicycle_racks +UNION ALL +SELECT + 'Cobertos', + COUNT(CASE WHEN covered = 'yes' THEN 1 END)::text +FROM bicycle_racks +UNION ALL +SELECT + 'Com operador definido', + COUNT(CASE WHEN operator IS NOT NULL THEN 1 END)::text +FROM bicycle_racks; + +-- 21. DENSIDADE DE BICICLETÁRIOS NO RECIFE +-- Análise de densidade por área (grid de 1km²) +WITH grid AS ( + SELECT + FLOOR(ST_X(coordinates) * 100) / 100 as lng_grid, + FLOOR(ST_Y(coordinates) * 100) / 100 as lat_grid, + COUNT(*) as bicicletarios_por_area + FROM bicycle_racks + WHERE coordinates IS NOT NULL + AND ST_Y(coordinates) BETWEEN -8.2 AND -7.8 -- Foco na RMR + AND ST_X(coordinates) BETWEEN -35.1 AND -34.7 + GROUP BY FLOOR(ST_X(coordinates) * 100) / 100, FLOOR(ST_Y(coordinates) * 100) / 100 +) +SELECT + lng_grid, + lat_grid, + bicicletarios_por_area, + CASE + WHEN bicicletarios_por_area >= 10 THEN 'Alta densidade' + WHEN bicicletarios_por_area >= 5 THEN 'Média densidade' + WHEN bicicletarios_por_area >= 2 THEN 'Baixa densidade' + ELSE 'Muito baixa densidade' + END as classificacao_densidade +FROM grid +ORDER BY bicicletarios_por_area DESC; + +-- 22. BICICLETÁRIOS POR CIDADE +-- Análise por cidade (quando disponível) +SELECT + addr_city, + COUNT(*) as quantidade +FROM bicycle_racks +WHERE addr_city IS NOT NULL +GROUP BY addr_city +ORDER BY quantidade DESC; + +-- 23. CAPACIDADE TOTAL ESTIMADA +-- Soma da capacidade total (apenas valores numéricos) +SELECT + SUM(CASE WHEN capacity ~ '^[0-9]+$' THEN CAST(capacity AS INTEGER) ELSE 0 END) as capacidade_total_estimada, + COUNT(CASE WHEN capacity ~ '^[0-9]+$' THEN 1 END) as bicicletarios_com_capacidade_definida +FROM bicycle_racks; + +-- 24. ANÁLISE DE BUILDING +-- Bicicletários em prédios +SELECT + building, + COUNT(*) as quantidade +FROM bicycle_racks +WHERE building IS NOT NULL +GROUP BY building +ORDER BY quantidade DESC; + +-- 25. ANÁLISE ESPECÍFICA DO RECIFE +-- Estatísticas focadas na cidade do Recife +WITH recife_bounds AS ( + SELECT * FROM bicycle_racks + WHERE coordinates IS NOT NULL + AND ST_Y(coordinates) BETWEEN -8.15 AND -7.95 -- Limites aproximados do Recife + AND ST_X(coordinates) BETWEEN -35.0 AND -34.8 +) +SELECT + 'Recife' as cidade, + COUNT(*) as total_bicicletarios, + COUNT(CASE WHEN capacity ~ '^[0-9]+$' THEN 1 END) as com_capacidade_definida, + SUM(CASE WHEN capacity ~ '^[0-9]+$' THEN CAST(capacity AS INTEGER) ELSE 0 END) as capacidade_total, + COUNT(CASE WHEN covered = 'yes' THEN 1 END) as cobertos, + COUNT(CASE WHEN access = 'yes' THEN 1 END) as acesso_publico, + COUNT(CASE WHEN operator IS NOT NULL THEN 1 END) as com_operador, + ST_XMin(ST_Extent(coordinates)) as longitude_minima, + ST_XMax(ST_Extent(coordinates)) as longitude_maxima, + ST_YMin(ST_Extent(coordinates)) as latitude_minima, + ST_YMax(ST_Extent(coordinates)) as latitude_maxima, + ST_AsText(ST_Centroid(ST_Extent(coordinates))) as centro_geometrico +FROM recife_bounds; + +-- 26. CORREDORES DE MOBILIDADE DO RECIFE (ANÁLISE GEOGRÁFICA GERAL) +-- Bicicletários ao longo das principais avenidas +SELECT + CASE + WHEN ST_DWithin(coordinates::geography, ST_MakeLine(ST_MakePoint(-34.8713, -8.0631), ST_MakePoint(-34.9513, -8.0538))::geography, 500) + THEN 'Corredor Boa Viagem - Centro' + WHEN ST_DWithin(coordinates::geography, ST_MakeLine(ST_MakePoint(-34.8800, -8.0500), ST_MakePoint(-34.9200, -8.1000))::geography, 500) + THEN 'Corredor Zona Sul' + WHEN ST_DWithin(coordinates::geography, ST_MakeLine(ST_MakePoint(-34.8713, -8.0631), ST_MakePoint(-34.8900, -7.9800))::geography, 500) + THEN 'Corredor Centro - Olinda' + ELSE 'Outras áreas' + END as corredor, + COUNT(*) as quantidade_bicicletarios +FROM bicycle_racks +WHERE coordinates IS NOT NULL + AND ST_Y(coordinates) BETWEEN -8.15 AND -7.95 + AND ST_X(coordinates) BETWEEN -35.0 AND -34.8 +GROUP BY + CASE + WHEN ST_DWithin(coordinates::geography, ST_MakeLine(ST_MakePoint(-34.8713, -8.0631), ST_MakePoint(-34.9513, -8.0538))::geography, 500) + THEN 'Corredor Boa Viagem - Centro' + WHEN ST_DWithin(coordinates::geography, ST_MakeLine(ST_MakePoint(-34.8800, -8.0500), ST_MakePoint(-34.9200, -8.1000))::geography, 500) + THEN 'Corredor Zona Sul' + WHEN ST_DWithin(coordinates::geography, ST_MakeLine(ST_MakePoint(-34.8713, -8.0631), ST_MakePoint(-34.8900, -7.9800))::geography, 500) + THEN 'Corredor Centro - Olinda' + ELSE 'Outras áreas' + END +ORDER BY quantidade_bicicletarios DESC; + +-- ============================================================================ +-- TESTES PARA TABELA BICYCLE_RACK_CITIES E BICICLETÁRIOS DO RECIFE +-- ============================================================================ + +-- 27. VERIFICAR TABELA DE CIDADES +-- Estrutura da nova tabela bicycle_rack_cities +SELECT column_name, data_type, is_nullable +FROM information_schema.columns +WHERE table_name = 'bicycle_rack_cities' +ORDER BY ordinal_position; + +-- 28. CONTAGEM POR CIDADE +-- Quantos bicicletários temos mapeados por cidade +SELECT + city, + state, + COUNT(*) as quantidade +FROM bicycle_rack_cities +GROUP BY city, state +ORDER BY quantidade DESC; + +-- 29. TESTE DO JOIN - BICICLETÁRIOS DO RECIFE +-- Query que simula o endpoint /bicycle-racks/recife +SELECT + br.id, + br.name, + br.capacity, + br.access, + br.covered, + br.operator, + br.bicycle_parking, + brc.city, + brc.state, + ST_AsText(br.coordinates) as coordenadas +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' +ORDER BY br.name +LIMIT 10; + +-- 30. ESTATÍSTICAS DOS BICICLETÁRIOS DO RECIFE +-- Análise completa dos bicicletários mapeados do Recife +SELECT + 'Total Recife' as metrica, + COUNT(*)::text as valor +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' +UNION ALL +SELECT + 'Com nome', + COUNT(CASE WHEN br.name IS NOT NULL AND br.name != '' THEN 1 END)::text +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' +UNION ALL +SELECT + 'Acesso público', + COUNT(CASE WHEN br.access = 'yes' THEN 1 END)::text +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' +UNION ALL +SELECT + 'Cobertos', + COUNT(CASE WHEN br.covered = 'yes' THEN 1 END)::text +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' +UNION ALL +SELECT + 'Com operador', + COUNT(CASE WHEN br.operator IS NOT NULL THEN 1 END)::text +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife'; + +-- 31. TIPOS DE BICICLETÁRIOS NO RECIFE +-- Distribuição por tipo de bicycle_parking no Recife +SELECT + br.bicycle_parking, + COUNT(*) as quantidade, + ROUND(COUNT(*) * 100.0 / (SELECT COUNT(*) FROM bicycle_racks br2 INNER JOIN bicycle_rack_cities brc2 ON br2.osm_id = brc2.osm_id WHERE brc2.city = 'Recife'), 2) as percentual +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' +GROUP BY br.bicycle_parking +ORDER BY quantidade DESC; + +-- 32. OPERADORES NO RECIFE +-- Principais operadores de bicicletários no Recife +SELECT + br.operator, + COUNT(*) as quantidade +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' AND br.operator IS NOT NULL +GROUP BY br.operator +ORDER BY quantidade DESC; + +-- 33. CAPACIDADE DOS BICICLETÁRIOS DO RECIFE +-- Análise de capacidade específica do Recife +SELECT + COUNT(CASE WHEN br.capacity ~ '^[0-9]+$' THEN 1 END) as com_capacidade_numerica, + MIN(CASE WHEN br.capacity ~ '^[0-9]+$' THEN CAST(br.capacity AS INTEGER) END) as capacidade_minima, + MAX(CASE WHEN br.capacity ~ '^[0-9]+$' THEN CAST(br.capacity AS INTEGER) END) as capacidade_maxima, + ROUND(AVG(CASE WHEN br.capacity ~ '^[0-9]+$' THEN CAST(br.capacity AS INTEGER) END), 2) as capacidade_media, + SUM(CASE WHEN br.capacity ~ '^[0-9]+$' THEN CAST(br.capacity AS INTEGER) ELSE 0 END) as capacidade_total_estimada +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife'; + +-- 34. VERIFICAR MAPEAMENTO OSM_ID +-- Conferir se os OSM IDs estão sendo mapeados corretamente +SELECT + 'Total na tabela principal' as tabela, + COUNT(*)::text as registros +FROM bicycle_racks +UNION ALL +SELECT + 'Total na tabela de cidades', + COUNT(*)::text +FROM bicycle_rack_cities +UNION ALL +SELECT + 'OSM IDs que fazem match', + COUNT(*)::text +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +UNION ALL +SELECT + 'OSM IDs do Recife', + COUNT(*)::text +FROM bicycle_rack_cities +WHERE city = 'Recife'; + +-- 35. BICICLETÁRIOS DO RECIFE COM COORDENADAS +-- Lista dos bicicletários do Recife com suas coordenadas +SELECT + br.id, + br.name, + br.osm_id, + br.capacity, + br.access, + br.covered, + ST_X(br.coordinates) as longitude, + ST_Y(br.coordinates) as latitude, + ST_AsText(br.coordinates) as coordenadas_wkt +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' + AND br.coordinates IS NOT NULL +ORDER BY br.name +LIMIT 15; + +-- 36. TESTE DE PERFORMANCE DO JOIN +-- Verificar performance da query do endpoint +EXPLAIN ANALYZE +SELECT br.* +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' +ORDER BY br.name; + +-- 37. BICICLETÁRIOS DO RECIFE POR REGIÃO +-- Distribuição geográfica dentro do Recife +SELECT + CASE + WHEN ST_Y(br.coordinates) BETWEEN -8.0 AND -8.05 AND ST_X(br.coordinates) BETWEEN -34.92 AND -34.85 THEN 'Centro/Recife Antigo' + WHEN ST_Y(br.coordinates) BETWEEN -8.05 AND -8.12 AND ST_X(br.coordinates) BETWEEN -34.95 AND -34.85 THEN 'Zona Sul/Boa Viagem' + WHEN ST_Y(br.coordinates) BETWEEN -8.0 AND -8.1 AND ST_X(br.coordinates) BETWEEN -35.0 AND -34.95 THEN 'Zona Oeste' + WHEN ST_Y(br.coordinates) BETWEEN -7.95 AND -8.05 AND ST_X(br.coordinates) BETWEEN -34.95 AND -34.85 THEN 'Zona Norte' + ELSE 'Outras regiões' + END as regiao_recife, + COUNT(*) as quantidade +FROM bicycle_racks br +INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id +WHERE brc.city = 'Recife' AND br.coordinates IS NOT NULL +GROUP BY + CASE + WHEN ST_Y(br.coordinates) BETWEEN -8.0 AND -8.05 AND ST_X(br.coordinates) BETWEEN -34.92 AND -34.85 THEN 'Centro/Recife Antigo' + WHEN ST_Y(br.coordinates) BETWEEN -8.05 AND -8.12 AND ST_X(br.coordinates) BETWEEN -34.95 AND -34.85 THEN 'Zona Sul/Boa Viagem' + WHEN ST_Y(br.coordinates) BETWEEN -8.0 AND -8.1 AND ST_X(br.coordinates) BETWEEN -35.0 AND -34.95 THEN 'Zona Oeste' + WHEN ST_Y(br.coordinates) BETWEEN -7.95 AND -8.05 AND ST_X(br.coordinates) BETWEEN -34.95 AND -34.85 THEN 'Zona Norte' + ELSE 'Outras regiões' + END +ORDER BY quantidade DESC; + +-- 38. COMPARAÇÃO: RECIFE vs OUTRAS CIDADES +-- Comparar estatísticas do Recife com outras cidades (se houver) +WITH stats_por_cidade AS ( + SELECT + brc.city, + COUNT(*) as total, + COUNT(CASE WHEN br.covered = 'yes' THEN 1 END) as cobertos, + COUNT(CASE WHEN br.access = 'yes' THEN 1 END) as publicos, + COUNT(CASE WHEN br.capacity ~ '^[0-9]+$' THEN 1 END) as com_capacidade, + SUM(CASE WHEN br.capacity ~ '^[0-9]+$' THEN CAST(br.capacity AS INTEGER) ELSE 0 END) as capacidade_total + FROM bicycle_racks br + INNER JOIN bicycle_rack_cities brc ON br.osm_id = brc.osm_id + GROUP BY brc.city +) +SELECT + city, + total, + cobertos, + ROUND(cobertos * 100.0 / total, 1) as perc_cobertos, + publicos, + ROUND(publicos * 100.0 / total, 1) as perc_publicos, + com_capacidade, + capacidade_total +FROM stats_por_cidade +ORDER BY total DESC; \ No newline at end of file diff --git a/packages/database/src/migrations/0002_rapid_rattler.sql b/packages/database/src/migrations/0002_rapid_rattler.sql new file mode 100644 index 0000000..8eabcec --- /dev/null +++ b/packages/database/src/migrations/0002_rapid_rattler.sql @@ -0,0 +1,36 @@ +CREATE TABLE "bicycle_racks" ( + "id" serial PRIMARY KEY NOT NULL, + "osm_id" text, + "osm_type" text, + "coordinates" text, + "name" text, + "description" text, + "amenity" text DEFAULT 'bicycle_parking', + "bicycle_parking" text, + "capacity" text, + "access" text, + "covered" text, + "fee" text, + "supervised" text, + "lit" text, + "operator" text, + "operator_type" text, + "building" text, + "level" text, + "surface" text, + "addr_city" text, + "addr_street" text, + "addr_housenumber" text, + "addr_suburb" text, + "addr_postcode" text, + "opening_hours" text, + "payment_none" text, + "ref" text, + "source" text, + "source_date" text, + "wikidata" text, + "wikipedia" text, + "created_at" timestamp DEFAULT now() NOT NULL, + "updated_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "bicycle_racks_osm_id_unique" UNIQUE("osm_id") +); diff --git a/packages/database/src/migrations/0003_clammy_raza.sql b/packages/database/src/migrations/0003_clammy_raza.sql new file mode 100644 index 0000000..acb3b04 --- /dev/null +++ b/packages/database/src/migrations/0003_clammy_raza.sql @@ -0,0 +1,5 @@ +CREATE EXTENSION IF NOT EXISTS postgis; + +ALTER TABLE bicycle_racks ALTER COLUMN coordinates TYPE geometry(Point, 4326) USING ST_GeomFromText(coordinates, 4326); + +CREATE INDEX idx_bicycle_racks_coordinates ON bicycle_racks USING GIST (coordinates); \ No newline at end of file diff --git a/packages/database/src/migrations/0004_long_ronan.sql b/packages/database/src/migrations/0004_long_ronan.sql new file mode 100644 index 0000000..1f3c89d --- /dev/null +++ b/packages/database/src/migrations/0004_long_ronan.sql @@ -0,0 +1,9 @@ +CREATE TABLE "bicycle_rack_cities" ( + "id" serial PRIMARY KEY NOT NULL, + "osm_id" text NOT NULL, + "city" text NOT NULL, + "state" text DEFAULT 'PE', + "created_at" timestamp DEFAULT now() NOT NULL, + "updated_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "bicycle_rack_cities_osm_id_unique" UNIQUE("osm_id") +); diff --git a/packages/database/src/migrations/meta/0002_snapshot.json b/packages/database/src/migrations/meta/0002_snapshot.json new file mode 100644 index 0000000..18bdfdb --- /dev/null +++ b/packages/database/src/migrations/meta/0002_snapshot.json @@ -0,0 +1,595 @@ +{ + "id": "29e0610d-01bc-4aae-ac87-f662a4bcc0e7", + "prevId": "8a96ae9a-371f-43ae-b349-4bfef99b93cb", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.bicycle_racks": { + "name": "bicycle_racks", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "osm_id": { + "name": "osm_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "osm_type": { + "name": "osm_type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "coordinates": { + "name": "coordinates", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "amenity": { + "name": "amenity", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'bicycle_parking'" + }, + "bicycle_parking": { + "name": "bicycle_parking", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "capacity": { + "name": "capacity", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "access": { + "name": "access", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "covered": { + "name": "covered", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "fee": { + "name": "fee", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "supervised": { + "name": "supervised", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "lit": { + "name": "lit", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "operator": { + "name": "operator", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "operator_type": { + "name": "operator_type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "building": { + "name": "building", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "level": { + "name": "level", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "surface": { + "name": "surface", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_city": { + "name": "addr_city", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_street": { + "name": "addr_street", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_housenumber": { + "name": "addr_housenumber", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_suburb": { + "name": "addr_suburb", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_postcode": { + "name": "addr_postcode", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "opening_hours": { + "name": "opening_hours", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "payment_none": { + "name": "payment_none", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "ref": { + "name": "ref", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "source": { + "name": "source", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "source_date": { + "name": "source_date", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "wikidata": { + "name": "wikidata", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "wikipedia": { + "name": "wikipedia", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "bicycle_racks_osm_id_unique": { + "name": "bicycle_racks_osm_id_unique", + "nullsNotDistinct": false, + "columns": ["osm_id"] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_events": { + "name": "counting_events", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "location_id": { + "name": "location_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "counting_date": { + "name": "counting_date", + "type": "date", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "time", + "primaryKey": false, + "notNull": true + }, + "end_time": { + "name": "end_time", + "type": "time", + "primaryKey": false, + "notNull": true + }, + "total_cyclists": { + "name": "total_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "max_hour_cyclists": { + "name": "max_hour_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "weather_conditions": { + "name": "weather_conditions", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "notes": { + "name": "notes", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "counting_events_location_id_counting_locations_id_fk": { + "name": "counting_events_location_id_counting_locations_id_fk", + "tableFrom": "counting_events", + "tableTo": "counting_locations", + "columnsFrom": ["location_id"], + "columnsTo": ["id"], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_locations": { + "name": "counting_locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "city": { + "name": "city", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "varchar(2)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "numeric(10, 7)", + "primaryKey": false, + "notNull": true + }, + "longitude": { + "name": "longitude", + "type": "numeric(10, 7)", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_sessions": { + "name": "counting_sessions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "session_label": { + "name": "session_label", + "type": "varchar(10)", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "end_time": { + "name": "end_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "total_cyclists": { + "name": "total_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "characteristics": { + "name": "characteristics", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "counting_sessions_event_id_counting_events_id_fk": { + "name": "counting_sessions_event_id_counting_events_id_fk", + "tableFrom": "counting_sessions", + "tableTo": "counting_events", + "columnsFrom": ["event_id"], + "columnsTo": ["id"], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.session_movements": { + "name": "session_movements", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "session_id": { + "name": "session_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "from_direction": { + "name": "from_direction", + "type": "direction", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "to_direction": { + "name": "to_direction", + "type": "direction", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "session_movements_session_id_counting_sessions_id_fk": { + "name": "session_movements_session_id_counting_sessions_id_fk", + "tableFrom": "session_movements", + "tableTo": "counting_sessions", + "columnsFrom": ["session_id"], + "columnsTo": ["id"], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.cyclist_profiles": { + "name": "cyclist_profiles", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "data": { + "name": "data", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.direction": { + "name": "direction", + "schema": "public", + "values": ["north", "east", "south", "west"] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} diff --git a/packages/database/src/migrations/meta/0003_snapshot.json b/packages/database/src/migrations/meta/0003_snapshot.json new file mode 100644 index 0000000..7e63217 --- /dev/null +++ b/packages/database/src/migrations/meta/0003_snapshot.json @@ -0,0 +1,595 @@ +{ + "id": "a1bfc8ba-b9d7-4cd8-957b-937170406f5b", + "prevId": "29e0610d-01bc-4aae-ac87-f662a4bcc0e7", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.bicycle_racks": { + "name": "bicycle_racks", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "osm_id": { + "name": "osm_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "osm_type": { + "name": "osm_type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "coordinates": { + "name": "coordinates", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "amenity": { + "name": "amenity", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'bicycle_parking'" + }, + "bicycle_parking": { + "name": "bicycle_parking", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "capacity": { + "name": "capacity", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "access": { + "name": "access", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "covered": { + "name": "covered", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "fee": { + "name": "fee", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "supervised": { + "name": "supervised", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "lit": { + "name": "lit", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "operator": { + "name": "operator", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "operator_type": { + "name": "operator_type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "building": { + "name": "building", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "level": { + "name": "level", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "surface": { + "name": "surface", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_city": { + "name": "addr_city", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_street": { + "name": "addr_street", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_housenumber": { + "name": "addr_housenumber", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_suburb": { + "name": "addr_suburb", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_postcode": { + "name": "addr_postcode", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "opening_hours": { + "name": "opening_hours", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "payment_none": { + "name": "payment_none", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "ref": { + "name": "ref", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "source": { + "name": "source", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "source_date": { + "name": "source_date", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "wikidata": { + "name": "wikidata", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "wikipedia": { + "name": "wikipedia", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "bicycle_racks_osm_id_unique": { + "name": "bicycle_racks_osm_id_unique", + "columns": ["osm_id"], + "nullsNotDistinct": false + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_events": { + "name": "counting_events", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "location_id": { + "name": "location_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "counting_date": { + "name": "counting_date", + "type": "date", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "time", + "primaryKey": false, + "notNull": true + }, + "end_time": { + "name": "end_time", + "type": "time", + "primaryKey": false, + "notNull": true + }, + "total_cyclists": { + "name": "total_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "max_hour_cyclists": { + "name": "max_hour_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "weather_conditions": { + "name": "weather_conditions", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "notes": { + "name": "notes", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "counting_events_location_id_counting_locations_id_fk": { + "name": "counting_events_location_id_counting_locations_id_fk", + "tableFrom": "counting_events", + "columnsFrom": ["location_id"], + "tableTo": "counting_locations", + "columnsTo": ["id"], + "onUpdate": "no action", + "onDelete": "cascade" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_locations": { + "name": "counting_locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "city": { + "name": "city", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "varchar(2)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "numeric(10, 7)", + "primaryKey": false, + "notNull": true + }, + "longitude": { + "name": "longitude", + "type": "numeric(10, 7)", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_sessions": { + "name": "counting_sessions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "session_label": { + "name": "session_label", + "type": "varchar(10)", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "end_time": { + "name": "end_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "total_cyclists": { + "name": "total_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "characteristics": { + "name": "characteristics", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "counting_sessions_event_id_counting_events_id_fk": { + "name": "counting_sessions_event_id_counting_events_id_fk", + "tableFrom": "counting_sessions", + "columnsFrom": ["event_id"], + "tableTo": "counting_events", + "columnsTo": ["id"], + "onUpdate": "no action", + "onDelete": "cascade" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.session_movements": { + "name": "session_movements", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "session_id": { + "name": "session_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "from_direction": { + "name": "from_direction", + "type": "direction", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "to_direction": { + "name": "to_direction", + "type": "direction", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "session_movements_session_id_counting_sessions_id_fk": { + "name": "session_movements_session_id_counting_sessions_id_fk", + "tableFrom": "session_movements", + "columnsFrom": ["session_id"], + "tableTo": "counting_sessions", + "columnsTo": ["id"], + "onUpdate": "no action", + "onDelete": "cascade" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.cyclist_profiles": { + "name": "cyclist_profiles", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "data": { + "name": "data", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.direction": { + "name": "direction", + "schema": "public", + "values": ["north", "east", "south", "west"] + } + }, + "schemas": {}, + "views": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} diff --git a/packages/database/src/migrations/meta/0004_snapshot.json b/packages/database/src/migrations/meta/0004_snapshot.json new file mode 100644 index 0000000..348d4b0 --- /dev/null +++ b/packages/database/src/migrations/meta/0004_snapshot.json @@ -0,0 +1,674 @@ +{ + "id": "7f732d5f-ca5f-46a1-9389-f76fe94973b5", + "prevId": "a1bfc8ba-b9d7-4cd8-957b-937170406f5b", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.bicycle_rack_cities": { + "name": "bicycle_rack_cities", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "osm_id": { + "name": "osm_id", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "city": { + "name": "city", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'PE'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "bicycle_rack_cities_osm_id_unique": { + "name": "bicycle_rack_cities_osm_id_unique", + "nullsNotDistinct": false, + "columns": [ + "osm_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.bicycle_racks": { + "name": "bicycle_racks", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "osm_id": { + "name": "osm_id", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "osm_type": { + "name": "osm_type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "coordinates": { + "name": "coordinates", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "amenity": { + "name": "amenity", + "type": "text", + "primaryKey": false, + "notNull": false, + "default": "'bicycle_parking'" + }, + "bicycle_parking": { + "name": "bicycle_parking", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "capacity": { + "name": "capacity", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "access": { + "name": "access", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "covered": { + "name": "covered", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "fee": { + "name": "fee", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "supervised": { + "name": "supervised", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "lit": { + "name": "lit", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "operator": { + "name": "operator", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "operator_type": { + "name": "operator_type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "building": { + "name": "building", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "level": { + "name": "level", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "surface": { + "name": "surface", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_city": { + "name": "addr_city", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_street": { + "name": "addr_street", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_housenumber": { + "name": "addr_housenumber", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_suburb": { + "name": "addr_suburb", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "addr_postcode": { + "name": "addr_postcode", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "opening_hours": { + "name": "opening_hours", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "payment_none": { + "name": "payment_none", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "ref": { + "name": "ref", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "source": { + "name": "source", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "source_date": { + "name": "source_date", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "wikidata": { + "name": "wikidata", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "wikipedia": { + "name": "wikipedia", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "bicycle_racks_osm_id_unique": { + "name": "bicycle_racks_osm_id_unique", + "nullsNotDistinct": false, + "columns": [ + "osm_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_events": { + "name": "counting_events", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "location_id": { + "name": "location_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "counting_date": { + "name": "counting_date", + "type": "date", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "time", + "primaryKey": false, + "notNull": true + }, + "end_time": { + "name": "end_time", + "type": "time", + "primaryKey": false, + "notNull": true + }, + "total_cyclists": { + "name": "total_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "max_hour_cyclists": { + "name": "max_hour_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "weather_conditions": { + "name": "weather_conditions", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "notes": { + "name": "notes", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "counting_events_location_id_counting_locations_id_fk": { + "name": "counting_events_location_id_counting_locations_id_fk", + "tableFrom": "counting_events", + "tableTo": "counting_locations", + "columnsFrom": [ + "location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_locations": { + "name": "counting_locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "city": { + "name": "city", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "varchar(2)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "numeric(10, 7)", + "primaryKey": false, + "notNull": true + }, + "longitude": { + "name": "longitude", + "type": "numeric(10, 7)", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.counting_sessions": { + "name": "counting_sessions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "session_label": { + "name": "session_label", + "type": "varchar(10)", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "end_time": { + "name": "end_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "total_cyclists": { + "name": "total_cyclists", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "characteristics": { + "name": "characteristics", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "counting_sessions_event_id_counting_events_id_fk": { + "name": "counting_sessions_event_id_counting_events_id_fk", + "tableFrom": "counting_sessions", + "tableTo": "counting_events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.session_movements": { + "name": "session_movements", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "session_id": { + "name": "session_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "from_direction": { + "name": "from_direction", + "type": "direction", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "to_direction": { + "name": "to_direction", + "type": "direction", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "session_movements_session_id_counting_sessions_id_fk": { + "name": "session_movements_session_id_counting_sessions_id_fk", + "tableFrom": "session_movements", + "tableTo": "counting_sessions", + "columnsFrom": [ + "session_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.cyclist_profiles": { + "name": "cyclist_profiles", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "serial", + "primaryKey": true, + "notNull": true + }, + "data": { + "name": "data", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.direction": { + "name": "direction", + "schema": "public", + "values": [ + "north", + "east", + "south", + "west" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/packages/database/src/migrations/meta/_journal.json b/packages/database/src/migrations/meta/_journal.json index 23e5acc..c293d63 100644 --- a/packages/database/src/migrations/meta/_journal.json +++ b/packages/database/src/migrations/meta/_journal.json @@ -1,20 +1,41 @@ { - "version": "7", - "dialect": "postgresql", - "entries": [ - { - "idx": 0, - "version": "7", - "when": 1761026761308, - "tag": "0000_amused_ender_wiggin", - "breakpoints": true - }, - { - "idx": 1, - "version": "7", - "when": 1761053268476, - "tag": "0001_purple_gambit", - "breakpoints": true - } - ] -} + "version": "7", + "dialect": "postgresql", + "entries": [ + { + "idx": 0, + "version": "7", + "when": 1761026761308, + "tag": "0000_amused_ender_wiggin", + "breakpoints": true + }, + { + "idx": 1, + "version": "7", + "when": 1761053268476, + "tag": "0001_purple_gambit", + "breakpoints": true + }, + { + "idx": 2, + "version": "7", + "when": 1761486061056, + "tag": "0002_rapid_rattler", + "breakpoints": true + }, + { + "idx": 3, + "version": "7", + "when": 1761486100730, + "tag": "0003_clammy_raza", + "breakpoints": true + }, + { + "idx": 4, + "version": "7", + "when": 1761579187941, + "tag": "0004_long_ronan", + "breakpoints": true + } + ] +} \ No newline at end of file diff --git a/packages/database/src/schemas/bicycle-racks/index.ts b/packages/database/src/schemas/bicycle-racks/index.ts new file mode 100644 index 0000000..20cdc26 --- /dev/null +++ b/packages/database/src/schemas/bicycle-racks/index.ts @@ -0,0 +1 @@ +export * from "./schema.js"; diff --git a/packages/database/src/schemas/bicycle-racks/schema.ts b/packages/database/src/schemas/bicycle-racks/schema.ts new file mode 100644 index 0000000..964020d --- /dev/null +++ b/packages/database/src/schemas/bicycle-racks/schema.ts @@ -0,0 +1,88 @@ +import { pgTable, serial, text, timestamp } from "drizzle-orm/pg-core"; +import { createInsertSchema, createSelectSchema } from "drizzle-zod"; + +// ============================================================================ +// Bicycle Racks Schema +// ============================================================================ + +export const bicycleRacks = pgTable("bicycle_racks", { + id: serial("id").primaryKey(), + osm_id: text("osm_id").unique(), + osm_type: text("osm_type"), // 'node', 'way', 'relation' + + // Coordenadas (será convertida para PostGIS depois) + coordinates: text("coordinates"), // temporário, será geometry(Point, 4326) + + // Campos OSM principais + name: text("name"), + description: text("description"), + amenity: text("amenity").default("bicycle_parking"), + bicycle_parking: text("bicycle_parking"), // 'stands', 'wall_loops', 'shed', 'building', 'rack' + capacity: text("capacity"), + access: text("access"), // 'yes', 'private', 'permissive', 'customers' + covered: text("covered"), // 'yes', 'no' + fee: text("fee"), // 'yes', 'no' + supervised: text("supervised"), // 'yes', 'no' + lit: text("lit"), // 'yes', 'no' + + // Operação e localização + operator: text("operator"), + operator_type: text("operator_type"), // 'private', 'public', 'association' + building: text("building"), // 'yes', 'roof', 'retail' + level: text("level"), + surface: text("surface"), + + // Endereço (quando disponível) + addr_city: text("addr_city"), + addr_street: text("addr_street"), + addr_housenumber: text("addr_housenumber"), + addr_suburb: text("addr_suburb"), + addr_postcode: text("addr_postcode"), + + // Horários e pagamento + opening_hours: text("opening_hours"), + payment_none: text("payment_none"), + + // Referências + ref: text("ref"), + source: text("source"), + source_date: text("source_date"), + wikidata: text("wikidata"), + wikipedia: text("wikipedia"), + + created_at: timestamp("created_at").defaultNow().notNull(), + updated_at: timestamp("updated_at").defaultNow().notNull(), +}); + +// ============================================================================ +// Zod Schemas +// ============================================================================ + +export const insertBicycleRackSchema = createInsertSchema(bicycleRacks); +export const selectBicycleRackSchema = createSelectSchema(bicycleRacks); + +// ============================================================================ +// TypeScript Types +// ============================================================================ + +export type BicycleRack = typeof bicycleRacks.$inferSelect; +export type InsertBicycleRack = typeof bicycleRacks.$inferInsert; + +// ============================================================================ +// Bicycle Rack Cities Schema +// ============================================================================ + +export const bicycleRackCities = pgTable("bicycle_rack_cities", { + id: serial("id").primaryKey(), + osm_id: text("osm_id").notNull().unique(), + city: text("city").notNull(), + state: text("state").default("PE"), + created_at: timestamp("created_at").defaultNow().notNull(), + updated_at: timestamp("updated_at").defaultNow().notNull(), +}); + +export const insertBicycleRackCitySchema = createInsertSchema(bicycleRackCities); +export const selectBicycleRackCitySchema = createSelectSchema(bicycleRackCities); + +export type BicycleRackCity = typeof bicycleRackCities.$inferSelect; +export type InsertBicycleRackCity = typeof bicycleRackCities.$inferInsert; diff --git a/packages/database/src/seed-bicycle-racks.ts b/packages/database/src/seed-bicycle-racks.ts new file mode 100644 index 0000000..3d0a34f --- /dev/null +++ b/packages/database/src/seed-bicycle-racks.ts @@ -0,0 +1,196 @@ +import "dotenv/config"; +import { readFileSync } from "node:fs"; +import { join } from "node:path"; +import { closeDatabase, createConnectedDatabase } from "./connection.js"; +import { bicycleRacks, bicycleRackCities } from "./schemas/bicycle-racks/index.js"; + +interface GeoJSONFeature { + type: "Feature"; + properties: Record; + geometry: { + type: "Point" | "LineString" | "Polygon" | "MultiPolygon"; + coordinates: number[] | number[][] | number[][][]; + }; + id: string; +} + +interface GeoJSONFeatureCollection { + type: "FeatureCollection"; + features: GeoJSONFeature[]; +} + +function getPointFromGeometry( + geometry: GeoJSONFeature["geometry"], +): [number, number] | null { + switch (geometry.type) { + case "Point": + return geometry.coordinates as [number, number]; + + case "LineString": { + // Pega o ponto médio da linha + const coords = geometry.coordinates as [number, number][]; + if (coords.length === 0) return null; + const midIndex = Math.floor(coords.length / 2); + return coords[midIndex] || null; + } + + case "Polygon": { + // Calcula centroide simples do primeiro anel + const ring = (geometry.coordinates as number[][][])[0]; + if (!ring || ring.length === 0) return null; + let sumLng = 0, + sumLat = 0; + for (const coord of ring) { + if (coord && coord.length >= 2 && typeof coord[0] === 'number' && typeof coord[1] === 'number') { + sumLng += coord[0]; + sumLat += coord[1]; + } + } + return [sumLng / ring.length, sumLat / ring.length]; + } + + default: + return null; + } +} + +async function seedBicycleRacksFromGeoJSON() { + const db = await createConnectedDatabase(); + + try { + // Lê o arquivo GeoJSON + const geojsonPath = join( + process.cwd(), + "../../apps/bicycle-racks/src/db/bicicletarios-brasil.geojson", + ); + const geojsonData = readFileSync(geojsonPath, "utf-8"); + const geojson: GeoJSONFeatureCollection = JSON.parse(geojsonData); + + console.log( + `📍 Processando ${geojson.features.length} features do GeoJSON...`, + ); + + const bicycleRacksData = []; + + for (const feature of geojson.features) { + const props = feature.properties; + + // Só processa se tem amenity=bicycle_parking ou bicycle_parking definido + if ( + !(typeof props.amenity === "string" && props.amenity.includes("bicycle_parking")) && + !props.bicycle_parking + ) { + continue; + } + + // Extrai coordenadas (ponto ou centroide) + const point = getPointFromGeometry(feature.geometry); + if (!point) continue; + + const [lng, lat] = point; + const wktPoint = `POINT(${lng} ${lat})`; + + bicycleRacksData.push({ + osm_id: (props["@id"] as string) || feature.id, + osm_type: (typeof props["@id"] === "string" ? props["@id"].split("/")[0] : null) || "unknown", + coordinates: wktPoint, + name: (props.name as string) || null, + description: (props.description as string) || null, + amenity: (props.amenity as string) || "bicycle_parking", + bicycle_parking: (props.bicycle_parking as string) || null, + capacity: (props.capacity as string) || null, + access: (props.access as string) || null, + covered: (props.covered as string) || null, + fee: (props.fee as string) || null, + supervised: (props.supervised as string) || null, + lit: (props.lit as string) || null, + operator: (props.operator as string) || null, + operator_type: (props.operator_type as string) || null, + building: (props.building as string) || null, + level: (props.level as string) || null, + surface: (props.surface as string) || null, + addr_city: (props["addr:city"] as string) || null, + addr_street: (props["addr:street"] as string) || null, + addr_housenumber: (props["addr:housenumber"] as string) || null, + addr_suburb: (props["addr:suburb"] as string) || null, + addr_postcode: (props["addr:postcode"] as string) || null, + opening_hours: (props.opening_hours as string) || null, + payment_none: (props.payment_none as string) || null, + ref: (props.ref as string) || null, + source: (props.source as string) || null, + source_date: (props.source_date as string) || null, + wikidata: (props.wikidata as string) || null, + wikipedia: (props.wikipedia as string) || null, + }); + } + + console.log(`🚲 Inserindo ${bicycleRacksData.length} bicicletários...`); + + // Insere em lotes + const batchSize = 100; + for (let i = 0; i < bicycleRacksData.length; i += batchSize) { + const batch = bicycleRacksData.slice(i, i + batchSize); + await db.insert(bicycleRacks).values(batch).onConflictDoNothing(); + console.log( + `✅ Inserido lote ${Math.floor(i / batchSize) + 1}/${Math.ceil(bicycleRacksData.length / batchSize)}`, + ); + } + + console.log( + `🎉 Seed concluído! ${bicycleRacksData.length} bicicletários inseridos.`, + ); + + // Agora popula dados do Recife + await seedRecifeCities(db); + } catch (error) { + console.error("❌ Erro no seed:", error); + process.exit(1); + } finally { + await closeDatabase(db); + } +} + +// Executa se chamado diretamente +if (import.meta.url === `file://${process.argv[1]}`) { + seedBicycleRacksFromGeoJSON(); +} + +async function seedRecifeCities(db: any) { + try { + // Lê o arquivo GeoJSON do Recife + const recifeGeojsonPath = join( + process.cwd(), + "../../apps/bicycle-racks/src/db/ciclomapa-Recife, Pernambuco, Brasil.geojson", + ); + const recifeData = readFileSync(recifeGeojsonPath, "utf-8"); + const recifeGeojson = JSON.parse(recifeData); + + // Filtra apenas bicicletários + const bicicletarios = recifeGeojson.features.filter( + (feature: any) => feature.properties.type === "Bicicletários" + ); + + console.log(`🏙️ Encontrados ${bicicletarios.length} bicicletários do Recife`); + + // Prepara dados para inserção + const cityMappings = bicicletarios.map((feature: any) => ({ + osm_id: feature.id, + city: "Recife", + state: "PE", + })); + + // Insere no banco (ignora duplicatas) + if (cityMappings.length > 0) { + await db + .insert(bicycleRackCities) + .values(cityMappings) + .onConflictDoNothing(); + + console.log(`✅ Inseridos ${cityMappings.length} mapeamentos OSM ID → Recife`); + } + } catch (error) { + console.error("❌ Erro ao popular dados do Recife:", error); + } +} + +export { seedBicycleRacksFromGeoJSON }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a159a77..47a08d2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,6 +24,61 @@ importers: specifier: 5.9.3 version: 5.9.3 + apps/bicycle-racks: + dependencies: + '@atlas/database': + specifier: workspace:* + version: link:../../packages/database + '@hono/node-server': + specifier: ^1.14.1 + version: 1.19.5(hono@4.10.2) + '@hono/zod-openapi': + specifier: ^0.19.6 + version: 0.19.10(hono@4.10.2)(zod@3.25.76) + dotenv: + specifier: ^16.5.0 + version: 16.6.1 + drizzle-orm: + specifier: ^0.43.1 + version: 0.43.1(@types/pg@8.15.5)(pg@8.16.3) + hono: + specifier: ^4.7.7 + version: 4.10.2 + hono-pino: + specifier: ^0.8.0 + version: 0.8.0(hono@4.10.2)(pino@9.14.0) + pg: + specifier: ^8.14.1 + version: 8.16.3 + pino: + specifier: ^9.6.0 + version: 9.14.0 + pino-pretty: + specifier: ^13.0.0 + version: 13.1.2 + stoker: + specifier: ^1.4.2 + version: 1.4.3(@asteasolutions/zod-to-openapi@7.3.0(zod@3.25.76))(@hono/zod-openapi@0.19.10(hono@4.10.2)(zod@3.25.76))(hono@4.10.2)(openapi3-ts@4.5.0) + zod: + specifier: ^3.24.4 + version: 3.25.76 + devDependencies: + '@types/node': + specifier: ^22.15.17 + version: 22.18.12 + '@types/pg': + specifier: ^8.11.13 + version: 8.15.5 + tsx: + specifier: ^4.19.3 + version: 4.20.6 + typescript: + specifier: ^5.8.3 + version: 5.9.3 + vitest: + specifier: ^3.1.3 + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(tsx@4.20.6)(yaml@2.8.1) + apps/cyclist-counts: dependencies: '@atlas/database':