{"ghostPresences":[],"validMapImageMimeTypes":["application/pdf","application/postscript","application/x-photoshop","image/apng","image/avif","image/bmp","image/heic","image/jp2","image/jpeg","image/jpm","image/jpx","image/jxr","image/pict","image/pjpeg","image/png","image/svg+xml","image/vnd.adobe.photoshop","image/vnd.microsoft.icon","image/webp","image/x-icns","image/x-icon","image/x-pict"],"kartaChannel":"anonymous_map:14fcaf4d-b5d1-4329-9c22-026ee543d70d","showBasemapLabels":true,"customViewport":null,"teamAdminEmails":[],"isAdmin":false,"buildSha":"8d089b0a145146092a309df36e984ebd9b124785","mapFolderId":null,"isTrainingKarta":false,"defaultZoom":14.0,"settings":{"path":"/map/Geo-Party-at-AWS-re-Invent-FPyvTbXRQymcIgJu5UPXDB","url":"https://felt.com/map/Geo-Party-at-AWS-re-Invent-FPyvTbXRQymcIgJu5UPXDB","mapDescription":null,"mapTitle":"Geo Party at AWS re:Invent","viewers":{"allowExport":false,"dataTable":true,"defaultTableLayerId":null,"duplicateMap":true,"seeMapPresence":true}},"canCreateMapsSomewhere":false,"maxTileURLLength":2000,"selectedDefaultBackgroundMode":"dark","isAdminView":false,"accessControl2":{"view":{"canDownloadLayers":false,"canDuplicate":false,"showPublicEditingSetting":false,"showPublicSharingSetting":false},"edit":{"canChangePublicSharingSettings":false,"canEdit":false,"canEditDuplicateSetting":false,"canInviteUsers":false,"canMove":false},"comments":{"canCreateThread":false,"canDeleteAnyComment":false,"canDeleteOwnComment":false,"canEditOwnComment":false,"canExportComments":false,"canReplyToThread":false,"canResolveAnyComment":false,"canResolveOwnComment":false,"canTrackReadStatus":false,"canViewAllThreads":false},"teams":{"canAddSources":false,"canCreateFolders":false,"canDeletePublishedLayer":false,"canDeleteSource":false,"canDeleteTeam":false,"canEditFolders":false,"canEditTeamMetadata":false,"canInviteTeamMember":false,"canPublishLayer":false,"canRevokeTeamMemberInvitation":false},"kartaTeamMemberIds":[]},"constraints":{"bounds":null,"maxZoom":null,"minZoom":null},"flashMessages":[],"satelliteMode":false,"urls":{"api":"/api","settings":"/users/settings","dashboard":"/maps","marketing":"/","newMap":"/map/new","newWorkspace":"/join","placeholderImage":"/images/placeholder-39c4259c68cef774b08a1a06e6626c95.png?vsn=d","catchup":"/map/Geo-Party-at-AWS-re-Invent-FPyvTbXRQymcIgJu5UPXDB/catchup","canonicalPath":"/map/Geo-Party-at-AWS-re-Invent-FPyvTbXRQymcIgJu5UPXDB","spritesBaseUrl":"https://app-assets.felt.com/sprites","spritesManifest":{"/sprites/msdf.json":"/sprites/msdf-0ed695ece9e09531d79ea4daa8255599.json","/sprites/msdf.png":"/sprites/msdf-235245f7cf195ff0eb39cf7a7b8fa6e9.png","/sprites/msdf@2x.json":"/sprites/msdf@2x-1e78f109cb6438c7e87da1f75344a7b7.json","/sprites/msdf@2x.png":"/sprites/msdf@2x-73817a584887afef4c1e0188642592ab.png","/sprites/sprite.json":"/sprites/sprite-964569eef729aa4773a354b47cee5d86.json","/sprites/sprite.png":"/sprites/sprite-819511448f6f2499deff86603ff78215.png","/sprites/sprite@2x.json":"/sprites/sprite@2x-24e211e07ce576bf48740474ed7d6547.json","/sprites/sprite@2x.png":"/sprites/sprite@2x-87cb20c28d14435142f4e32339e093dd.png"},"workspaceUsage":null},"widgets":[],"layerAttrConstraints":{"maxNameLength":300},"referer":null,"sources":[],"individualPermissions":[],"selectedBackgroundId":null,"isVirtualKarta":false,"scripts":[{"id":"2d3c9d05-f1f9-4ca4-a925-eee319eef25d","name":"Custom extension","threads":[{"id":"750ecada-4211-4986-a1ec-0f04fc728dda","insertedAt":"2025-10-22T20:37:19.377953","scriptId":"2d3c9d05-f1f9-4ca4-a925-eee319eef25d"}],"content":"// Get all session features from the layer\nconst layerId = \"JZThiTRESveA7DtQXrXg0C\";\nconst sessions = [];\nlet hasMore = true;\nlet pagination = null;\n\nconsole.log(\"Starting to load sessions...\");\n\n// Show loading panel first\nconst panelId = await felt.createPanelId();\nconsole.log(\"Created panel ID:\", panelId);\n\nawait felt.createOrUpdatePanel({\n panel: {\n id: panelId,\n title: \"AWS re:Invent Geo Sessions\",\n body: [\n {\n type: \"Text\",\n content: \"Loading sessions...\"\n }\n ]\n }\n});\n\nconsole.log(\"Initial loading panel created\");\n\n// Fetch all sessions with pagination\nwhile (hasMore) {\n const response = await felt.getFeatures({\n layerId: layerId,\n pagination: pagination,\n pageSize: 20\n });\n \n sessions.push(...response.features);\n pagination = response.nextPage;\n hasMore = response.nextPage !== null;\n \n console.log(`Loaded ${sessions.length} sessions so far...`);\n}\n\nconsole.log(`Finished loading ${sessions.length} total sessions`);\n\n// Function to parse day and time from dayTime field\nfunction parseDayTime(dayTimeStr) {\n if (!dayTimeStr) return { day: \"Unknown\", time: \"Unknown\", sortKey: \"9999\" };\n \n // Extract day (Monday, Tuesday, etc.)\n const dayMatch = dayTimeStr.match(/(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday)/);\n const day = dayMatch ? dayMatch[1] : \"Unknown\";\n \n // Extract time (e.g., \"5:00 p.m.\")\n const timeMatch = dayTimeStr.match(/(\\d{1,2}:\\d{2}\\s*[ap]\\.?m\\.?)/i);\n const time = timeMatch ? timeMatch[1] : \"Unknown\";\n \n // Create sort key for chronological ordering\n const dayOrder = {\n \"Monday\": \"1\",\n \"Tuesday\": \"2\", \n \"Wednesday\": \"3\",\n \"Thursday\": \"4\",\n \"Friday\": \"5\",\n \"Saturday\": \"6\",\n \"Sunday\": \"7\"\n };\n \n // Convert time to 24-hour format for sorting\n let hourSort = \"99\";\n if (timeMatch) {\n const timeParts = timeMatch[1].match(/(\\d{1,2}):(\\d{2})\\s*([ap])/i);\n if (timeParts) {\n let hour = parseInt(timeParts[1]);\n const minute = timeParts[2];\n const ampm = timeParts[3].toLowerCase();\n \n if (ampm === 'p' && hour !== 12) hour += 12;\n if (ampm === 'a' && hour === 12) hour = 0;\n \n hourSort = hour.toString().padStart(2, '0') + minute;\n }\n }\n \n const sortKey = (dayOrder[day] || \"9\") + hourSort;\n \n return { day, time, sortKey };\n}\n\n// Function to format session type and level\nfunction formatSessionMeta(type, level) {\n const parts = [];\n if (type && type !== \"N/A\") parts.push(type);\n if (level && level !== \"N/A\") parts.push(`Level ${level}`);\n return parts.length > 0 ? `*${parts.join(\" • \")}*` : \"\";\n}\n\n// Function to format speakers list\nfunction formatSpeakers(speakers) {\n if (!speakers || speakers === \"TBD\") return \"**Speakers:** TBD\";\n \n // Split by semicolon and clean up\n const speakerList = speakers.split(';').map(s => s.trim()).filter(s => s.length > 0);\n \n if (speakerList.length === 1) {\n return `**Speaker:** ${speakerList[0]}`;\n } else {\n return `**Speakers:** ${speakerList.join(\", \")}`;\n }\n}\n\n// Function to locate session on map\nasync function locateSessionOnMap(sessionId, sessionTitle) {\n try {\n console.log(`Attempting to locate session ${sessionId}: ${sessionTitle}`);\n \n // Find the session feature by ID\n const sessionFeature = sessions.find(s => s.properties.id === sessionId);\n \n if (!sessionFeature) {\n console.log(`Session ${sessionId} not found in features`);\n return;\n }\n \n // Select the feature to highlight it and show popup\n await felt.selectFeature({\n id: sessionFeature.id,\n layerId: layerId,\n showPopup: true,\n fitViewport: { maxZoom: 16 }\n });\n \n console.log(`Successfully located session ${sessionId}: ${sessionTitle} on map`);\n \n } catch (error) {\n console.error(`Error locating session ${sessionId}:`, error);\n }\n}\n\n// Parse and organize sessions\nconst organizedSessions = {};\n\nconsole.log(\"Parsing and organizing sessions...\");\n\nsessions.forEach(session => {\n const props = session.properties;\n const { day, time, sortKey } = parseDayTime(props.dayTime);\n \n const sessionData = {\n id: props.id || \"N/A\",\n featureId: session.id, // Store the feature ID for map selection\n title: props.title || \"Untitled Session\",\n type: props.type || \"\",\n level: props.level || \"\",\n speakers: props.speakers || \"TBD\",\n venue: props.venue || \"TBD\",\n time: time,\n sortKey: sortKey\n };\n \n if (!organizedSessions[day]) {\n organizedSessions[day] = [];\n }\n \n organizedSessions[day].push(sessionData);\n});\n\n// Sort sessions within each day by time\nObject.keys(organizedSessions).forEach(day => {\n organizedSessions[day].sort((a, b) => a.sortKey.localeCompare(b.sortKey));\n});\n\n// Sort days\nconst dayOrder = [\"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\", \"Sunday\"];\nconst sortedDays = Object.keys(organizedSessions).sort((a, b) => {\n const indexA = dayOrder.indexOf(a);\n const indexB = dayOrder.indexOf(b);\n if (indexA === -1 && indexB === -1) return a.localeCompare(b);\n if (indexA === -1) return 1;\n if (indexB === -1) return -1;\n return indexA - indexB;\n});\n\nconsole.log(\"Organized sessions by days:\", Object.keys(organizedSessions));\n\n// Track which days are expanded\nlet expandedDays = [];\n\n// Function to build panel content based on expanded days\nfunction buildPanelContent() {\n const content = [];\n \n // Add toggle for each day (no summary section)\n sortedDays.forEach(day => {\n const daySessions = organizedSessions[day];\n const dayValue = `day-${day}`;\n \n // Create toggle group options\n const toggleOptions = [{\n label: `${day} • ${daySessions.length} sessions`,\n value: dayValue\n }];\n \n content.push({\n id: `toggle-${day}`,\n type: \"ToggleGroup\",\n label: \"\",\n options: toggleOptions,\n value: expandedDays.includes(dayValue) ? [dayValue] : [],\n onChange: ({ value }) => {\n console.log(`Toggle changed for ${day}:`, value);\n // Update expanded days\n if (value.includes(dayValue)) {\n if (!expandedDays.includes(dayValue)) {\n expandedDays.push(dayValue);\n }\n } else {\n expandedDays = expandedDays.filter(d => d !== dayValue);\n }\n \n // Rebuild and update panel\n updatePanel();\n }\n });\n \n // Show sessions if day is expanded\n if (expandedDays.includes(dayValue)) {\n daySessions.forEach((session, index) => {\n // Create session content with better hierarchy\n let sessionContent = `## ${session.title}\\n\\n`;\n \n // Session ID and metadata\n sessionContent += `**${session.id}**`;\n const metaInfo = formatSessionMeta(session.type, session.level);\n if (metaInfo) {\n sessionContent += ` • ${metaInfo}`;\n }\n sessionContent += `\\n\\n`;\n \n // Venue and time block - venue first, then time\n sessionContent += `📍 **${session.venue}**\\n`;\n sessionContent += `### 📅 ${session.time}\\n\\n`;\n \n // Speakers\n sessionContent += `👥 ${formatSpeakers(session.speakers)}`;\n \n content.push({\n id: `session-${day}-${index}`,\n type: \"Text\",\n content: sessionContent\n });\n \n // Add locate button with new label\n content.push({\n id: `locate-btn-${day}-${index}`,\n type: \"Button\",\n label: \"More details\",\n variant: \"outlined\",\n tint: \"primary\",\n onClick: () => locateSessionOnMap(session.id, session.title)\n });\n \n // Add spacing between sessions\n if (index < daySessions.length - 1) {\n content.push({\n id: `divider-${day}-${index}`,\n type: \"Divider\"\n });\n }\n });\n \n // Add divider after day section if not last day\n const dayIndex = sortedDays.indexOf(day);\n if (dayIndex < sortedDays.length - 1) {\n content.push({\n id: `day-divider-${day}`,\n type: \"Divider\"\n });\n }\n }\n });\n \n return content;\n}\n\n// Function to update panel content\nasync function updatePanel() {\n console.log(\"Updating panel content...\");\n \n try {\n const content = buildPanelContent();\n \n await felt.createOrUpdatePanel({\n panel: {\n id: panelId,\n title: \"AWS re:Invent Geo Sessions\",\n body: content\n }\n });\n \n console.log(\"Panel updated successfully\");\n } catch (error) {\n console.error(\"Error updating panel:\", error);\n }\n}\n\n// Initial panel update with content\nconsole.log(\"Creating final panel...\");\nawait updatePanel();\nconsole.log(\"Panel creation complete\");","insertedAt":"2025-10-22T20:37:19","zOrder":-1}],"actions":[],"teams":[],"partnerBranding":null,"featureFlags":{"ff_extensions_use_next_sdk":false,"ff_new_source_inspection":true,"felt_is_up":true,"ff_copy_paste_styles":false,"ff_editable_layers":false,"ff_growth_enterprise_trials":true,"ff_isr":false,"ff_mobile":true,"ff_mobile_alpha":false,"ff_more_components":false,"ff_photos_in_comments":false,"ff_server_side_filtering":true,"ff_use_our_tiles":false},"workspaceBilling":{"plan_limits":{"processing_bytes":50000000000,"storage_bytes":250000000000,"editor_limit":25,"member_limit":250,"api_calls":20000,"map_views":100000},"limits_enforced":true,"next_monthly_cycle_start":1764547200000,"plan_data_usage":{"data_processing":0,"data_storage":5188008379},"featureGroups":{"enterprise_geocoding":false,"dashboards":true,"cloud_sources":true,"app_development":true,"raster_infrastructure":true},"inGracePeriod":false},"shareUrl":"https://felt.com/map/Geo-Party-at-AWS-re-Invent-FPyvTbXRQymcIgJu5UPXDB","mapbox_api_token":"pk.eyJ1IjoiZmVsdG1hcHMiLCJhIjoiY20wZndoenl1MTFrYzJxb2czemdpNGFvZCJ9.y7NzVOMNQNTC487xOYTk7Q","createMapParams":null,"validGeoDataExtensions":[".json",".geojson"],"checkerboardTiles":false,"defaultCoordinates":{"lat":37.807,"lng":-122.271},"onboardingNeeded":[],"curated_layers_enabled":true,"isOwner":false,"curatedLayerGroupIds":["03fd52c6-4fd0-4b94-94e6-fffb1632cc25","a2a1b588-0033-43d3-9904-1ffb6fc9a527","bb2287e9-0263-4086-a7f2-f4a47fca98c2","b14b3425-b2f9-4696-9903-4194f85a526d","c617d15e-35fa-4b13-ace4-6ac93553b955","a20b9bdb-dbf8-44f8-bdef-d50835a77419","3b3e9068-28b2-48ac-bd55-b571abdd8684","66d56eca-8248-423d-b2ba-fd62d6f94705","62f686e4-264f-44ec-a949-540642536966","b27bceff-7211-4b8d-bfd4-6df69055bda7","66b829b3-3b1f-4624-b85f-a7fbdc13e848","38f09207-4c6d-47f1-87c9-672beaa4fdd6","fc2c6ad1-3469-4c94-8c6c-c2bca4d3097e","84cbf52b-c9b1-4a6b-8a1e-25a03f2fc98d","5a11bd4c-e520-4623-9028-54e2806ba99e","1bd02aff-885c-4629-bb29-1dc74699caec","64f524c5-599f-400c-9ece-fa04cfde052a","c551a1e5-11aa-4766-98c1-700460d058da","5d06d982-7012-4788-ba2c-19d113cbedcf","6985fa13-ebc6-4805-80eb-98c48d04e9e4","9fb9eae9-daad-4fc2-9132-b0a4a66fd4f2","d8610b64-2331-4599-bf99-449176a02097","e7b36a2b-d93b-48bb-be74-7d021603c23e","f21a8ae4-452b-4872-966d-b3911af83704","6b65719f-827e-48dc-a750-28ad07a84bee","99d984de-e087-49a2-817e-842b70ac837c","02dff653-636f-4daf-8b4c-bc5b4f1cbbd5","b99dcc06-ed29-42dc-8cbe-cbef423bcac8","837a4162-186b-4b26-9879-cb67a4175248","7773c37b-bf89-4794-b5e6-7510af36c70b","709c4997-25b6-43a2-a9e0-695a5b92ecc1","6b9679fc-3f7d-49da-ba8d-28e25e96bdc2","a3b54a4d-e69e-4f7f-bb34-b481f788b4da","ed86369f-f4dd-4d8d-b146-b428e9dd36e2","b28d872b-8e20-4874-a6ee-eceda4459fd2","118e7b5c-a796-4ca3-ba85-62ad5844a7d3","6fe7b28c-d5e1-4a96-9d23-4fab58850fd2","a135cc86-8def-4671-aa6d-4543cfa1121c","b36ec292-79c3-4d96-b448-f875d9f9f913","e3ad4d90-90aa-4cf6-b23e-4c0e171f92a7","59cd8f40-03b7-461a-9793-d32ba646f83d","8ee8bb48-b7e8-46e9-ba79-9bcf1f1d07fb","76ab7a7c-97b3-440f-82b8-a4a304dd3bf9","0d9cb5a2-a101-40bd-bc90-6c374e4ca591","4972fba3-6753-4476-ac37-783fe9f3101a","5fe085ea-4c91-4b2a-8e31-2ec35b7649cd","06e2ae5e-8339-4721-8498-361817fc115b","1086d588-3aa8-46e4-b64a-b74646e2e045","87afafc9-ff29-42d1-85c7-3e2c64682a36","48c4d285-4c86-48f7-9897-9951477b1c22","f82aaa5d-c171-48d9-8d4a-ec6632a456db","903f37cd-4b54-4fbe-9403-507309293c95","084466f7-3d3a-4341-a424-5318d7a63e3e","fb461c3d-1778-4eed-9877-140233a44ac0","c1e9ad62-1902-4067-a0f5-1ff53f097199","b0ff761d-2b81-4b3c-83aa-672fa6a763d9","c4e82ec5-35ee-4784-958f-f677dec2fa81","0ab0a9b1-34db-4af3-b153-bdd21d6bd9ea","a700815b-9d11-471f-b3ce-bb6b06eab3ae","23988f85-3051-40f7-8feb-115143b93ac7","a66b8cb5-8aef-442b-bdf5-6b017a9450f8","02eed48c-425c-4a66-9153-fb64f8724304","c544d13c-191d-43c9-87c1-29cdb700c357","31d22d23-61ae-4f79-b52a-4c81d46904a1","53ac92ab-95a7-426c-876f-53e6ca2b063e","260e56a5-a94e-4551-9793-4dac5cea089e","14ad86d7-521f-4936-9a7b-9fb5bd363084","cf6dadff-1dd1-4add-984c-291d557d1124","f4026aec-db04-430b-b30c-9329c7328963","f8912669-cb7e-4be0-94fa-82750080b87b","c710934e-2623-4020-9c5e-7933741b6a2b","734588bc-ce4e-4384-a916-26352f9d2313","1eac67bf-cce3-4440-aedc-dbb527df9489","47485391-1f60-4844-b5b0-243ee3112385","849c79ca-2195-4205-9c27-4f57885aef85","306ff28f-9ad0-49f0-8b35-b64bca64f5da"],"resyncTimeoutMs":5250,"layerGroups":[{"id":"865f9de3-a995-424d-adb1-79e0c7efcafc","name":"Buildings","visible":true,"description":"Building footprints from Daylight Map Distribution v1.22.\n\nDaylight building footprints is a joint product of Microsoft Building Footprints and Esri Community Maps Program. It combines the positional accuracy of Microsoft’s footprint data creation and authoritative tags such as name and address provided by authoritative sources in collaboration with Esri.","created_at":"2025-10-22T20:22:47","layers":[{"stats_url":"https://data-pipeline.felt.com/dc3e1ee4-ed71-5cbf-ae9a-33434d11ada6/stats/stats.json","userTimeUpdatedIso8601":null,"tile_max_zoom":null,"has_download_url":false,"created_by":"Data Library","initial_stroke_color":null,"description":"Building footprints from Daylight Map Distribution v1.22.\n\nDaylight building footprints is a joint product of Microsoft Building Footprints and Esri Community Maps Program. It combines the positional accuracy of Microsoft’s footprint data creation and authoritative tags such as name and address provided by authoritative sources in collaboration with Esri.","created_at":"2025-10-22T20:22:47","modified_at":"2025-10-22T21:08:08","raster_details":null,"hash_url":null,"sourceUrl":"https://daylightmap.org/buildings.html","min_zoom":null,"pipeline_dataset_id":"dc3e1ee4-ed71-5cbf-ae9a-33434d11ada6","runCause":"upload","html_popup_threads":[],"visible":true,"initial_fill_color":null,"h3_geomatched_level":null,"stac_url":null,"pipeline_version":null,"legendVisibility":"hide","errorType":null,"column_selections":[],"remote_data_url":null,"last_processed_at":"2023-06-23T21:18:58","source_dataset_id":null,"geometry_type":"Polygon","attributionUrl":null,"source_has_custom_query":false,"bounding_box":{"coordinates":[[[117.070313,-51.835778],[117.070313,63.312683],[-136.054688,63.312683],[-136.054688,-51.835778],[117.070313,-51.835778]]],"crs":{"properties":{"name":"EPSG:4326"},"type":"name"},"type":"Polygon"},"external_refresh_frequency_ms":null,"status":"completed","geomatch_metadata":null,"sql_query_threads":[],"legendDisplay":"default","raster_colors":null,"is_convertible_to_elements":false,"tile_url":"https://data-pipeline.felt.com/onetile/dc3e1ee4-ed71-5cbf-ae9a-33434d11ada6/{z}/{x}/{y}.pbf","z_order":0,"ready_for_immediate_export":true,"progress":100,"html_popup_source":null,"raster_preview_url":null,"feature_url":"https://data-pipeline.felt.com/onefeature/dc3e1ee4-ed71-5cbf-ae9a-33434d11ada6/{feature}.geojson{?skip_geometry}","geocoder_metadata":null,"h3_levels":null,"sourceName":"Daylight Map Distribution","next_processing_state":null,"layer_name":"parsed","processing_time_seconds":10976870,"stats":[],"source_id":null,"parsed_size_bytes":156500992000,"errorMessage":null,"legend_items":[{"id":"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5-0","visible":true}],"id":"859f3008-61ec-46b6-91a4-9c4b7aae187e","subtitle":"","name":"Buildings","edit_version":null,"scheduled_refresh_status":null,"index_json_url":"https://data-pipeline.felt.com/upload/28e8de80-73da-4d24-99ce-80c1ce8a9588.json","userDateUpdatedIso8601":"2023-01-20","normalized":null,"hideFromLegend":false,"data_last_updated_by_user_at":"2023-06-23T21:18:58","sourceAbbreviation":"Daylight Map Distribution","license":"Open Database License (ODbL)\nPREAMBLE\nThe Open Database License (ODbL) is a license agreement intended to allow users to freely share, modify, and use this Database while maintaining this same freedom for others. Many databases are covered by copyright, and therefore this document licenses these rights. Some jurisdictions, mainly in the European Union, have specific rights that cover databases, and so the ODbL addresses these rights, too. Finally, the ODbL is also an agreement in contract for users of this Database to act in certain ways in return for accessing this Database.\n\nDatabases can contain a wide variety of types of content (images, audiovisual material, and sounds all in the same database, for example), and so the ODbL only governs the rights over the Database, and not the contents of the Database individually. Licensors should use the ODbL together with another license for the contents, if the contents have a single set of rights that uniformly covers all of the contents. If the contents have multiple sets of different rights, Licensors should describe what rights govern what contents together in the individual record or in some other way that clarifies what rights apply.\n\nSometimes the contents of a database, or the database itself, can be covered by other rights not addressed here (such as private contracts, trade mark over the name, or privacy rights / data protection rights over information in the contents), and so you are advised that you may have to consult other documents or clear other rights before doing activities not covered by this License.\n\nThe Licensor (as defined below)\n\nand\n\nYou (as defined below)\n\nagree as follows:\n\n1.0 DEFINITIONS OF CAPITALISED WORDS\n“Collective Database” – Means this Database in unmodified form as part of a collection of independent databases in themselves that together are assembled into a collective whole. A work that constitutes a Collective Database will not be considered a Derivative Database.\n\n“Convey” – As a verb, means Using the Database, a Derivative Database, or the Database as part of a Collective Database in any way that enables a Person to make or receive copies of the Database or a Derivative Database. Conveying does not include interaction with a user through a computer network, or creating and Using a Produced Work, where no transfer of a copy of the Database or a Derivative Database occurs. “Contents” – The contents of this Database, which includes the information, independent works, or other material collected into the Database. For example, the contents of the Database could be factual data or works such as images, audiovisual material, text, or sounds.\n\n“Database” – A collection of material (the Contents) arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this License.\n\n“Database Directive” – Means Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended or succeeded.\n\n“Database Right” – Means rights resulting from the Chapter III (“sui generis”) rights in the Database Directive (as amended and as transposed by member states), which includes the Extraction and Re-utilisation of the whole or a Substantial part of the Contents, as well as any similar rights available in the relevant jurisdiction under Section 10.4.\n\n“Derivative Database” – Means a database based upon the Database, and includes any translation, adaptation, arrangement, modification, or any other alteration of the Database or of a Substantial part of the Contents. This includes, but is not limited to, Extracting or Re-utilising the whole or a Substantial part of the Contents in a new Database.\n\n“Extraction” – Means the permanent or temporary transfer of all or a Substantial part of the Contents to another medium by any means or in any form.\n\n“License” – Means this license agreement and is both a license of rights such as copyright and Database Rights and an agreement in contract.\n\n“Licensor” – Means the Person that offers the Database under the terms of this License.\n\n“Person” – Means a natural or legal person or a body of persons corporate or incorporate.\n\n“Produced Work” – a work (such as an image, audiovisual material, text, or sounds) resulting from using the whole or a Substantial part of the Contents (via a search or other query) from this Database, a Derivative Database, or this Database as part of a Collective Database.\n\n“Publicly” – means to Persons other than You or under Your control by either more than 50% ownership or by the power to direct their activities (such as contracting with an independent consultant).\n\n“Re-utilisation” – means any form of making available to the public all or a Substantial part of the Contents by the distribution of copies, by renting, by online or other forms of transmission.\n\n“Substantial” – Means substantial in terms of quantity or quality or a combination of both. The repeated and systematic Extraction or Re-utilisation of insubstantial parts of the Contents may amount to the Extraction or Re-utilisation of a Substantial part of the Contents.\n\n“Use” – As a verb, means doing any act that is restricted by copyright or Database Rights whether in the original medium or any other; and includes without limitation distributing, copying, publicly performing, publicly displaying, and preparing derivative works of the Database, as well as modifying the Database as may be technically necessary to use it in a different mode or format.\n\n“You” – Means a Person exercising rights under this License who has not previously violated the terms of this License with respect to the Database, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\n\nWords in the singular include the plural and vice versa.\n\n2.0 WHAT THIS LICENSE COVERS\n2.1. Legal effect of this document. This License is:\n\na. A license of applicable copyright and neighbouring rights;\n\nb. A license of the Database Right; and\n\nc. An agreement in contract between You and the Licensor.\n\n2.2 Legal rights covered. This License covers the legal rights in the Database, including:\n\na. Copyright. Any copyright or neighbouring rights in the Database. The copyright licensed includes any individual elements of the Database, but does not cover the copyright over the Contents independent of this Database. See Section 2.4 for details. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and output sheets; and the Field names of Contents stored in the Database;\n\nb. Database Rights. Database Rights only extend to the Extraction and Re-utilisation of the whole or a Substantial part of the Contents. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Contents are removed from the Database and are selected and arranged in a way that would not infringe any applicable copyright; and\n\nc. Contract. This is an agreement between You and the Licensor for access to the Database. In return you agree to certain conditions of use on this access as outlined in this License.\n\n2.3 Rights not covered.\n\na. This License does not apply to computer programs used in the making or operation of the Database;\n\nb. This License does not cover any patents over the Contents or the Database; and\n\nc. This License does not cover any trademarks associated with the Database.\n\n2.4 Relationship to Contents in the Database. The individual items of the Contents contained in this Database may be covered by other rights, including copyright, patent, data protection, privacy, or personality rights, and this License does not cover any rights (other than Database Rights or in contract) in individual Contents contained in the Database. For example, if used on a Database of images (the Contents), this License would not apply to copyright over individual images, which could have their own separate licenses, or one single license covering all of the rights over the images.\n\n3.0 RIGHTS GRANTED\n3.1 Subject to the terms and conditions of this License, the Licensor grants to You a worldwide, royalty-free, non-exclusive, terminable (but only under Section 9) license to Use the Database for the duration of any applicable copyright and Database Rights. These rights explicitly include commercial use, and do not exclude any field of endeavour. To the extent possible in the relevant jurisdiction, these rights may be exercised in all media and formats whether now known or created in the future.\n\nThe rights granted cover, for example:\n\na. Extraction and Re-utilisation of the whole or a Substantial part of the Contents;\n\nb. Creation of Derivative Databases;\n\nc. Creation of Collective Databases;\n\nd. Creation of temporary or permanent reproductions by any means and in any form, in whole or in part, including of any Derivative Databases or as a part of Collective Databases; and\n\ne. Distribution, communication, display, lending, making available, or performance to the public by any means and in any form, in whole or in part, including of any Derivative Database or as a part of Collective Databases.\n\n3.2 Compulsory license schemes. For the avoidance of doubt:\n\na. Non-waivable compulsory license schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;\n\nb. Waivable compulsory license schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,\n\nc. Voluntary license schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.\n\n3.3 The right to release the Database under different terms, or to stop distributing or making available the Database, is reserved. Note that this Database may be multiple-licensed, and so You may have the choice of using alternative licenses for this Database. Subject to Section 10.4, all other rights not expressly granted by Licensor are reserved.\n\n4.0 CONDITIONS OF USE\n4.1 The rights granted in Section 3 above are expressly made subject to Your complying with the following conditions of use. These are important conditions of this License, and if You fail to follow them, You will be in material breach of its terms.\n\n4.2 Notices. If You Publicly Convey this Database, any Derivative Database, or the Database as part of a Collective Database, then You must:\n\na. Do so only under the terms of this License or another license permitted under Section 4.4;\n\nb. Include a copy of this License (or, as applicable, a license permitted under Section 4.4) or its Uniform Resource Identifier (URI) with the Database or Derivative Database, including both in the Database or Derivative Database and in any relevant documentation; and\n\nc. Keep intact any copyright or Database Right notices and notices that refer to this License.\n\nd. If it is not possible to put the required notices in a particular file due to its structure, then You must include the notices in a location (such as a relevant directory) where users would be likely to look for it.\n\n4.3 Notice for using output (Contents). Creating and Using a Produced Work does not require the notice in Section 4.2. However, if you Publicly Use a Produced Work, You must include a notice associated with the Produced Work reasonably calculated to make any Person that uses, views, accesses, interacts with, or is otherwise exposed to the Produced Work aware that Content was obtained from the Database, Derivative Database, or the Database as part of a Collective Database, and that it is available under this License.\n\na. Example notice. The following text will satisfy notice under Section 4.3:\n\nContains information from DATABASE NAME, which is made available\nhere under the Open Database License (ODbL).\nDATABASE NAME should be replaced with the name of the Database and a hyperlink to the URI of the Database. “Open Database License” should contain a hyperlink to the URI of the text of this License. If hyperlinks are not possible, You should include the plain text of the required URI’s with the above notice.\n\n4.4 Share alike.\n\na. Any Derivative Database that You Publicly Use must be only under the terms of:\n\ni. This License;\n\nii. A later version of this License similar in spirit to this License; or\n\niii. A compatible license.\n\nIf You license the Derivative Database under one of the licenses mentioned in (iii), You must comply with the terms of that license.\n\nb. For the avoidance of doubt, Extraction or Re-utilisation of the whole or a Substantial part of the Contents into a new database is a Derivative Database and must comply with Section 4.4.\n\nc. Derivative Databases and Produced Works. A Derivative Database is Publicly Used and so must comply with Section 4.4. if a Produced Work created from the Derivative Database is Publicly Used.\n\nd. Share Alike and additional Contents. For the avoidance of doubt, You must not add Contents to Derivative Databases under Section 4.4 a that are incompatible with the rights granted under this License.\n\ne. Compatible licenses. Licensors may authorise a proxy to determine compatible licenses under Section 4.4 a iii. If they do so, the authorised proxy’s public statement of acceptance of a compatible license grants You permission to use the compatible license.\n\n4.5 Limits of Share Alike. The requirements of Section 4.4 do not apply in the following:\n\na. For the avoidance of doubt, You are not required to license Collective Databases under this License if You incorporate this Database or a Derivative Database in the collection, but this License still applies to this Database or a Derivative Database as a part of the Collective Database;\n\nb. Using this Database, a Derivative Database, or this Database as part of a Collective Database to create a Produced Work does not create a Derivative Database for purposes of Section 4.4; and\n\nc. Use of a Derivative Database internally within an organisation is not to the public and therefore does not fall under the requirements of Section 4.4.\n\n4.6 Access to Derivative Databases. If You Publicly Use a Derivative Database or a Produced Work from a Derivative Database, You must also offer to recipients of the Derivative Database or Produced Work a copy in a machine readable form of:\n\na. The entire Derivative Database; or\n\nb. A file containing all of the alterations made to the Database or the method of making the alterations to the Database (such as an algorithm), including any additional Contents, that make up all the differences between the Database and the Derivative Database.\n\nThe Derivative Database (under a.) or alteration file (under b.) must be available at no more than a reasonable production cost for physical distributions and free of charge if distributed over the internet.\n\n4.7 Technological measures and additional terms\n\na. This License does not allow You to impose (except subject to Section 4.7 b.) any terms or any technological measures on the Database, a Derivative Database, or the whole or a Substantial part of the Contents that alter or restrict the terms of this License, or any rights granted under it, or have the effect or intent of restricting the ability of any person to exercise those rights.\n\nb. Parallel distribution. You may impose terms or technological measures on the Database, a Derivative Database, or the whole or a Substantial part of the Contents (a “Restricted Database”) in contravention of Section 4.74 a. only if You also make a copy of the Database or a Derivative Database available to the recipient of the Restricted Database:\n\ni. That is available without additional fee;\n\nii. That is available in a medium that does not alter or restrict the terms of this License, or any rights granted under it, or have the effect or intent of restricting the ability of any person to exercise those rights (an “Unrestricted Database”); and\n\niii. The Unrestricted Database is at least as accessible to the recipient as a practical matter as the Restricted Database.\n\nc. For the avoidance of doubt, You may place this Database or a Derivative Database in an authenticated environment, behind a password, or within a similar access control scheme provided that You do not alter or restrict the terms of this License or any rights granted under it or have the effect or intent of restricting the ability of any person to exercise those rights.\n\n4.8 Licensing of others. You may not sublicense the Database. Each time You communicate the Database, the whole or Substantial part of the Contents, or any Derivative Database to anyone else in any way, the Licensor offers to the recipient a license to the Database on the same terms and conditions as this License. You are not responsible for enforcing compliance by third parties with this License, but You may enforce any rights that You have over a Derivative Database. You are solely responsible for any modifications of a Derivative Database made by You or another Person at Your direction. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License.\n\n5.0 MORAL RIGHTS\n5.1 Moral rights. This section covers moral rights, including any rights to be identified as the author of the Database or to object to treatment that would otherwise prejudice the author’s honour and reputation, or any other derogatory treatment:\n\na. For jurisdictions allowing waiver of moral rights, Licensor waives all moral rights that Licensor may have in the Database to the fullest extent possible by the law of the relevant jurisdiction under Section 10.4;\n\nb. If waiver of moral rights under Section 5.1 a in the relevant jurisdiction is not possible, Licensor agrees not to assert any moral rights over the Database and waives all claims in moral rights to the fullest extent possible by the law of the relevant jurisdiction under Section 10.4; and\n\nc. For jurisdictions not allowing waiver or an agreement not to assert moral rights under Section 5.1 a and b, the author may retain their moral rights over certain aspects of the Database.\n\nPlease note that some jurisdictions do not allow for the waiver of moral rights, and so moral rights may still subsist over the Database in some jurisdictions.\n\n6.0 FAIR DEALING, DATABASE EXCEPTIONS, AND OTHER RIGHTS NOT AFFECTED\n6.1 This License does not affect any rights that You or anyone else may independently have under any applicable law to make any use of this Database, including without limitation:\n\na. Exceptions to the Database Right including: Extraction of Contents from non-electronic Databases for private purposes, Extraction for purposes of illustration for teaching or scientific research, and Extraction or Re-utilisation for public security or an administrative or judicial procedure.\n\nb. Fair dealing, fair use, or any other legally recognised limitation or exception to infringement of copyright or other applicable laws.\n\n6.2 This License does not affect any rights of lawful users to Extract and Re-utilise insubstantial parts of the Contents, evaluated quantitatively or qualitatively, for any purposes whatsoever, including creating a Derivative Database (subject to other rights over the Contents, see Section 2.4). The repeated and systematic Extraction or Re-utilisation of insubstantial parts of the Contents may however amount to the Extraction or Re-utilisation of a Substantial part of the Contents.\n\n7.0 WARRANTIES AND DISCLAIMER\n7.1 The Database is licensed by the Licensor “as is” and without any warranty of any kind, either express, implied, or arising by statute, custom, course of dealing, or trade usage. Licensor specifically disclaims any and all implied warranties or conditions of title, non-infringement, accuracy or completeness, the presence or absence of errors, fitness for a particular purpose, merchantability, or otherwise. Some jurisdictions do not allow the exclusion of implied warranties, so this exclusion may not apply to You.\n\n8.0 LIMITATION OF LIABILITY\n8.1 Subject to any liability that may not be excluded or limited by law, the Licensor is not liable for, and expressly excludes, all liability for loss or damage however and whenever caused to anyone by any use under this License, whether by You or by anyone else, and whether caused by any fault on the part of the Licensor or not. This exclusion of liability includes, but is not limited to, any special, incidental, consequential, punitive, or exemplary damages such as loss of revenue, data, anticipated profits, and lost business. This exclusion applies even if the Licensor has been advised of the possibility of such damages.\n\n8.2 If liability may not be excluded by law, it is limited to actual and direct financial loss to the extent it is caused by proved negligence on the part of the Licensor.\n\n9.0 TERMINATION OF YOUR RIGHTS UNDER THIS LICENSE\n9.1 Any breach by You of the terms and conditions of this License automatically terminates this License with immediate effect and without notice to You. For the avoidance of doubt, Persons who have received the Database, the whole or a Substantial part of the Contents, Derivative Databases, or the Database as part of a Collective Database from You under this License will not have their licenses terminated provided their use is in full compliance with this License or a license granted under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will survive any termination of this License.\n\n9.2 If You are not in breach of the terms of this License, the Licensor will not terminate Your rights under it.\n\n9.3 Unless terminated under Section 9.1, this License is granted to You for the duration of applicable rights in the Database.\n\n9.4 Reinstatement of rights. If you cease any breach of the terms and conditions of this License, then your full rights under this License will be reinstated:\n\na. Provisionally and subject to permanent termination until the 60th day after cessation of breach;\n\nb. Permanently on the 60th day after cessation of breach unless otherwise reasonably notified by the Licensor; or\n\nc. Permanently if reasonably notified by the Licensor of the violation, this is the first time You have received notice of violation of this License from the Licensor, and You cure the violation prior to 30 days after your receipt of the notice.\n\nPersons subject to permanent termination of rights are not eligible to be a recipient and receive a license under Section 4.8.\n\n9.5 Notwithstanding the above, Licensor reserves the right to release the Database under different license terms or to stop distributing or making available the Database. Releasing the Database under different license terms or stopping the distribution of the Database will not withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\n\n10.0 GENERAL\n10.1 If any provision of this License is held to be invalid or unenforceable, that must not affect the validity or enforceability of the remainder of the terms and conditions of this License and each remaining provision of this License shall be valid and enforced to the fullest extent permitted by law.\n\n10.2 This License is the entire agreement between the parties with respect to the rights granted here over the Database. It replaces any earlier understandings, agreements or representations with respect to the Database.\n\n10.3 If You are in breach of the terms of this License, You will not be entitled to rely on the terms of this License or to complain of any breach by the Licensor.\n\n10.4 Choice of law. This License takes effect in and will be governed by the laws of the relevant jurisdiction in which the License terms are sought to be enforced. If the standard suite of rights granted under applicable copyright law and Database Rights in the relevant jurisdiction includes additional rights not granted under this License, these additional rights are granted in this License in order to meet the terms of this License.","scheduled_refresh_frequency":null,"attributionText":"OpenStreetMap, Microsoft, Esri Community Maps contributors","table":null,"max_zoom":13,"style":{"config":{},"label":{"color":"#5a5a5a","fontSize":14,"fontStyle":"Normal","fontWeight":700,"haloColor":"#d0d0d0","haloWidth":1.5,"isClickable":false,"isHoverable":false,"justify":"auto","letterSpacing":0.1,"lineHeight":1.3,"maxLineChars":10,"maxZoom":23,"minZoom":1,"padding":20,"placement":["Center"],"visible":true},"legend":{},"paint":{"color":"rgb(51, 51, 51)","highlightColor":"hsla(329,81%,64%, 0.5)","highlightStrokeColor":"hsla(329,81%,64%, 0.8)","highlightStrokeWidth":{"linear":[[3,0.5],[20,2]]},"isClickable":false,"isHoverable":false,"isSandwiched":false,"opacity":0.87,"strokeColor":"hsl(0, 0%, 100%)","strokeWidth":0},"type":"simple","version":"2.3.1"},"centroids_layer_name":"parsed-anchors","excerpt_url":"https://data-pipeline.felt.com/dc3e1ee4-ed71-5cbf-ae9a-33434d11ada6/excerpt/excerpt.json","is_spreadsheet":false}],"created_by":"Mamata Akella","modified_at":"2025-10-22T20:22:47","user_id":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","max_zoom":13,"subtitle":null,"z_order":3,"index_json_url":"https://data-pipeline.felt.com/upload/28e8de80-73da-4d24-99ce-80c1ce8a9588.json","hideFromLegend":false,"isCollapsed":false,"errorMessage":null,"thumbnailUrl":null,"progress_percent":100,"visibilityInteraction":"checkbox","errorType":null,"legendVisibility":"show","created_at_unix_time_ms":1761164567000,"duplicatedFromId":"06e2ae5e-8339-4721-8498-361817fc115b","published_to_project_ids":null,"renderAsLayer":true},{"id":"4fad0642-5297-4dea-81dd-1bd1b4807db2","name":"2025AWS re:Invent Geo Sessions ","visible":true,"description":"","created_at":"2025-10-22T20:36:29","layers":[{"stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453.json","tile_max_zoom":7,"has_download_url":true,"created_by":"Mamata Akella","initial_stroke_color":null,"created_at":"2025-10-22T20:36:29","modified_at":"2025-10-31T19:09:23","raster_details":null,"hash_url":"https://us1.data-pipeline.felt.com/hash/{hash}","min_zoom":0,"pipeline_dataset_id":"a3ce21e1-09e6-53d7-8471-af7800004453","runCause":"refresh","html_popup_threads":[{"id":"963d2e54-0ce2-48a9-a3ac-7b0cab2022da","insertedAt":"2025-10-22T21:00:52.252037","layerId":"2594e189-3444-4af7-80ec-3b505eb5e0d2"}],"visible":true,"initial_fill_color":null,"h3_geomatched_level":null,"stac_url":null,"pipeline_version":"0.50.13868","legendVisibility":"hide","errorType":null,"column_selections":[{"type":"full_address","column":"address"}],"remote_data_url":null,"last_processed_at":"2025-10-31T19:02:42","source_dataset_id":null,"geometry_type":"Point","source_has_custom_query":false,"bounding_box":{"coordinates":[[[-115.174818,36.0918009],[-115.165818,36.0918009],[-115.165818,36.126378],[-115.174818,36.126378],[-115.174818,36.0918009]]],"crs":{"properties":{"name":"EPSG:4326"},"type":"name"},"type":"Polygon"},"external_refresh_frequency_ms":null,"status":"completed","geomatch_metadata":null,"sql_query_threads":[],"legendDisplay":"default","raster_colors":null,"is_convertible_to_elements":true,"tile_url":"https://us1.data-pipeline.felt.com/vectortile/a3ce21e1-09e6-53d7-8471-af7800004453/{z}/{x}/{y}.pbf{?attributes,layer,query}","z_order":1,"ready_for_immediate_export":true,"progress":100,"html_popup_source":"<html class=\"{{_theme}}\">\n <head>\n <link rel=\"preload\" href=\"https://app-assets.felt.com/fonts/AtlasGrotesk-Regular-Cy-Web.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>\n <link rel=\"stylesheet\" type=\"text/css\" href=\"https://app-assets.felt.com/fonts/fonts.css\">\n <link rel=\"stylesheet\" type=\"text/css\" href=\"https://app-assets.felt.com/css/root.css\">\n <link rel=\"stylesheet\" type=\"text/css\" href=\"https://app-assets.felt.com/css/html-popup.css\">\n <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n <link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap\" rel=\"stylesheet\">\n <style>\n .reinvent-popup {\n background: #0D1117;\n color: #FFFFFF;\n padding: 0;\n border-radius: 12px;\n overflow: hidden;\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;\n max-width: 440px;\n border: 1px solid #21262D;\n box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);\n }\n \n .session-content {\n padding: 24px;\n background: #0D1117;\n }\n \n .session-title {\n font-weight: 600;\n font-size: 20px;\n margin-bottom: 16px;\n color: #F0F6FF;\n line-height: 1.3;\n letter-spacing: -0.02em;\n }\n \n .session-description {\n color: #8B949E;\n font-size: 14px;\n line-height: 1.6;\n margin-bottom: 24px;\n padding: 16px;\n background: #161B22;\n border-radius: 8px;\n border-left: 3px solid #8B5CF6;\n }\n \n .session-details {\n display: grid;\n gap: 16px;\n }\n \n .detail-item {\n display: flex;\n align-items: flex-start;\n gap: 12px;\n padding: 12px;\n background: #161B22;\n border-radius: 8px;\n border: 1px solid #21262D;\n }\n \n .detail-icon {\n width: 32px;\n height: 32px;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n font-size: 18px;\n }\n \n .detail-content {\n flex: 1;\n min-width: 0;\n }\n \n .detail-label {\n font-weight: 600;\n color: #F0F6FF;\n font-size: 13px;\n text-transform: uppercase;\n letter-spacing: 0.5px;\n margin-bottom: 4px;\n }\n \n .detail-value {\n color: #C9D1D9;\n font-size: 14px;\n line-height: 1.5;\n word-wrap: break-word;\n }\n \n .type-badge {\n display: inline-flex;\n align-items: center;\n background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);\n color: #FFFFFF;\n padding: 6px 12px;\n border-radius: 20px;\n font-size: 12px;\n font-weight: 600;\n margin-bottom: 16px;\n text-transform: uppercase;\n letter-spacing: 0.5px;\n }\n \n .speakers-list {\n margin-top: 4px;\n }\n \n .speaker-name {\n display: inline-block;\n background: #21262D;\n color: #F0F6FF;\n padding: 4px 8px;\n border-radius: 4px;\n font-size: 12px;\n margin: 2px 4px 2px 0;\n font-weight: 500;\n }\n \n .gradient-divider {\n height: 2px;\n background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);\n margin: 20px 0;\n border-radius: 1px;\n }\n </style>\n </head>\n <body>\n <div class=\"reinvent-popup\">\n <div class=\"session-content\">\n {% if type %}\n <div class=\"type-badge\">{{ type | escape }}</div>\n {% endif %}\n \n {% if title %}\n <div class=\"session-title\">{{ title | escape }}</div>\n {% endif %}\n \n {% if description %}\n <div class=\"session-description\">{{ description | escape }}</div>\n {% endif %}\n \n <div class=\"gradient-divider\"></div>\n \n <div class=\"session-details\">\n {% if dayTime %}\n <div class=\"detail-item\">\n <div class=\"detail-icon\">🕒</div>\n <div class=\"detail-content\">\n <div class=\"detail-label\">When</div>\n <div class=\"detail-value\">{{ dayTime | escape }}</div>\n </div>\n </div>\n {% endif %}\n \n {% if venue %}\n <div class=\"detail-item\">\n <div class=\"detail-icon\">📍</div>\n <div class=\"detail-content\">\n <div class=\"detail-label\">Where</div>\n <div class=\"detail-value\">{{ venue | escape }}</div>\n {% if address %}\n <div class=\"detail-value\" style=\"margin-top: 6px; opacity: 0.7; font-size: 13px;\">{{ address | escape }}</div>\n {% endif %}\n </div>\n </div>\n {% endif %}\n \n {% if speakers %}\n <div class=\"detail-item\">\n <div class=\"detail-icon\">👥</div>\n <div class=\"detail-content\">\n <div class=\"detail-label\">Speakers</div>\n <div class=\"speakers-list\">\n {% assign speaker_list = speakers | split: ';' %}\n {% for speaker in speaker_list %}\n <span class=\"speaker-name\">{{ speaker | strip | escape }}</span>\n {% endfor %}\n </div>\n </div>\n </div>\n {% endif %}\n \n {% if level %}\n <div class=\"detail-item\">\n <div class=\"detail-icon\">📊</div>\n <div class=\"detail-content\">\n <div class=\"detail-label\">Level</div>\n <div class=\"detail-value\">{{ level | escape }}</div>\n </div>\n </div>\n {% endif %}\n </div>\n </div>\n </div>\n </body>\n</html>","raster_preview_url":null,"feature_url":"https://us1.data-pipeline.felt.com/onefeature/a3ce21e1-09e6-53d7-8471-af7800004453/{feature}.geojson{?skip_geometry,zoom_level}","geocoder_metadata":{"full_matches":10,"no_matches":0,"results_url":"https://us1.data-pipeline.felt.com/geocoding-results/a3ce21e1-09e6-53d7-8471-af7800004453.csv"},"h3_levels":[1,1,1,1,1,1,1,3,4,5,5,5,5,5,5,5],"next_processing_state":null,"layer_name":"parsed","processing_time_seconds":17,"stats":[],"source_id":null,"parsed_size_bytes":192512,"errorMessage":null,"legend_items":[],"id":"2594e189-3444-4af7-80ec-3b505eb5e0d2","subtitle":"","name":"2025AWS re:Invent Geo Sessions ","edit_version":null,"scheduled_refresh_status":null,"index_json_url":"https://us1.data-pipeline.felt.com/upload/09b96a90-c6a4-4e58-9692-51210000554c.json","normalized":{"filename":"2025 EVENT_ AWS Re_Invent Sessions - Sheet8 (1).csv","feature_id_field":null,"filetype":"Comma Separated Value (.csv)","layername":"2025 EVENT_ AWS Re_Invent Sessions - Sheet8 (1)"},"hideFromLegend":false,"data_last_updated_by_user_at":"2025-10-31T19:02:42","scheduled_refresh_frequency":null,"table":{"name":"parsed","columns":[{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/0/1.json{?query}","count":10,"count_distinct":1,"name":"GEO?","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/0.json{?query}","type":"TEXT","values":{"Yes":10}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/1/1.json{?query}","count":10,"count_distinct":10,"name":"id","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/1.json{?query}","type":"TEXT","values":{"AIM417":1,"ANT323":1,"ANT334":1,"ARC320":1,"DAT408":1,"DAT438":1,"HMC310":1,"IND322":1,"PEX202":1,"WPS311":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/2/1.json{?query}","count":10,"count_distinct":4,"name":"type","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/2.json{?query}","type":"TEXT","values":{"Breakout session":6,"Builders' session":1,"Chalk talk":2,"Lightning talk":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/3/1.json{?query}","count":10,"count_distinct":3,"max":400.0,"min":200.0,"name":"level","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/3.json{?query}","type":"REAL","values":{"200.0":1,"300.0":6,"400.0":3}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/4/1.json{?query}","count":10,"count_distinct":10,"name":"title","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/4.json{?query}","type":"TEXT","values":{"Advanced data modeling for Amazon ElastiCache":1,"Agentic AI's new generation of Industry and Line of Business solutions":1,"Architecting resilient global networks with Project Kuiper":1,"Digital sovereignty and data residency with AWS Hybrid and Edge services":1,"Geo-fencing & real-time geospatial alerts with ElastiCache Valkey":1,"High-performance NLP & geospatial analysis with Amazon Redshift":1,"Mastering materialized views: tips for fast, low-latency queries in Redshift":1,"Redefining Operations: Caterpillar's Geospatial Intelligence Solution":1,"Sustainable computing for climate solutions":1,"Weather emergency advisor with Amazon Bedrock and Location Service":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/5/1.json{?query}","count":10,"count_distinct":10,"name":"description","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/5.json{?query}","type":"TEXT","values":{"Countries around the world are increasingly introducing or updating data residency and digital sovereignty laws that require at least one copy, or sometimes all data, to be stored or processed in a specific geographic or sovereign location that introduces new challenges for customers. This session explores how AWS services, including AWS Dedicated Local Zones, AWS Local Zones, and AWS Outposts can help you with your digital sovereignty use cases. We’ll examine best practices for data residency, security controls, and operational consistency across deployments at the edge.":1,"Discover how Caterpillar's innovative GIS solution is revolutionizing construction and mining operations through advanced geospatial intelligence. By integrating real-time data from 20,000+ connected assets, this cloud-native platform delivers terrain modeling with 2-centimeter precision. The system combines sensor data, from ground elevation to equipment activity, with drone-generated surface scans, enabling data-driven decisions that optimize operations and enhance safety. This scalable solution minimizes infrastructure overhead while ensuring robust security and compliance. Learn how this intelligent ecosystem helps customers reduce rework, improve resource utilization, and gain competitive advantage in the heavy equipment industry.":1,"Explore advanced architectural patterns for AI-powered emergency response systems using Amazon Bedrock and serverless technologies. Dive deep into building resilient, scalable, and secure platforms. Discuss sophisticated prompt engineering for emergency context understanding, multi-modal foundation model orchestration, and complex data ingestion for real-time feeds. Examine advanced caching and query optimization for location services and high-availability patterns for mission-critical systems. Through collaborative whiteboarding, address real-world challenges including data consistency, distributed state management, and fault-tolerant notifications. Bring complex architectural questions for in-depth technical discussions on building robust, mission-ready emergency response solutions that can save lives and mitigate disaster impacts.":1,"High Performance Computing (HPC) is crucial for solving complex environmental challenges such as air pollution and extreme weather forecasting, yet HPC workloads are traditionally computationally intensive. This session explores patterns and key AWS services like AWS Batch, ParallelCluster, EC2 Spot Instances, Graviton processors, FSx for Lustre, and Cloudwatch that help optimize the balance between computational performance and environmental sustainability. Attendees will explore a real-world example of how researchers from University of Oxford are using sustainable HPC solutions for community air quality improvement through large-scale geospatial data processing and machine learning.":1,"In this builders' session, you will create a high-performance, real-time, geospatial alerting pipeline using Amazon ElastiCache for Valkey. This architecture pattern is tailored for dynamic applications like ridesharing, logistics, and fleet management. While Valkey's geospatial features are well-documented, this session goes beyond basic usage by demonstrating how to integrate real-time geospatial queries with event-driven workflows, addressing the complexities of large-scale geofencing in modern applications. You must bring your laptop to participate.":1,"Join us for an interactive deep-dive into materialized views in Amazon Redshift, where we'll unravel sophisticated techniques and cutting-edge feature enhancements to turbocharge query processing. You'll learn to identify optimal query patterns, master advanced refresh strategies, decode the intricate compute and storage mechanics of materialized views, and develop powerful mental models for slashing query latency in large-scale data environments.":1,"Project Kuiper's Low Earth Orbit (LEO) satellite constellation transforms how organizations architect global connectivity solutions. Explore how Kuiper's advanced network—featuring antennas, space lasers, ground gateways, and intelligent routing—integrates with AWS services for robust, low-latency solutions. Learn architectural patterns for enhancing application resilience, implementing secure remote data transfer, and optimizing edge computing performance. Discover real-world solutions for critical challenges such as maintaining connectivity during disasters, securing remote operations, and extending compute to the network edge, enabling global reach and improved reliability.":1,"This session delves into the intricacies of Amazon ElastiCache data modeling using the purpose-built Valkey data types to optimize application performance and scalability. Explore the use of strings, sets, sorted sets, hashes, bitmaps, and geospatial indexes to model complex relationships and solve use cases such as caching, session store, feature store, real-time analytics, geospatial applications, and rate limiters.":1,"This session explores how Cambridge Mobile Telematics (CMT) uses Amazon Redshift for large-scale geospatial and text data analysis. We'll discuss why CMT chose AWS and Redshift based on scalability and integration needs, highlighting how Redshift's geospatial solution using H3 functions enable efficient processing of billions of location records. The presentation demonstrates CMT's use of Redshift's NLP capabilities, featuring QEv2 and Vega for advanced ad-hoc reporting. Finally, we examine how Redshift's architecture delivers the optimal price-performance balance for CMT's demanding data operations.":1,"This session will focus on the latest Industry & LOB solutions, from Generative AI solutions in radiology to geospatial modeling for power. We will explain the opportunity for AWS Partners to increase visibility of their offerings, as well as develop joint business with AWS and we unlock new innovations for customers. We will share with partners the approach AWS is taking to address key industry use cases with Agentic AI, via partner solutions running on AWS.":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/6/1.json{?query}","count":10,"count_distinct":10,"name":"speakers","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/6.json{?query}","type":"TEXT","values":{"Charlotte Fondren; Bradley Wyman":1,"Gururaj S Bayari; Damon LaCaille; Kevin McGehee; Veerendra Nayak; Allen Samuels":1,"Kevin McGehee; Yaron Sananes":1,"Mallory Gershenfeld; Ben Lavasani; Majd Aldeen Masriah":1,"Michael Schmidt; Ryan Thomas":1,"Nick Matthews":1,"Nitin Pathak; Guyu Ye":1,"Ravi Animi":1,"Ravi Animi; Saman Irfan":1,"Steve Blackwell; Alan Doty; Ash Shah; Sriram Somasuntharam":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/7/1.json{?query}","count":10,"count_distinct":5,"name":"venue","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/7.json{?query}","type":"TEXT","values":{"Caesars Forum":2,"MGM Grand":2,"Mandalay Bay":4,"Venetian":1,"Wynn":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/8/1.json{?query}","count":10,"count_distinct":5,"name":"address","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/8.json{?query}","type":"TEXT","values":{"3131 Las Vegas Blvd S, Las Vegas, NV 89109":1,"3355 S Las Vegas Blvd, Las Vegas, NV 89109":1,"3799 S Las Vegas Blvd, Las Vegas, NV 89109":2,"3911 S Koval Ln, Las Vegas, NV 89109":2,"3950 S Las Vegas Blvd, Las Vegas, NV 89119":4}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/9/1.json{?query}","count":10,"count_distinct":9,"name":"dayTime","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/9.json{?query}","type":"TEXT","values":{"Monday, Dec 01 11:00 a.m. Monday, Dec 01":1,"Monday, Dec 01 5:00 p.m. Monday, Dec 01":2,"Thursday, Dec 04 11:00 a.m. Thursday, Dec 04":1,"Thursday, Dec 04 3:00 p.m. Thursday, Dec 04":1,"Tuesday, Dec 02 4:00 p.m. Tuesday, Dec 02":1,"Tuesday, Dec 02 5:00 p.m. Tuesday, Dec 02":1,"Wednesday, Dec 03 10:00 a.m. Wednesday, Dec 03":1,"Wednesday, Dec 03 4:00 p.m. Wednesday, Dec 03":1,"Wednesday, Dec 03 5:00 p.m. Wednesday, Dec 03":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/10/1.json{?query}","count":10,"count_distinct":6,"name":"services","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/10.json{?query}","type":"TEXT","values":{"":4,"AWS Local Zones; AWS Outposts":1,"Amazon ElastiCache":2,"Amazon Elastic Compute Cloud (Amazon EC2); AWS Batch; AWS ParallelCluster":1,"Amazon RedShift":1,"Amazon RedShift; Amazon Redshift Serverless":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/11/1.json{?query}","count":10,"count_distinct":4,"name":"tags","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/11.json{?query}","type":"TEXT","values":{"Customer story":3,"Hands-on":1,"Interactive":2,"Lecture-style":4}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/a3ce21e1-09e6-53d7-8471-af7800004453/12/1.json{?query}","count":10,"count_distinct":10,"name":"url","stats_url":"https://us1.data-pipeline.felt.com/stats/a3ce21e1-09e6-53d7-8471-af7800004453/12.json{?query}","type":"TEXT","values":{"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753381065238001la82":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753381069083001lnd3":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753399548017001TaWe":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753399770613001KpYH":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753399776671001Ke0f":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753399780706001Kpab":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753399789863001KpuD":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753399802504001KI62":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1753399804145001K8uU":1,"https://registration.awsevents.com/flow/awsevents/reinvent2025/event-catalog/page/eventCatalog/session/1755044544948001pqHl":1}}],"content_url":"https://us1.data-pipeline.felt.com/table/a3ce21e1-09e6-53d7-8471-af7800004453/{page}.json{?query}","row_count":10},"max_zoom":18,"style":{"config":{"labelAttribute":["venue"]},"label":{"color":"auto","fontSize":13,"fontStyle":"Normal","fontWeight":500,"haloColor":"auto","haloWidth":1,"justify":"auto","letterSpacing":0,"lineHeight":1.2,"maxLineChars":10,"maxZoom":23,"minZoom":23,"offset":[8,8],"padding":2,"placement":"auto","textTransform":"none"},"legend":{},"paint":{"color":"hsl(52, 88%, 59%)","opacity":0.9,"size":5.5,"strokeColor":"auto","strokeWidth":1},"popup":{"headerLayout":"standard","popupLocation":"leftSidebar","type":"html"},"type":"simple","version":"2.3.1"},"centroids_layer_name":null,"excerpt_url":"https://us1.data-pipeline.felt.com/excerpt/a3ce21e1-09e6-53d7-8471-af7800004453.json","is_spreadsheet":true}],"created_by":"Mamata Akella","modified_at":"2025-10-31T19:09:23","user_id":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","max_zoom":18,"subtitle":null,"z_order":4,"index_json_url":"https://us1.data-pipeline.felt.com/upload/09b96a90-c6a4-4e58-9692-51210000554c.json","hideFromLegend":false,"isCollapsed":false,"errorMessage":null,"thumbnailUrl":null,"progress_percent":100,"visibilityInteraction":"checkbox","errorType":null,"legendVisibility":"show","created_at_unix_time_ms":1761165389000,"duplicatedFromId":null,"published_to_project_ids":null,"renderAsLayer":true},{"id":"6a1861fc-b903-4d18-a36b-da910e176fd5","name":"Untitled layer","visible":true,"description":"","created_at":"2025-10-22T21:12:38","layers":[{"stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453.json","tile_max_zoom":null,"has_download_url":true,"created_by":"Mamata Akella","initial_stroke_color":null,"created_at":"2025-10-22T21:12:38","modified_at":"2025-10-22T21:13:34","raster_details":null,"hash_url":"https://us1.data-pipeline.felt.com/hash/{hash}","min_zoom":0,"pipeline_dataset_id":"0974a31c-69d4-596b-a653-8d6200004453","runCause":"upload","html_popup_threads":[],"visible":true,"initial_fill_color":null,"h3_geomatched_level":null,"stac_url":null,"pipeline_version":"0.49.13791","legendVisibility":"hide","errorType":null,"column_selections":[],"remote_data_url":null,"last_processed_at":"2025-10-22T21:12:58","source_dataset_id":null,"geometry_type":"Polygon","source_has_custom_query":false,"bounding_box":{"coordinates":[[[-115.177799,36.090031],[-115.161427,36.090031],[-115.161427,36.130085],[-115.177799,36.130085],[-115.177799,36.090031]]],"crs":{"properties":{"name":"EPSG:4326"},"type":"name"},"type":"Polygon"},"external_refresh_frequency_ms":null,"status":"completed","geomatch_metadata":null,"sql_query_threads":[],"legendDisplay":"default","raster_colors":null,"is_convertible_to_elements":true,"tile_url":"https://us1.data-pipeline.felt.com/vectortile/0974a31c-69d4-596b-a653-8d6200004453/{z}/{x}/{y}.pbf{?attributes,layer,query}","z_order":1,"ready_for_immediate_export":true,"progress":100,"html_popup_source":null,"raster_preview_url":null,"feature_url":"https://us1.data-pipeline.felt.com/onefeature/0974a31c-69d4-596b-a653-8d6200004453/{feature}.geojson{?skip_geometry,zoom_level}","geocoder_metadata":null,"h3_levels":null,"next_processing_state":null,"layer_name":"parsed","processing_time_seconds":20,"stats":[],"source_id":null,"parsed_size_bytes":229376,"errorMessage":null,"legend_items":[],"id":"cf683e75-0ba1-4e68-878e-2a0d99bbf0c5","subtitle":"","name":"Untitled layer","edit_version":null,"scheduled_refresh_status":null,"index_json_url":"https://us1.data-pipeline.felt.com/upload/13d25ee7-abb2-4b93-b8f7-f2b30000554c.json","normalized":{"filename":"Untitled layer","feature_id_field":null,"filetype":"Unknown","layername":"Untitled layer"},"hideFromLegend":false,"data_last_updated_by_user_at":"2025-10-22T21:12:58","scheduled_refresh_frequency":null,"table":{"name":"parsed","columns":[{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/0/1.json{?query}","count":3,"count_distinct":1,"name":"addr_city","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/0.json{?query}","type":"TEXT","values":{"Las Vegas":3,"null":13}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/1/1.json{?query}","count":4,"count_distinct":4,"max":7026327777,"median":3633.0,"min":3325,"name":"addr_housenumber","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/1.json{?query}","type":"INTEGER","values":{"3325":1,"3355":1,"3911":1,"7026327777":1,"null":12}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/2/1.json{?query}","count":4,"count_distinct":2,"max":89119,"min":89109,"name":"addr_postcode","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/2.json{?query}","type":"INTEGER","values":{"89109":3,"89119":1,"null":12}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/3/1.json{?query}","count":4,"count_distinct":3,"name":"addr_street","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/3.json{?query}","type":"TEXT","values":{"Las Vegas Boulevard South":1,"South Koval Lane":1,"South Las Vegas Boulevard":2,"null":12}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/4/1.json{?query}","count":8,"count_distinct":3,"name":"amenity","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/4.json{?query}","type":"TEXT","values":{"casino":4,"conference_centre":2,"null":8,"parking":2}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/5/1.json{?query}","count":16,"count_distinct":4,"name":"building","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/5.json{?query}","type":"TEXT","values":{"public":1,"retail":1,"roof":2,"yes":12}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/6/1.json{?query}","count":16,"count_distinct":16,"name":"felt:clipSource","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/6.json{?query}","type":"TEXT","values":{"{ \"id\": \"222221949-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"237963923-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"237963926-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"237994677-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"237994707-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"238016810-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"240029621-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"247435322-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"266355728-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"267136931-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1,"{ \"id\": \"573858984-0\", \"layerId\": \"b8880a16-fe9a-42ac-81a8-6d599dbb8dc5\" }":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/7/1.json{?query}","count":16,"count_distinct":1,"name":"felt:color","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/7.json{?query}","type":"TEXT","values":{"#8B5CF6":16}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/8/1.json{?query}","count":3,"count_distinct":1,"max":1,"min":1,"name":"felt:fillOpacity","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/8.json{?query}","type":"INTEGER","values":{"1":3,"null":13}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/9/1.json{?query}","count":1,"count_distinct":1,"name":"felt:hasLongDescription","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/9.json{?query}","type":"BOOLEAN","values":{"False":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/10/1.json{?query}","count":16,"count_distinct":16,"name":"felt:id","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/10.json{?query}","type":"TEXT","values":{"1g59BjfMYQzOE3Nb9BXDBHQC":1,"9BEJXzBRLTh9BUwM5RF0pGzC":1,"9BYcWM9A7VQiS9B7jeJ8l8aNB":1,"BiqFdiAyTySsNBw0A0aXNB":1,"L5M9CuPfWQKSZU5xCUrVoaD":1,"QxkLT07OTg6BctGtkwgTaC":1,"RpkIKBWzQ0mU9BBZ4MiokWD":1,"jayyEFBjQs9BuW7K9CtaZ9BiD":1,"nFSydiDFTsmOeDraerPucA":1,"oSNeXu39BQBS29CZzDTt9CogA":1,"odddUWb7SuOL532vq9CuSZC":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/11/1.json{?query}","count":16,"count_distinct":1,"name":"felt:locked","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/11.json{?query}","type":"BOOLEAN","values":{"False":16}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/12/1.json{?query}","count":16,"count_distinct":16,"max":1761167492619233,"median":1761167327831122,"min":1761164438110114,"name":"felt:ordering","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/12.json{?query}","type":"INTEGER","values":{"1761164438110114":1,"1761164674981954":1,"1761164677065469":1,"1761167317763118":1,"1761167319898952":1,"1761167320765494":1,"1761167322479460":1,"1761167327831122":1,"1761167332246089":1,"1761167333581384":1,"1761167356263778":1}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/13/1.json{?query}","count":3,"count_distinct":1,"name":"felt:parentId","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/13.json{?query}","type":"TEXT","values":{"null":13,"r5H9AYpRgRQWUpKeLp9B9BZ9BD":3}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/14/1.json{?query}","count":1,"count_distinct":1,"max":90,"min":90,"name":"felt:radiusDisplayAngle","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/14.json{?query}","type":"INTEGER","values":{"90":1,"null":15}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/15/1.json{?query}","count":16,"count_distinct":1,"name":"felt:showArea","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/15.json{?query}","type":"BOOLEAN","values":{"False":16}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/16/1.json{?query}","count":1,"count_distinct":1,"max":1,"min":1,"name":"felt:strokeOpacity","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/16.json{?query}","type":"INTEGER","values":{"1":1,"null":15}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/17/1.json{?query}","count":1,"count_distinct":1,"max":4,"min":4,"name":"felt:strokeWidth","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/17.json{?query}","type":"INTEGER","values":{"4":1,"null":15}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/18/1.json{?query}","count":16,"count_distinct":1,"name":"felt:type","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/18.json{?query}","type":"TEXT","values":{"Polygon":16}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/19/1.json{?query}","count":1,"count_distinct":1,"max":1,"min":1,"name":"felt:widthScale","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/19.json{?query}","type":"INTEGER","values":{"1":1,"null":15}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/20/1.json{?query}","count":1,"count_distinct":1,"max":3933614,"min":3933614,"name":"osm_id","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/20.json{?query}","type":"INTEGER","values":{"3933614":1,"null":15}},{"autocomplete_url":"https://us1.data-pipeline.felt.com/autocomplete/0974a31c-69d4-596b-a653-8d6200004453/21/1.json{?query}","count":15,"count_distinct":15,"max":1080678869,"median":301814710,"min":254288357,"name":"osm_way_id","stats_url":"https://us1.data-pipeline.felt.com/stats/0974a31c-69d4-596b-a653-8d6200004453/21.json{?query}","type":"INTEGER","values":{"254288357":1,"283137258":1,"283137278":1,"283177955":1,"283177990":1,"283217166":1,"287341840":1,"301814710":1,"337524296":1,"339025189":1,"null":1}}],"content_url":"https://us1.data-pipeline.felt.com/table/0974a31c-69d4-596b-a653-8d6200004453/{page}.json{?query}","row_count":16},"max_zoom":18,"style":{"config":{"labelAttribute":["name"]},"label":{"color":"auto","fontSize":13,"fontStyle":"Normal","fontWeight":500,"haloColor":"auto","haloWidth":1,"isClickable":false,"isHoverable":false,"justify":"auto","letterSpacing":0,"lineHeight":1.2,"maxLineChars":10,"maxZoom":23,"minZoom":23,"padding":0,"placement":"Center","textTransform":"none"},"legend":{},"paint":{"color":"#8B5CF6","isClickable":false,"isHoverable":false,"isSandwiched":false,"opacity":0.6,"strokeColor":"auto","strokeWidth":1},"type":"simple","version":"2.3.1"},"centroids_layer_name":"parsed-anchors","excerpt_url":"https://us1.data-pipeline.felt.com/excerpt/0974a31c-69d4-596b-a653-8d6200004453.json","is_spreadsheet":false}],"created_by":"Mamata Akella","modified_at":"2025-10-22T21:12:38","user_id":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","max_zoom":18,"subtitle":null,"z_order":5,"index_json_url":"https://us1.data-pipeline.felt.com/upload/13d25ee7-abb2-4b93-b8f7-f2b30000554c.json","hideFromLegend":false,"isCollapsed":false,"errorMessage":null,"thumbnailUrl":null,"progress_percent":100,"visibilityInteraction":"checkbox","errorType":null,"legendVisibility":"show","created_at_unix_time_ms":1761167558000,"duplicatedFromId":null,"published_to_project_ids":null,"renderAsLayer":true}],"customIcons":[],"socketTokenTTLSeconds":1209600,"folderTree":[],"commonAnalyticsProperties":{"workspace_id":"6cef9ea4-6092-4b90-9a7f-c1a7e18c332f","feature_flags":["ff_growth_enterprise_trials","ff_mobile","ff_new_source_inspection","ff_new_sql_preview","ff_server_side_filtering","ff_vector_buckets"],"workspace_plan":"enterprise_unlimited_trial","workspace_name":"Wherobots (Partner)","workspace_age_days":324},"comments":{"threads":[],"users":{}},"mapDescription":null,"felt_version":"42","maxImageFileSizeBytes":20000000,"mapTitle":"Geo Party at AWS re:Invent","mapId":"14fcaf4d-b5d1-4329-9c22-026ee543d70d","kartaTeamId":"6cef9ea4-6092-4b90-9a7f-c1a7e18c332f","defaultControlsMode":null,"updatedAtUnixMs":1761937764000,"folderId":null,"sharing":{"publicAccess":"view_only"},"mapColorPalette":[],"loadedAt":1762022137,"embedConfig":{"mimeType":null,"barHexColor":"#2674BACC","barLogoUrl":null,"barText":"AWS REINVENT GEO","topBarEnabled":false,"barLogoAspectRatio":null,"barLogoStatus":"not_started"},"mapLinks":[],"mapImages":[],"currentTeamBannerAcknowledgement":{"plan":null,"plan_name":null,"acknowledged":true},"mapProject":null,"mapTeamId":null,"editableByCurrentSession":false,"mapUrls":{"export":"https://felt.com/map/export/14fcaf4d-b5d1-4329-9c22-026ee543d70d","embed":"https://felt.com/embed/map/Geo-Party-at-AWS-re-Invent-FPyvTbXRQymcIgJu5UPXDB","login":"/login/map/14fcaf4d-b5d1-4329-9c22-026ee543d70d","appHomeForKarta":"/maps/contains/14fcaf4d-b5d1-4329-9c22-026ee543d70d","dataTroubleshooting":"https://help.felt.com/upload-anything/troubleshooting","exportComments":"https://felt.com/map/export/14fcaf4d-b5d1-4329-9c22-026ee543d70d/comments","signup":"/signup/map/14fcaf4d-b5d1-4329-9c22-026ee543d70d","supportedFormats":"https://help.felt.com/upload-anything/files"},"amplitudeAnalyticsId":"d01926b917624c9f002b79f6016c7213","pipeline":{"syncUploadMaxBytes":15360},"layerProcessingEmailSubscriptions":[],"authors":{"2d8f0d35-09e0-4bed-9323-bc2695c2272e":{"name":"Mamata Akella"},"b1999a1c-b0e9-4329-9d7e-3efcaff68e6f":{"name":"Kateryna Mashal"}},"elements":[{"showEndcaps":null,"coordinates":[[[36.1186571,-115.1677421],[36.1186571,-115.1645349],[36.1190255,-115.1645349],[36.1190255,-115.1677421],[36.1186571,-115.1677421]]],"description":null,"position":[36.11884131801215,-115.16613846466409],"scale":0.5876768171142165,"size":null,"attributes":[],"frame":null,"label":null,"showLinkPreview":null,"showLength":null,"createdAtUnixTimeMs":1761168215000,"isCollapsed":null,"opacity":null,"text":"CAESARS FORUM","strokeStyle":null,"fillOpacity":null,"textStyle":"regular","widthScale":1,"showArea":null,"rotation":0,"textAlign":"center","color":"#FFFFFF","hasLongDescription":null,"onClick":null,"zoom":15,"symbol":null,"author":"b1999a1c-b0e9-4329-9d7e-3efcaff68e6f","clipSource":null,"isHidden":null,"id":"19461097-2126-4e82-8ccf-9ca8206252a7","mapImageId":null,"ordering":1761167942540073,"strokeWidth":null,"radius":null,"isTextHidden":null,"parentId":null,"strokeOpacity":null,"icon":null,"hideFromLegend":null,"type":"Text","showRadius":null,"mapLinkId":null,"routeMode":null,"radiusDisplayAngle":90,"renderHoles":null,"locked":false,"radiusDisplayUnit":null},{"showEndcaps":null,"coordinates":null,"description":null,"position":null,"scale":null,"size":null,"attributes":[],"frame":null,"label":null,"showLinkPreview":null,"showLength":null,"createdAtUnixTimeMs":1761167281000,"isCollapsed":null,"opacity":null,"text":"Untitled group","strokeStyle":null,"fillOpacity":null,"textStyle":null,"widthScale":1,"showArea":null,"rotation":null,"textAlign":null,"color":"#8B5CF6","hasLongDescription":null,"onClick":null,"zoom":null,"symbol":"dot","author":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","clipSource":null,"isHidden":null,"id":"af91fd62-9460-4505-94a4-a78ba7ef99fb","mapImageId":null,"ordering":1761164677065469,"strokeWidth":null,"radius":null,"isTextHidden":null,"parentId":null,"strokeOpacity":null,"icon":null,"hideFromLegend":true,"type":"Group","showRadius":null,"mapLinkId":null,"routeMode":null,"radiusDisplayAngle":90,"renderHoles":null,"locked":false,"radiusDisplayUnit":null},{"showEndcaps":null,"coordinates":[[[36.1019736,-115.1663303],[36.1019736,-115.1652471],[36.1025633,-115.1652471],[36.1025633,-115.1663303],[36.1019736,-115.1663303]]],"description":null,"position":[36.10226844375384,-115.16578869139748],"scale":0.4703049683550554,"size":null,"attributes":[],"frame":null,"label":null,"showLinkPreview":null,"showLength":null,"createdAtUnixTimeMs":1761168239000,"isCollapsed":null,"opacity":null,"text":"MGM\nGRAND","strokeStyle":null,"fillOpacity":null,"textStyle":"regular","widthScale":1,"showArea":null,"rotation":0,"textAlign":"center","color":"#FFFFFF","hasLongDescription":null,"onClick":null,"zoom":15,"symbol":null,"author":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","clipSource":null,"isHidden":null,"id":"892126ab-facb-4254-bc57-88e8c58025a7","mapImageId":null,"ordering":1761167891031027,"strokeWidth":null,"radius":null,"isTextHidden":null,"parentId":null,"strokeOpacity":null,"icon":null,"hideFromLegend":null,"type":"Text","showRadius":null,"mapLinkId":null,"routeMode":null,"radiusDisplayAngle":90,"renderHoles":null,"locked":false,"radiusDisplayUnit":null},{"showEndcaps":null,"coordinates":[[[36.1231432,-115.1690699],[36.1231432,-115.167172],[36.1238799,-115.167172],[36.1238799,-115.1690699],[36.1231432,-115.1690699]]],"description":null,"position":[36.1235115411632,-115.16812093455903],"scale":0.5876768171142165,"size":null,"attributes":[],"frame":null,"label":null,"showLinkPreview":null,"showLength":null,"createdAtUnixTimeMs":1761168227000,"isCollapsed":null,"opacity":null,"text":"THE\nVENETIAN","strokeStyle":null,"fillOpacity":null,"textStyle":"regular","widthScale":1,"showArea":null,"rotation":0,"textAlign":"center","color":"#FFFFFF","hasLongDescription":null,"onClick":null,"zoom":15,"symbol":null,"author":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","clipSource":null,"isHidden":null,"id":"9d72cc86-d63e-4715-9502-09a660ddde67","mapImageId":null,"ordering":1761167837386471,"strokeWidth":null,"radius":null,"isTextHidden":null,"parentId":null,"strokeOpacity":null,"icon":null,"hideFromLegend":null,"type":"Text","showRadius":null,"mapLinkId":null,"routeMode":null,"radiusDisplayAngle":90,"renderHoles":null,"locked":false,"radiusDisplayUnit":null},{"showEndcaps":null,"coordinates":[[[36.0923611,-115.1767337],[36.0923611,-115.1752079],[36.0928957,-115.1752079],[36.0928957,-115.1767337],[36.0923611,-115.1767337]]],"description":null,"position":[36.09262843909876,-115.17597081044501],"scale":0.4262318542589381,"size":null,"attributes":[],"frame":null,"label":null,"showLinkPreview":null,"showLength":null,"createdAtUnixTimeMs":1761168247000,"isCollapsed":null,"opacity":null,"text":"MANDALAY\nBAY","strokeStyle":null,"fillOpacity":null,"textStyle":"regular","widthScale":1,"showArea":null,"rotation":0,"textAlign":"center","color":"#FFFFFF","hasLongDescription":null,"onClick":null,"zoom":15,"symbol":null,"author":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","clipSource":null,"isHidden":null,"id":"2855f31f-74e6-4bd5-8b72-e5486fdc4bf6","mapImageId":null,"ordering":1761167924835370,"strokeWidth":null,"radius":null,"isTextHidden":null,"parentId":null,"strokeOpacity":null,"icon":null,"hideFromLegend":null,"type":"Text","showRadius":null,"mapLinkId":null,"routeMode":null,"radiusDisplayAngle":90,"renderHoles":null,"locked":false,"radiusDisplayUnit":null},{"showEndcaps":null,"coordinates":[[[36.127152,-115.1656049],[36.127152,-115.164428],[36.1275204,-115.164428],[36.1275204,-115.1656049],[36.127152,-115.1656049]]],"description":null,"position":[36.12733617375698,-115.16501645245906],"scale":0.5876768171142165,"size":null,"attributes":[],"frame":null,"label":null,"showLinkPreview":null,"showLength":null,"createdAtUnixTimeMs":1761168223000,"isCollapsed":null,"opacity":null,"text":"WYNN","strokeStyle":null,"fillOpacity":null,"textStyle":"regular","widthScale":1,"showArea":null,"rotation":0,"textAlign":"center","color":"#FFFFFF","hasLongDescription":null,"onClick":null,"zoom":15,"symbol":null,"author":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","clipSource":null,"isHidden":null,"id":"0c14882a-9557-4aee-ac60-7f3d1eeb9d17","mapImageId":null,"ordering":1761167858029138,"strokeWidth":null,"radius":null,"isTextHidden":null,"parentId":null,"strokeOpacity":null,"icon":null,"hideFromLegend":null,"type":"Text","showRadius":null,"mapLinkId":null,"routeMode":null,"radiusDisplayAngle":90,"renderHoles":null,"locked":false,"radiusDisplayUnit":null},{"showEndcaps":null,"coordinates":[[36.1224607,-115.1682643]],"description":null,"position":null,"scale":null,"size":null,"attributes":[],"frame":"frame-circle","label":null,"showLinkPreview":null,"showLength":null,"createdAtUnixTimeMs":1761224929000,"isCollapsed":null,"opacity":null,"text":"Geo Party at Spritz at the Venetian Pool Deck","strokeStyle":null,"fillOpacity":null,"textStyle":null,"widthScale":1,"showArea":null,"rotation":null,"textAlign":null,"color":"#FFC904","hasLongDescription":false,"onClick":null,"zoom":null,"symbol":"star","author":"2d8f0d35-09e0-4bed-9323-bc2695c2272e","clipSource":null,"isHidden":null,"id":"5970957e-6066-4ffb-a5a9-30333e8bad15","mapImageId":null,"ordering":1761164367898672,"strokeWidth":null,"radius":null,"isTextHidden":null,"parentId":null,"strokeOpacity":null,"icon":null,"hideFromLegend":null,"type":"Place","showRadius":null,"mapLinkId":null,"routeMode":null,"radiusDisplayAngle":90,"renderHoles":null,"locked":false,"radiusDisplayUnit":null}],"allowedFeatures":{"sources":true,"filters":true,"extensions":true,"h3":true,"embeds":true,"sdk":true,"widgets":true,"transformations":true,"mapActions":true,"customIcons":true,"bucketSources":true,"iframePopups":true,"stacSource":true,"streamCogs":true,"liveLayers":true,"advancedExports":true,"basicExports":true,"basicPipelineExports":true,"commentsAttachedData":true,"commentsAttachedMedia":true,"editableLayers":true,"embedActionCustomization":true,"embedTokens":true,"enterprisePipelineExports":true,"sameDomainJoin":true,"streamVectorTiles":true,"updateEnterpriseSettings":true,"uploadLayer":true,"viewerExportData":true,"workspaceLibrary":true,"enterpriseExports":true},"mapBackgrounds":[{"id":"ece8e178-37b3-408b-9c93-c96fd9507a52","type":"color","color":"#0a0a0a","colorScheme":"dark"}],"current_user":{}}