records

records

Active filters Clear all

No active filters

Filters

Wayfinding map stands

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
KEY
Unique identifier for each map stand.

CVS### - a narrow map stand with wayfinding information on both sides.

CVP### - a large poster case map stand with wayfinding information on one side.

No description available for this field.

Name (identifier)
key
Type
text
Sample
                       
ZONE
General location of the map stand.

DT - Downtown

Metro Core – The area surrounding downtown extending to Burrard Street, 16th Ave, and Clark Drive/Knight Street.

OT – Outer Neighbourhoods beyond the Metro Core

No description available for this field.

Name (identifier)
zone
Type
text
Sample
                       
INSTALLATION
Year the map stand was originally installed.

No description available for this field.

Name (identifier)
installation
Type
date
Sample
                       
LOCATION_1
Name of street or path nearest to the map stand.

No description available for this field.

Name (identifier)
location_1
Type
text
Sample
                       
LOCATION_2
Name of secondary street or path nearest to the map stand.

No description available for this field.

Name (identifier)
location_2
Type
text
Sample
                       
ORIENTATION
The rotation of the map stand from true north, where 0 means the map stand is facing east/west.

No description available for this field.

Name (identifier)
orientation
Type
integer
Sample
                       
BIA
The name of the Business Improvement Area in which the map stand is located. See “Websites for further information section” for a listing of BIAs.

No description available for this field.

Name (identifier)
bia
Type
text
Sample
                       
Geo Local Area
The local area where the feature is found, derived from the feature's coordinates or address in the source system. The City has 22 local areas (also known as local planning areas).  For more details, see the Local area boundary data set.

No description available for this field.

Name (identifier)
geo_local_area
Type
text
Sample
                       
Geom
Spatial representation.

No description available for this field.

Name (identifier)
geom
Type
geo shape
Sample
                       
geo_point_2d
               

No description available for this field.

Name (identifier)
geo_point_2d
Type
geo point
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"wayfinding-map-stands",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/wayfinding-map-stands"
      }
    ]
    ,
  • "definitions":
    {
    • "wayfinding-map-stands":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/wayfinding-map-stands_records"
            }
          }
        }
      }
      ,
    • "geoJSON":
      {
      • "title":"Geo JSON object",
      • "description":"Schema for a Geo JSON object",
      • "type":"object",
      • "required":
        [
        • "type"
        ]
        ,
      • "properties":
        {
        • "crs":
          {
          • "$ref":"#/definitions/crs"
          }
          ,
        • "bbox":
          {
          • "$ref":"#/definitions/bbox"
          }
        }
        ,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/geometry"
          }
          ,
        • {
          • "$ref":"#/definitions/geometryCollection"
          }
          ,
        • {
          • "$ref":"#/definitions/feature"
          }
          ,
        • {
          • "$ref":"#/definitions/featureCollection"
          }
        ]
      }
      ,
    • "bbox":
      {
      • "description":"A bounding box as defined by GeoJSON",
      • "type":"array",
      • "items":
        {
        • "type":"number"
        }
      }
      ,
    • "crs":
      {
      • "title":"crs",
      • "description":"a Coordinate Reference System object",
      • "type":
        [
        • "object",
        • "null"
        ]
        ,
      • "required":
        [
        • "type",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "type":"string"
          }
          ,
        • "properties":
          {
          • "type":"object"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "position":
          {
          • "description":"A single position",
          • "type":"array",
          • "minItems":2,
          • "items":
            [
            • {
              • "type":"number"
              }
              ,
            • {
              • "type":"number"
              }
            ]
            ,
          • "additionalItems":false
          }
          ,
        • "positionArray":
          {
          • "description":"An array of positions",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/position"
            }
          }
          ,
        • "lineString":
          {
          • "description":"An array of two or more positions",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":2
              }
            ]
          }
          ,
        • "linearRing":
          {
          • "description":"An array of four positions where the first equals the last",
          • "allOf":
            [
            • {
              • "$ref":"#/definitions/positionArray"
              }
              ,
            • {
              • "minItems":4
              }
            ]
          }
          ,
        • "polygon":
          {
          • "description":"An array of linear rings",
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/linearRing"
            }
          }
        }
        ,
      • "wayfinding-map-stands_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "key":
                {
                • "type":"string",
                • "title":"KEY",
                • "description":"Unique identifier for each map stand. CVS### - a narrow map stand with wayfinding information on both sides. CVP### - a large poster case map stand with wayfinding information on one side."
                }
                ,
              • "zone":
                {
                • "type":"string",
                • "title":"ZONE",
                • "description":"General location of the map stand. DT - Downtown Metro Core – The area surrounding downtown extending to Burrard Street, 16th Ave, and Clark Drive/Knight Street. OT – Outer Neighbourhoods beyond the Metro Core"
                }
                ,
              • "installation":
                {
                • "type":"string",
                • "format":"date",
                • "title":"INSTALLATION",
                • "description":"Year the map stand was originally installed."
                }
                ,
              • "location_1":
                {
                • "type":"string",
                • "title":"LOCATION_1",
                • "description":"Name of street or path nearest to the map stand."
                }
                ,
              • "location_2":
                {
                • "type":"string",
                • "title":"LOCATION_2",
                • "description":"Name of secondary street or path nearest to the map stand."
                }
                ,
              • "orientation":
                {
                • "type":"integer",
                • "title":"ORIENTATION",
                • "description":"The rotation of the map stand from true north, where 0 means the map stand is facing east/west."
                }
                ,
              • "bia":
                {
                • "type":"string",
                • "title":"BIA",
                • "description":"The name of the Business Improvement Area in which the map stand is located. See “Websites for further information section” for a listing of BIAs."
                }
                ,
              • "geo_local_area":
                {
                • "type":"string",
                • "title":"Geo Local Area",
                • "description":"The local area where the feature is found, derived from the feature's coordinates or address in the source system. The City has 22 local areas (also known as local planning areas). For more details, see the Local area boundary data set."
                }
                ,
              • "geom":
                {
                • "type":"object",
                • "oneOf":
                  [
                  • {
                    • "$ref":"#/definitions/geometry"
                    }
                  ]
                  ,
                • "title":"Geom",
                • "description":"Spatial representation."
                }
                ,
              • "geo_point_2d":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"geo_point_2d",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Similar datasets