Parks are outdoor spaces for recreation, relaxation, and nature appreciation, including urban parks, nature preserves, trails, and scenic locations. It is a top-level category within my [[Using Obsidian as a Personal Atlas|personal atlas]], a way to categorize [[Places.base|places]] in my [[Obsidian]] vault. ```base filters: and: - type == link("Place") - or: - placetype == link("Park") - list(placetype)[0].asFile().properties.placetype == "Park" formulas: icon: |- if(icon, icon, if(list(placetype)[0].asFile().properties.icon, list(placetype)[0].asFile().properties.icon, if(list(placetype)[0].asFile().properties.placetype[0].asFile().properties.icon, list(placetype)[0].asFile().properties.placetype[0].asFile().properties.icon, null ) ) ) color: if(visited, "orange", "darkgreen") views: - type: table name: Table order: - file.name - address - type: map name: Map center: "" coordinates: note.coordinates markerIcon: formula.icon markerColor: formula.color ```