Skip to content

Instantly share code, notes, and snippets.

@ThomasThoren
Last active March 9, 2019 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ThomasThoren/5936992f0ba57da6e9f0ade38ed5e058 to your computer and use it in GitHub Desktop.
Save ThomasThoren/5936992f0ba57da6e9f0ade38ed5e058 to your computer and use it in GitHub Desktop.
jq

jq

Docs: https://stedolan.github.io/jq/

Download sample JSON data from the City of Austin. This contains traffic light data.

$ curl -o data.json https://data.austintexas.gov/resource/fs3c-45ge.json

Format and colorize.

$ cat data.json | jq '.'
[
  {
    ":@computed_region_8spj_utxs": "9",
    ":@computed_region_a3it_2a2z": "2865",
    ":@computed_region_q9nd_rr82": "10",
    ":@computed_region_qwte_z96m": "1169",
    "atd_location_id": "LOC16-004800",
    "camera_id": "286",
    "camera_mfg": "Axis",
    "camera_status": "TURNED_ON",
...

Select an array index.

$ cat data.json | jq '.[0]'
{
  ":@computed_region_8spj_utxs": "9",
  ":@computed_region_a3it_2a2z": "2865",
  ":@computed_region_q9nd_rr82": "10",
  ":@computed_region_qwte_z96m": "1169",
  "atd_location_id": "LOC16-004800",
  "camera_id": "286",
  "camera_mfg": "Axis",
  "camera_status": "TURNED_ON",
  "coa_intersection_id": "5159577",
  "comm_status_datetime_utc": "2018-01-08T21:32:00.000",
  "council_district": "9",
  "cross_st": " 32ND ST",
  "cross_st_block": "1034",
  "funding": "None Identified",
  "ip_comm_status": "ONLINE",
  "jurisdiction_label": "AUSTIN FULL PURPOSE",
  "location": {
    "type": "Point",
    "coordinates": [
      -97.723053,
      30.2890625
    ]
  },
  "location_latitude": "30.2890625",
  "location_longitude": "-97.723053",
  "location_name": "IH 35 SVRD / 32ND ST",
  "location_type": "ROADWAY",
  "modified_date": "2018-12-06T12:29:00.000",
  "primary_st": "IH 35 SVRD",
  "primary_st_block": "3109",
  "screenshot_address": "http://162.89.13.145/CCTVImages/CCTV286.jpg",
  "signal_eng_area": "CENTRAL",
  "turn_on_date": "2017-08-09T00:00:00.000"
}

Filter on a key.

$ cat data.json | jq '.[0].location_name'
"IH 35 SVRD / 32ND ST"

Filter on a key for each array item.

$ cat data.json | jq '.[].location_name'
"IH 35 SVRD / 32ND ST"
" SAN JACINTO BLVD / 7TH ST (OMNI - SOUTHEAST)"
" SAN JACINTO BLVD / 7TH ST (OMNI - NORTH)"
" 1ST ST / ANNIE ST"
" AIRPORT BLVD / MANOR RD"
" WELLS BRANCH PKWY / HEATHERWILDE BLVD"
" ANDERSON LN SVRD / LAMAR BLVD SVRD"
" MC NEIL DR / PARMER LN"
" BURNET RD / 45TH ST"
"FM 620 RD / ANDERSON MILL RD"
...

Filter on a key value.

$ cat data.json | jq '.[] | select(.camera_mfg=="Sarix")' 
{
  ":@computed_region_8spj_utxs": "9",
  ":@computed_region_a3it_2a2z": "2856",
  ":@computed_region_q9nd_rr82": "10",
  "atd_location_id": "LOC16-006975",
  "camera_id": "34",
  "camera_mfg": "Sarix",
  "camera_status": "TURNED_ON",
  "comm_status_datetime_utc": "2018-12-21T03:35:00.000",
  "council_district": "9",
...

Construct a new object based on filters.

$ cat data.json | jq '.[] | { location: .location_name, img: .screenshot_address }'
{
  "location": "IH 35 SVRD / 32ND ST",
  "img": "http://162.89.13.145/CCTVImages/CCTV286.jpg"
}
{
  "location": " SAN JACINTO BLVD / 7TH ST (OMNI - SOUTHEAST)",
  "img": "http://162.89.13.145/CCTVImages/CCTV34.jpg"
}
...

Create directory for each Gist.

$ cat data.json | jq '.[] | .description' | tr '/' '-' | tr ' ' '_' | sed 's/^"/"gists\//' | xargs mkdir -p

Save each Gist's file.

cat data.json | jq '.[] | .files | .[] | .raw_url' | xargs wget --force-directories
[{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2865",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1169","atd_location_id":"LOC16-004800","camera_id":"286","camera_mfg":"Axis","camera_status":"TURNED_ON","coa_intersection_id":"5159577","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" 32ND ST","cross_st_block":"1034","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.723053,30.2890625]},"location_latitude":"30.2890625","location_longitude":"-97.723053","location_name":"IH 35 SVRD / 32ND ST","location_type":"ROADWAY","modified_date":"2018-12-06T12:29:00.000","primary_st":"IH 35 SVRD","primary_st_block":"3109","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV286.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006975","camera_id":"34","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-12-21T03:35:00.000","council_district":"9","cross_st":" 7TH ST","cross_st_block":"200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"OMNI - SOUTHEAST","location":{"type":"Point","coordinates":[-97.740235,30.268596]},"location_latitude":"30.268596","location_longitude":"-97.740235","location_name":" SAN JACINTO BLVD / 7TH ST (OMNI - SOUTHEAST)","location_type":"ROADWAY","modified_date":"2018-12-21T03:45:00.000","primary_st":" SAN JACINTO BLVD","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV34.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006970","camera_id":"35","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-12-21T03:35:00.000","council_district":"9","cross_st":" 7TH ST","cross_st_block":"200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"OMNI - NORTH","location":{"type":"Point","coordinates":[-97.740043,30.269174]},"location_latitude":"30.269174","location_longitude":"-97.740043","location_name":" SAN JACINTO BLVD / 7TH ST (OMNI - NORTH)","location_type":"ROADWAY","modified_date":"2018-12-21T03:45:00.000","primary_st":" SAN JACINTO BLVD","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV35.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"340","atd_location_id":"LOC16-000985","camera_id":"434","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155185","comm_status_datetime_utc":"2018-12-12T03:35:00.000","council_district":"9","cross_st":" ANNIE ST","cross_st_block":"601","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7558212,30.247448]},"location_latitude":"30.247448","location_longitude":"-97.7558212","location_name":" 1ST ST / ANNIE ST","location_type":"ROADWAY","modified_date":"2018-12-12T03:45:00.000","primary_st":" 1ST ST","primary_st_block":"1600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV434.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2865",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"3718","atd_location_id":"LOC16-000820","camera_id":"454","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5161390","comm_status_datetime_utc":"2018-12-15T03:35:00.000","council_district":"1,9","cross_st":" MANOR RD","cross_st_block":"3000","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7063599,30.286293]},"location_latitude":"30.286293","location_longitude":"-97.7063599","location_name":" AIRPORT BLVD / MANOR RD","location_type":"ROADWAY","modified_date":"2018-12-15T03:45:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"2241","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV454.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-08-01T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"8481",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-004040","camera_id":"574","camera_status":"DESIRED","coa_intersection_id":"5165974","comm_status_datetime_utc":"2018-12-17T00:00:00.000","council_district":"7","cross_st":" HEATHERWILDE BLVD","cross_st_block":"1600","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6529694,30.4326477]},"location_latitude":"30.4326477","location_longitude":"-97.6529694","location_name":" WELLS BRANCH PKWY / HEATHERWILDE BLVD","location_type":"ROADWAY","modified_date":"2018-12-17T09:52:00.000","primary_st":" WELLS BRANCH PKWY","primary_st_block":"501","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV574.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3439","atd_location_id":"LOC16-003135","camera_id":"219","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160636","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4,7","cross_st":" LAMAR BLVD SVRD","cross_st_block":"7829","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7119446,30.3477535]},"location_latitude":"30.3477535","location_longitude":"-97.7119446","location_name":" ANDERSON LN SVRD / LAMAR BLVD SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" ANDERSON LN SVRD","primary_st_block":"718","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV219.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-05-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3243",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003340","camera_id":"227","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156304","comm_status_datetime_utc":"2018-12-27T03:35:00.000","council_district":"6","cross_st":" PARMER LN","cross_st_block":"6100","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7423935,30.4438496]},"location_latitude":"30.4438496","location_longitude":"-97.7423935","location_name":" MC NEIL DR / PARMER LN","location_type":"ROADWAY","modified_date":"2018-12-27T03:45:00.000","primary_st":" MC NEIL DR","primary_st_block":"6100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV227.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000445","camera_id":"22","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5156974","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10,7,9","cross_st":" 45TH ST","cross_st_block":"1401","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7415695,30.3154011]},"location_latitude":"30.3154011","location_longitude":"-97.7415695","location_name":" BURNET RD / 45TH ST","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" BURNET RD","primary_st_block":"4500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV22.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003165","camera_id":"220","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5147797","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" ANDERSON MILL RD","cross_st_block":"11611","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8258057,30.4554501]},"location_latitude":"30.4554501","location_longitude":"-97.8258057","location_name":"FM 620 RD / ANDERSON MILL RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"FM 620 RD","primary_st_block":"11600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV220.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000315","camera_id":"76","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159923","comm_status_datetime_utc":"2018-11-16T03:35:00.000","council_district":"9","cross_st":"IH 35 SVRD","cross_st_block":"3820","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7197723,30.294981]},"location_latitude":"30.294981","location_longitude":"-97.7197723","location_name":" 38TH HALF ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-12-17T16:43:00.000","primary_st":" 38TH HALF ST","primary_st_block":"1014","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV76.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003540","camera_id":"577","camera_status":"DESIRED","coa_intersection_id":"5159941","comm_status_datetime_utc":"2018-12-17T00:00:00.000","council_district":"7","cross_st":" OHLEN RD","cross_st_block":"1701","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7177963,30.3631344]},"location_latitude":"30.3631344","location_longitude":"-97.7177963","location_name":" RESEARCH BLVD SVRD / OHLEN RD","location_type":"ROADWAY","modified_date":"2018-12-17T16:40:00.000","primary_st":" RESEARCH BLVD SVRD","primary_st_block":"8540","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV577.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3851","atd_location_id":"LOC16-003430","camera_id":"578","camera_status":"DESIRED","coa_intersection_id":"5160097","comm_status_datetime_utc":"2018-12-17T00:00:00.000","council_district":"7,4","cross_st":" FAIRFIELD DR","cross_st_block":"1425","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7164764,30.360487]},"location_latitude":"30.360487","location_longitude":"-97.7164764","location_name":" RESEARCH BLVD SVRD / FAIRFIELD DR","location_type":"ROADWAY","modified_date":"2018-12-17T16:37:00.000","primary_st":" RESEARCH BLVD SVRD","primary_st_block":"8541","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV578.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003435","camera_id":"579","camera_status":"DESIRED","coa_intersection_id":"5160055","comm_status_datetime_utc":"2018-12-17T00:00:00.000","council_district":"7,4","cross_st":" RESEARCH BLVD SVRD","cross_st_block":"8540","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7168732,30.3603783]},"location_latitude":"30.3603783","location_longitude":"-97.7168732","location_name":" FAIRFIELD DR / RESEARCH BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-12-17T16:39:00.000","primary_st":" FAIRFIELD DR","primary_st_block":"1460","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV579.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3851","atd_location_id":"LOC16-003535","camera_id":"580","camera_status":"DESIRED","coa_intersection_id":"5159998","comm_status_datetime_utc":"2018-12-17T00:00:00.000","council_district":"4,7","cross_st":" RESEARCH BLVD SVRD","cross_st_block":"8700","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7172623,30.3632603]},"location_latitude":"30.3632603","location_longitude":"-97.7172623","location_name":" OHLEN RD / RESEARCH BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-12-17T16:41:00.000","primary_st":" OHLEN RD","primary_st_block":"1659","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV580.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"3316","atd_location_id":"LOC16-001690","camera_id":"575","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158375","comm_status_datetime_utc":"2018-12-18T03:35:00.000","council_district":"3,1","cross_st":"IH 35 SVRD","cross_st_block":"700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7338562,30.266571]},"location_latitude":"30.266571","location_longitude":"-97.7338562","location_name":" 7TH ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-12-18T03:45:00.000","primary_st":" 7TH ST","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV575.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-12-17T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003245","camera_id":"222","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155508","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" JOLLYVILLE RD","cross_st_block":"10728","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7488632,30.4006977]},"location_latitude":"30.4006977","location_longitude":"-97.7488632","location_name":" BRAKER LN / JOLLYVILLE RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" BRAKER LN","primary_st_block":"4815","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV222.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"553","atd_location_id":"LOC16-003780","camera_id":"557","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157981","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9,3","cross_st":" HOLLY ST","cross_st_block":"800","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7365189,30.2571259]},"location_latitude":"30.2571259","location_longitude":"-97.7365189","location_name":"IH 35 SVRD / HOLLY ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:46:00.000","primary_st":"IH 35 SVRD","primary_st_block":"61","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV557.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-05-23T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004280","camera_id":"272","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149246","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" SPICEWOOD PKWY","cross_st_block":"11610","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8072357,30.4471569]},"location_latitude":"30.4471569","location_longitude":"-97.8072357","location_name":" ANDERSON MILL RD / SPICEWOOD PKWY","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" ANDERSON MILL RD","primary_st_block":"10407","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV272.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004845","camera_id":"288","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150922","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":"FM 2222 RD","cross_st_block":"5721","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7905273,30.359251]},"location_latitude":"30.359251","location_longitude":"-97.7905273","location_name":" CAPITAL OF TEXAS HWY / 2222 RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"5800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV288.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000095","camera_id":"5","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156606","comm_status_datetime_utc":"2018-12-31T03:35:00.000","council_district":"9","cross_st":" RIO GRANDE ST","cross_st_block":"1800","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7448349,30.2825451]},"location_latitude":"30.2825451","location_longitude":"-97.7448349","location_name":" MARTIN LUTHER KING JR BLVD / RIO GRANDE ST","location_type":"ROADWAY","modified_date":"2018-12-31T03:46:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV5.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2016-11-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3245",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003290","camera_id":"224","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158796","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" HOWARD LN","cross_st_block":"5001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN LTD","location":{"type":"Point","coordinates":[-97.7255859,30.4490528]},"location_latitude":"30.4490528","location_longitude":"-97.7255859","location_name":" MC NEIL RD / HOWARD LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" MC NEIL RD","primary_st_block":"13600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV224.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"7998",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003315","camera_id":"225","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149505","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":"US 183 HWY SVRD","cross_st_block":"14076","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.803299,30.4794254]},"location_latitude":"30.4794254","location_longitude":"-97.803299","location_name":" LAKELINE BLVD / 183 HWY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" LAKELINE BLVD","primary_st_block":"2901","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV225.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_a3it_2a2z":"3245","atd_location_id":"LOC16-003335","camera_id":"226","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154630","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" PARMER LN","cross_st_block":"7700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.7545547,30.4605808]},"location_latitude":"30.4605808","location_longitude":"-97.7545547","location_name":" ANDERSON MILL RD / PARMER LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" ANDERSON MILL RD","primary_st_block":"8001","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV226.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003410","camera_id":"231","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164799","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":"IH 35 SVRD","cross_st_block":"13700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6711884,30.4242554]},"location_latitude":"30.4242554","location_longitude":"-97.6711884","location_name":" HOWARD LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" HOWARD LN","primary_st_block":"1120","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV231.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000460","camera_id":"24","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157696","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" NORTHCROSS DR","cross_st_block":"7822","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7355347,30.3583069]},"location_latitude":"30.3583069","location_longitude":"-97.7355347","location_name":" ANDERSON LN / NORTHCROSS DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" ANDERSON LN","primary_st_block":"2622","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV24.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3243",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003815","camera_id":"246","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157325","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" LEGENDARY DR","cross_st_block":"13420","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Riata Vista Circle - West","location":{"type":"Point","coordinates":[-97.7359543,30.4372978]},"location_latitude":"30.4372978","location_longitude":"-97.7359543","location_name":" PARMER LN / LEGENDARY DR (Riata Vista Circle - West)","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" PARMER LN","primary_st_block":"5600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV246.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"2862",":@computed_region_q9nd_rr82":"6",":@computed_region_qwte_z96m":"3476","atd_location_id":"LOC16-003820","camera_id":"247","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5152967","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" SPECTRUM DR","cross_st_block":"9501","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7670975,30.4816914]},"location_latitude":"30.4816914","location_longitude":"-97.7670975","location_name":" PARMER LN / SPECTRUM DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" PARMER LN","primary_st_block":"9500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV247.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3246",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004070","camera_id":"258","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5146187","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10,6","cross_st":" RIVER PLACE BLVD","cross_st_block":"6801","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8455124,30.3945255]},"location_latitude":"30.3945255","location_longitude":"-97.8455124","location_name":"FM 2222 RD / RIVER PLACE BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"FM 2222 RD","primary_st_block":"10600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV258.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3341","atd_location_id":"LOC16-000020","camera_id":"58","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159119","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" LAMAR BLVD","cross_st_block":"5630","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7263336,30.325943]},"location_latitude":"30.325943","location_longitude":"-97.7263336","location_name":" KOENIG LN / LAMAR BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" KOENIG LN","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV58.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3439","atd_location_id":"LOC16-003135","camera_id":"218","camera_status":"VOID","coa_intersection_id":"5160636","comm_status_datetime_utc":"2018-01-25T09:30:00.000","council_district":"4,7","cross_st":" LAMAR BLVD SVRD","cross_st_block":"7829","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7119446,30.3477535]},"location_latitude":"30.3477535","location_longitude":"-97.7119446","location_name":" ANDERSON LN SVRD / LAMAR BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-12-14T16:20:00.000","primary_st":" ANDERSON LN SVRD","primary_st_block":"718","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV218.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1404","atd_location_id":"LOC16-003070","camera_id":"211","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161809","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" ANDERSON LN SVRD","cross_st_block":"700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7006454,30.3395042]},"location_latitude":"30.3395042","location_longitude":"-97.7006454","location_name":"IH 35 SVRD / ANDERSON LN SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"IH 35 SVRD","primary_st_block":"7634","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV211.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-10-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003110","camera_id":"214","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155431","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" JOLLYVILLE RD","cross_st_block":"10022","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7497025,30.3941898]},"location_latitude":"30.3941898","location_longitude":"-97.7497025","location_name":" GREAT HILLS TRL / JOLLYVILLE RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" GREAT HILLS TRL","primary_st_block":"9800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV214.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004095","camera_id":"260","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149583","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" WESTLAKE DR","cross_st_block":"4300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8062515,30.3352509]},"location_latitude":"30.3352509","location_longitude":"-97.8062515","location_name":" CAPITAL OF TEXAS HWY / WESTLAKE DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"3700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV260.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004120","camera_id":"261","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151885","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10,6","cross_st":" FOUR IRON DR","cross_st_block":"11600","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7782974,30.4316254]},"location_latitude":"30.4316254","location_longitude":"-97.7782974","location_name":" SPICEWOOD SPRINGS RD / FOUR IRON DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" SPICEWOOD SPRINGS RD","primary_st_block":"8551","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV261.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_a3it_2a2z":"3245","atd_location_id":"LOC16-004125","camera_id":"262","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2019-01-01T03:35:00.000","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","landmark":"MCNEIL HIGH SCHOOL","location":{"type":"Point","coordinates":[-97.7313156,30.4473038]},"location_latitude":"30.4473038","location_longitude":"-97.7313156","location_name":"5501 BLK MC NEIL DR (MCNEIL HIGH SCHOOL)","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" MC NEIL DR","primary_st_block":"5501","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV262.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-08-11T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004170","camera_id":"263","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5152791","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" SPICEWOOD SPRINGS RD","cross_st_block":"5401","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"WEST","location":{"type":"Point","coordinates":[-97.7713623,30.382658]},"location_latitude":"30.382658","location_longitude":"-97.7713623","location_name":" CAPITAL OF TEXAS HWY / SPICEWOOD SPRINGS RD (WEST)","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"8000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV263.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004175","camera_id":"264","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151320","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" LAKEWOOD DR","cross_st_block":"7200","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7856598,30.3716736]},"location_latitude":"30.3716736","location_longitude":"-97.7856598","location_name":" CAPITAL OF TEXAS HWY / LAKEWOOD DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"6822","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV264.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004180","camera_id":"265","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154176","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" GREAT HILLS TRL","cross_st_block":"8901","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7598343,30.3881397]},"location_latitude":"30.3881397","location_longitude":"-97.7598343","location_name":" CAPITAL OF TEXAS HWY / GREAT HILLS TRL","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"8400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV265.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004195","camera_id":"267","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150534","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" COURTYARD DR","cross_st_block":"5400","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7952881,30.352457]},"location_latitude":"30.352457","location_longitude":"-97.7952881","location_name":" CAPITAL OF TEXAS HWY / COURTYARD DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"5409","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV267.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004225","camera_id":"268","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156010","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" RESEARCH BLVD SVRD","cross_st_block":"9800","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7457657,30.3892517]},"location_latitude":"30.3892517","location_longitude":"-97.7457657","location_name":" CAPITAL OF TEXAS HWY / RESEARCH BLVD SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"9530","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV268.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3241",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003105","camera_id":"213","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165361","comm_status_datetime_utc":"2018-07-03T03:30:00.000","council_district":"1","cross_st":" TECHNI CENTER DR","cross_st_block":"5800","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6679153,30.2760506]},"location_latitude":"30.2760506","location_longitude":"-97.6679153","location_name":" ED BLUESTEIN BLVD / TECHNI CENTER DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ED BLUESTEIN BLVD","primary_st_block":"4000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV213.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004265","camera_id":"271","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5148102","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" PASCAL LN","cross_st_block":"2","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8260498,30.3154545]},"location_latitude":"30.3154545","location_longitude":"-97.8260498","location_name":" CAPITAL OF TEXAS HWY / PASCAL LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV271.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3246",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004300","camera_id":"273","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5145335","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":"FM 2222 RD","cross_st_block":"10801","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8540649,30.4036922]},"location_latitude":"30.4036922","location_longitude":"-97.8540649","location_name":"FM 620 RD / 2222 RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"FM 620 RD","primary_st_block":"7100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV273.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-004690","camera_id":"284","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164535","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,4","cross_st":" RUNDBERG LN","cross_st_block":"1414","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.675972,30.3507729]},"location_latitude":"30.3507729","location_longitude":"-97.675972","location_name":" CAMERON RD / RUNDBERG LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAMERON RD","primary_st_block":"9210","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV284.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3245",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004880","camera_id":"290","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5152400","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" POND SPRINGS RD","cross_st_block":"12918","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7734146,30.4414482]},"location_latitude":"30.4414482","location_longitude":"-97.7734146","location_name":" HUNTERS CHASE DR / POND SPRINGS RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" HUNTERS CHASE DR","primary_st_block":"12100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV290.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004885","camera_id":"294","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5149515","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" MILLWRIGHT PKWY","cross_st_block":"11800","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"OLSON DR","location":{"type":"Point","coordinates":[-97.8040161,30.4471645]},"location_latitude":"30.4471645","location_longitude":"-97.8040161","location_name":" ANDERSON MILL RD / MILLWRIGHT PKWY (OLSON DR)","location_type":"BUILDING","modified_date":"2019-01-01T03:46:00.000","primary_st":" ANDERSON MILL RD","primary_st_block":"10200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV294.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-01-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-005530","camera_id":"297","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5152094","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" MOUNT BONNELL RD","cross_st_block":"5600","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.779,30.341]},"location_latitude":"30.341","location_longitude":"-97.779","location_name":"FM 2222 RD / MOUNT BONNELL RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"FM 2222 RD","primary_st_block":"4600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV297.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-05-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"3341","atd_location_id":"LOC16-000025","camera_id":"305","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159402","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" DENSON DR","cross_st_block":"701","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7235413,30.3303776]},"location_latitude":"30.3303776","location_longitude":"-97.7235413","location_name":" LAMAR BLVD / DENSON DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" LAMAR BLVD","primary_st_block":"6203","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV305.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000030","camera_id":"306","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159639","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" BRENTWOOD ST","cross_st_block":"801","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7212448,30.3339996]},"location_latitude":"30.3339996","location_longitude":"-97.7212448","location_name":" LAMAR BLVD / BRENTWOOD ST","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" LAMAR BLVD","primary_st_block":"6600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV306.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-11T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000015","camera_id":"308","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5158745","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,9","cross_st":" NORTH LOOP BLVD","cross_st_block":"801","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.729393,30.3210888]},"location_latitude":"30.3210888","location_longitude":"-97.729393","location_name":" LAMAR BLVD / NORTH LOOP BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" LAMAR BLVD","primary_st_block":"5200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV308.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-11T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-007235","camera_id":"328","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5163480","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,4","cross_st":" CAMERON RD","cross_st_block":"7800","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.686158,30.332819]},"location_latitude":"30.332819","location_longitude":"-97.686158","location_name":" ANDERSON LN SVRD / CAMERON RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" ANDERSON LN SVRD","primary_st_block":"1400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV328.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"202","atd_location_id":"LOC16-004625","camera_id":"329","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5162968","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,4","cross_st":" MC KIE DR","cross_st_block":"1306","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6904068,30.3290386]},"location_latitude":"30.3290386","location_longitude":"-97.6904068","location_name":" CAMERON RD / MC KIE DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAMERON RD","primary_st_block":"7300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV329.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-07-31T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"350","atd_location_id":"LOC16-003265","camera_id":"330","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5162779","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,4","cross_st":" ST JOHNS AVE","cross_st_block":"1400","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6923065,30.3260517]},"location_latitude":"30.3260517","location_longitude":"-97.6923065","location_name":" CAMERON RD / ST JOHNS AVE","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAMERON RD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV330.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2016-09-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003215","camera_id":"332","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5162397","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4,1","cross_st":"US 290 HWY SVRD","cross_st_block":"6421","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6958618,30.3207817]},"location_latitude":"30.3207817","location_longitude":"-97.6958618","location_name":" CAMERON RD / 290 HWY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAMERON RD","primary_st_block":"6313","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV332.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003220","camera_id":"333","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5161995","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4,1","cross_st":" BRIARCLIFF BLVD","cross_st_block":"1300","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6996155,30.3172894]},"location_latitude":"30.3172894","location_longitude":"-97.6996155","location_name":" CAMERON RD / BRIARCLIFF BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAMERON RD","primary_st_block":"6000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV333.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-003230","camera_id":"335","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160982","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"9,4","cross_st":" CAMERON RD","cross_st_block":"5101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7097549,30.3091068]},"location_latitude":"30.3091068","location_longitude":"-97.7097549","location_name":" 51ST ST / CAMERON RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" 51ST ST","primary_st_block":"1051","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV335.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-02-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3245",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003330","camera_id":"419","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5154858","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" TAMAYO DR","cross_st_block":"13450","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN LTD","location":{"type":"Point","coordinates":[-97.7527771,30.4559517]},"location_latitude":"30.4559517","location_longitude":"-97.7527771","location_name":" PARMER LN / TAMAYO DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" PARMER LN","primary_st_block":"7700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV419.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"2862",":@computed_region_q9nd_rr82":"6",":@computed_region_qwte_z96m":"3476","atd_location_id":"LOC16-003930","camera_id":"420","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5152489","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" LAKELINE BLVD","cross_st_block":"10001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7713318,30.4879532]},"location_latitude":"30.4879532","location_longitude":"-97.7713318","location_name":" PARMER LN / LAKELINE BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" PARMER LN","primary_st_block":"10000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV420.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003740","camera_id":"447","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5156985","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" STONELAKE BLVD","cross_st_block":"10201","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7392883,30.3989582]},"location_latitude":"30.3989582","location_longitude":"-97.7392883","location_name":" BRAKER LN / STONELAKE BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BRAKER LN","primary_st_block":"4200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV447.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-09-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-002250","camera_id":"448","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5160273","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" KRAMER LN","cross_st_block":"2301","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7140121,30.3908577]},"location_latitude":"30.3908577","location_longitude":"-97.7140121","location_name":" BRAKER LN / KRAMER LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BRAKER LN","primary_st_block":"2219","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV448.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000045","camera_id":"458","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159393","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" GUADALUPE ST","cross_st_block":"5510","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7238312,30.3235016]},"location_latitude":"30.3235016","location_longitude":"-97.7238312","location_name":" KOENIG LN / GUADALUPE ST","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" KOENIG LN","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV458.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-10T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000060","camera_id":"459","camera_status":"TURNED_ON","coa_intersection_id":"5158454","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" WOODROW AVE","cross_st_block":"5900","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7315903,30.3308716]},"location_latitude":"30.3308716","location_longitude":"-97.7315903","location_name":" KOENIG LN / WOODROW AVE","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" KOENIG LN","primary_st_block":"1400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV459.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-06-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000440","camera_id":"466","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157310","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" 49TH ST","cross_st_block":"2101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7392273,30.3198566]},"location_latitude":"30.3198566","location_longitude":"-97.7392273","location_name":" BURNET RD / 49TH ST","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BURNET RD","primary_st_block":"4900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV466.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-14T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"2133","atd_location_id":"LOC16-002345","camera_id":"477","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5163613","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" NORTH PLZ","cross_st_block":"8800","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6843338,30.3559647]},"location_latitude":"30.3559647","location_longitude":"-97.6843338","location_name":" RUNDBERG LN / NORTH PLZ","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" RUNDBERG LN","primary_st_block":"832","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV477.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3246",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004495","camera_id":"478","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148919","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" PARK CENTRE ","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.813118,30.3822517]},"location_latitude":"30.3822517","location_longitude":"-97.813118","location_name":"FM 2222 RD / PARK CENTRE ","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 2222 RD","primary_st_block":"8502","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV478.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-01-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3246",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004240","camera_id":"479","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5149559","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" BELL MOUNTAIN DR","cross_st_block":"7751","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8054581,30.3771896]},"location_latitude":"30.3771896","location_longitude":"-97.8054581","location_name":"FM 2222 RD / BELL MOUNTAIN DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 2222 RD","primary_st_block":"7706","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV479.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-01-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3246",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003395","camera_id":"480","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5149888","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" JESTER BLVD","cross_st_block":"6501","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8019943,30.3694973]},"location_latitude":"30.3694973","location_longitude":"-97.8019943","location_name":"FM 2222 RD / JESTER BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 2222 RD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV480.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1371","atd_location_id":"LOC16-001795","camera_id":"150","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160822","comm_status_datetime_utc":"2018-12-23T03:35:00.000","council_district":"3","cross_st":" PLEASANT VALLEY RD","cross_st_block":"100","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7127838,30.2529888]},"location_latitude":"30.2529888","location_longitude":"-97.7127838","location_name":" CESAR CHAVEZ ST / PLEASANT VALLEY RD","location_type":"ROADWAY","modified_date":"2018-12-23T03:45:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"2700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV150.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-001740","camera_id":"149","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161138","comm_status_datetime_utc":"2018-12-18T03:35:00.000","council_district":"3","cross_st":" PLEASANT VALLEY RD","cross_st_block":"500","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7094955,30.2601261]},"location_latitude":"30.2601261","location_longitude":"-97.7094955","location_name":" 7TH ST / PLEASANT VALLEY RD","location_type":"ROADWAY","modified_date":"2018-12-18T03:45:00.000","primary_st":" 7TH ST","primary_st_block":"2750","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV149.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"3950","atd_location_id":"LOC16-000400","camera_id":"21","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157450","comm_status_datetime_utc":"2019-01-04T03:35:00.000","council_district":"7","cross_st":" JUSTIN LN","cross_st_block":"2301","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7375259,30.3453846]},"location_latitude":"30.3453846","location_longitude":"-97.7375259","location_name":" BURNET RD / JUSTIN LN","location_type":"ROADWAY","modified_date":"2019-01-04T03:45:00.000","primary_st":" BURNET RD","primary_st_block":"6900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV21.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3246",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004065","camera_id":"257","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5147094","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" MC NEIL DR","cross_st_block":"10000","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8351898,30.3920841]},"location_latitude":"30.3920841","location_longitude":"-97.8351898","location_name":"FM 2222 RD / MC NEIL DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"FM 2222 RD","primary_st_block":"10100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV257.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002625","camera_id":"481","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5150327","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" CITY PARK RD","cross_st_block":"5914","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7974396,30.3658009]},"location_latitude":"30.3658009","location_longitude":"-97.7974396","location_name":"FM 2222 RD / CITY PARK RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 2222 RD","primary_st_block":"6200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV481.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004700","camera_id":"483","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5153910","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" DRY CREEK DR","cross_st_block":"3801","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7629929,30.342556]},"location_latitude":"30.342556","location_longitude":"-97.7629929","location_name":"FM 2222 RD / DRY CREEK DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 2222 RD","primary_st_block":"3600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV483.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"2862",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004430","camera_id":"489","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5150067","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":"US 183 HWY SVRD","cross_st_block":"13870","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7973709,30.4680157]},"location_latitude":"30.4680157","location_longitude":"-97.7973709","location_name":"FM 620 RD / 183 HWY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"12811","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV489.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004475","camera_id":"490","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148573","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" LAKE CREEK PKWY","cross_st_block":"11422","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8160172,30.4621582]},"location_latitude":"30.4621582","location_longitude":"-97.8160172","location_name":"FM 620 RD / LAKE CREEK PKWY","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"12220","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV490.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-01-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1371","atd_location_id":"LOC16-001730","camera_id":"148","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160282","comm_status_datetime_utc":"2018-06-29T03:30:00.000","council_district":"3,1","cross_st":" PROSPECT AVE","cross_st_block":"700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7174606,30.2614746]},"location_latitude":"30.2614746","location_longitude":"-97.7174606","location_name":" 7TH ST / PROSPECT AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"2141","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV148.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004465","camera_id":"491","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148045","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" EL SALIDO PKWY","cross_st_block":"11701","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8231125,30.4580345]},"location_latitude":"30.4580345","location_longitude":"-97.8231125","location_name":"FM 620 RD / EL SALIDO PKWY","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"11804","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV491.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-06-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000455","camera_id":"494","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158652","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" OHLEN RD","cross_st_block":"2301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7290573,30.3629112]},"location_latitude":"30.3629112","location_longitude":"-97.7290573","location_name":" BURNET RD / OHLEN RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BURNET RD","primary_st_block":"8300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV494.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-06-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-002805","camera_id":"496","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5167289","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1","cross_st":" SAMSUNG BLVD","cross_st_block":"12200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6317139,30.3760014]},"location_latitude":"30.3760014","location_longitude":"-97.6317139","location_name":" PARMER LN / SAMSUNG BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" PARMER LN","primary_st_block":"3201","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV496.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-06-22T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3243",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004985","camera_id":"497","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157977","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" LEGENDARY DR","cross_st_block":"13000","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Riata Vista Circle - East","location":{"type":"Point","coordinates":[-97.73172024,30.43435576]},"location_latitude":"30.43435576","location_longitude":"-97.73172024","location_name":" PARMER LN / LEGENDARY DR (Riata Vista Circle - East)","location_type":"BUILDING","modified_date":"2019-01-01T03:47:00.000","primary_st":" PARMER LN","primary_st_block":"5400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV497.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-05-31T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"8030",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-004250","camera_id":"500","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5168235","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1","cross_st":" PARMER LN","cross_st_block":"5700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6131744,30.3685207]},"location_latitude":"30.3685207","location_longitude":"-97.6131744","location_name":" HARRIS BRANCH PKWY / PARMER LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" HARRIS BRANCH PKWY","primary_st_block":"12300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV500.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-06-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3242",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004330","camera_id":"501","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5145963","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" WILSON PARKE AVE","cross_st_block":"11701","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8473129,30.416769]},"location_latitude":"30.416769","location_longitude":"-97.8473129","location_name":"FM 620 RD / WILSON PARKE AVE","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"8116","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV501.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-06-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-001800","camera_id":"151","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161943","comm_status_datetime_utc":"2018-06-16T03:30:00.000","council_district":"3","cross_st":" SPRINGDALE RD","cross_st_block":"700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7016754,30.2560368]},"location_latitude":"30.2560368","location_longitude":"-97.7016754","location_name":" 7TH ST / SPRINGDALE RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"3500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV151.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3242",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004375","camera_id":"502","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5146359","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" BOULDER LN","cross_st_block":"10200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"South","location":{"type":"Point","coordinates":[-97.842659,30.4287834]},"location_latitude":"30.4287834","location_longitude":"-97.842659","location_name":"FM 620 RD / BOULDER LN (South)","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"8400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV502.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-06-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"350","atd_location_id":"LOC16-003270","camera_id":"506","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5162504","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4,1","cross_st":"US 290 HWY SVRD","cross_st_block":"6450","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6949463,30.3218555]},"location_latitude":"30.3218555","location_longitude":"-97.6949463","location_name":" CAMERON RD / 290 HWY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" CAMERON RD","primary_st_block":"6313","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV506.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2016-09-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-004210","camera_id":"507","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157000","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" STONELAKE BLVD","cross_st_block":"9900","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7394409,30.3906918]},"location_latitude":"30.3906918","location_longitude":"-97.7394409","location_name":" CAPITAL OF TEXAS HWY / STONELAKE BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"9600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV507.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-09-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003670","camera_id":"514","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150518","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10,6","cross_st":" SPICEWOOD SPRINGS RD","cross_st_block":"8043","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"SCOTLAND WELL DR","location":{"type":"Point","coordinates":[-97.7936096,30.4225273]},"location_latitude":"30.4225273","location_longitude":"-97.7936096","location_name":" OLD LAMPASAS TRL / SPICEWOOD SPRINGS RD (SCOTLAND WELL DR)","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" OLD LAMPASAS TRL","primary_st_block":"8800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV514.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-03-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000010","camera_id":"515","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158588","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,9","cross_st":" 51ST ST","cross_st_block":"601","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7308197,30.3187695]},"location_latitude":"30.3187695","location_longitude":"-97.7308197","location_name":" LAMAR BLVD / 51ST ST","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" LAMAR BLVD","primary_st_block":"5000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV515.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-06-29T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3245",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003865","camera_id":"516","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5155524","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" DALLAS DR","cross_st_block":"6801","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN LTD","location":{"type":"Point","coordinates":[-97.7474213,30.4502716]},"location_latitude":"30.4502716","location_longitude":"-97.7474213","location_name":" PARMER LN / DALLAS DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" PARMER LN","primary_st_block":"6901","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV516.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-11T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000055","camera_id":"520","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158705","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" GROVER AVE","cross_st_block":"5900","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7294846,30.3298817]},"location_latitude":"30.3298817","location_longitude":"-97.7294846","location_name":" KOENIG LN / GROVER AVE","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" KOENIG LN","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV520.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-25T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"2371","atd_location_id":"LOC16-002870","camera_id":"549","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5161212","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"9","cross_st":" LANCASTER DR","cross_st_block":"5000","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.707489,30.3059559]},"location_latitude":"30.3059559","location_longitude":"-97.707489","location_name":" BARBARA JORDAN BLVD / LANCASTER DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BARBARA JORDAN BLVD","primary_st_block":"1301","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV549.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-10T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-003145","camera_id":"573","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160595","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" LAMAR BLVD SVRD","cross_st_block":"7829","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7124252,30.3470039]},"location_latitude":"30.3470039","location_longitude":"-97.7124252","location_name":" ANDERSON LN SVRD / LAMAR BLVD SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" ANDERSON LN SVRD","primary_st_block":"723","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV573.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2016-12-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"1404","atd_location_id":"LOC16-002295","camera_id":"576","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5164415","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,7","cross_st":"IH 35 SVRD","cross_st_block":"11118","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6764832,30.3771248]},"location_latitude":"30.3771248","location_longitude":"-97.6764832","location_name":" BRAKER LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BRAKER LN","primary_st_block":"755","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV576.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-12-17T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000040","camera_id":"59","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159899","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" LAMAR BLVD","cross_st_block":"7001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7188721,30.3376293]},"location_latitude":"30.3376293","location_longitude":"-97.7188721","location_name":" AIRPORT BLVD / LAMAR BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"7001","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV59.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000430","camera_id":"83","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157233","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" NORTH LOOP BLVD","cross_st_block":"1631","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7396164,30.3258514]},"location_latitude":"30.3258514","location_longitude":"-97.7396164","location_name":" BURNET RD / NORTH LOOP BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" BURNET RD","primary_st_block":"5300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV83.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-06-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000470","camera_id":"86","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156894","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" SHOAL CREEK BLVD","cross_st_block":"7900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7408447,30.361021]},"location_latitude":"30.361021","location_longitude":"-97.7408447","location_name":" ANDERSON LN / SHOAL CREEK BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" ANDERSON LN","primary_st_block":"3100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV86.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000750","camera_id":"107","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157156","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" 2ND ST","cross_st_block":"200","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7417908,30.2636414]},"location_latitude":"30.2636414","location_longitude":"-97.7417908","location_name":" SAN JACINTO BLVD / 2ND ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" SAN JACINTO BLVD","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV107.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-000530","camera_id":"10","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5154965","comm_status_datetime_utc":"2018-02-21T09:30:00.000","council_district":"10","cross_st":" JACKSON AVE","cross_st_block":"3500","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7558899,30.3087349]},"location_latitude":"30.3087349","location_longitude":"-97.7558899","location_name":" 35TH ST / JACKSON AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 35TH ST","primary_st_block":"1914","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV10.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-000655","camera_id":"102","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156502","comm_status_datetime_utc":"2018-08-25T03:30:00.000","council_district":"9","cross_st":" BARTON SPRINGS RD","cross_st_block":"101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7461395,30.2591114]},"location_latitude":"30.2591114","location_longitude":"-97.7461395","location_name":" CONGRESS AVE / BARTON SPRINGS RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV102.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"340","atd_location_id":"LOC16-000705","camera_id":"103","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155594","comm_status_datetime_utc":"2018-10-17T03:30:00.000","council_district":"9","cross_st":" LIVE OAK ST","cross_st_block":"100","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7525253,30.2418518]},"location_latitude":"30.2418518","location_longitude":"-97.7525253","location_name":" CONGRESS AVE / LIVE OAK ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"2109","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV103.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000720","camera_id":"105","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154726","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"3,9","cross_st":" 1ST ST","cross_st_block":"2301","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7596207,30.2421112]},"location_latitude":"30.2421112","location_longitude":"-97.7596207","location_name":" OLTORF ST / 1ST ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" OLTORF ST","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV105.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000735","camera_id":"106","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156353","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"9","cross_st":" LAVACA ST","cross_st_block":"100","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7469406,30.2640705]},"location_latitude":"30.2640705","location_longitude":"-97.7469406","location_name":" CESAR CHAVEZ ST / LAVACA ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV106.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3851","atd_location_id":"LOC16-005090","camera_id":"1","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Little Walnut Creek Library, HEB","location":{"type":"Point","coordinates":[-97.6981583,30.3636856]},"location_latitude":"30.3636856","location_longitude":"-97.6981583","location_name":"830 BLK W RUNDBERG LN (Little Walnut Creek Library, HEB)","location_type":"BUILDING","modified_date":"2019-01-01T03:45:00.000","primary_st":" RUNDBERG LN","primary_st_block":"830","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV1.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2016-11-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-003355","camera_id":"11","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5144234","comm_status_datetime_utc":"2018-12-19T03:35:00.000","council_district":"8","cross_st":" SLAUGHTER LN","cross_st_block":"5800","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8784256,30.2005997]},"location_latitude":"30.2005997","location_longitude":"-97.8784256","location_name":" ESCARPMENT BLVD / SLAUGHTER LN","location_type":"ROADWAY","modified_date":"2018-12-19T03:45:00.000","primary_st":" ESCARPMENT BLVD","primary_st_block":"9300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV11.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2864",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-000795","camera_id":"110","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5162623","comm_status_datetime_utc":"2018-11-18T03:35:00.000","council_district":"3","cross_st":" SPRINGDALE RD","cross_st_block":"1000","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6955109,30.2656097]},"location_latitude":"30.2656097","location_longitude":"-97.6955109","location_name":" AIRPORT BLVD / SPRINGDALE RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"1119","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV110.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"3718","atd_location_id":"LOC16-000815","camera_id":"111","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161612","comm_status_datetime_utc":"2018-03-10T09:30:00.000","council_district":"1","cross_st":" MARTIN LUTHER KING JR BLVD","cross_st_block":"3200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.703949,30.2825718]},"location_latitude":"30.2825718","location_longitude":"-97.703949","location_name":" AIRPORT BLVD / MARTIN LUTHER KING JR BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"1900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV111.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000840","camera_id":"112","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160322","comm_status_datetime_utc":"2018-02-27T09:30:00.000","council_district":"9","cross_st":" 45TH ST","cross_st_block":"1028","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7159805,30.3036251]},"location_latitude":"30.3036251","location_longitude":"-97.7159805","location_name":" AIRPORT BLVD / 45TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"4506","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV112.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-001010","camera_id":"118","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150579","comm_status_datetime_utc":"2018-03-30T03:30:00.000","council_district":"5,2","cross_st":" 1ST ST","cross_st_block":"8901","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7995529,30.1724548]},"location_latitude":"30.1724548","location_longitude":"-97.7995529","location_name":" SLAUGHTER LN / 1ST ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV118.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-001035","camera_id":"119","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153892","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"10","cross_st":" WINSTED LN","cross_st_block":"1300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7646103,30.2862911]},"location_latitude":"30.2862911","location_longitude":"-97.7646103","location_name":" ENFIELD RD / WINSTED LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ENFIELD RD","primary_st_block":"2008","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV119.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_a3it_2a2z":"8002","atd_location_id":"LOC16-004705","camera_id":"12","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5168394","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" SAINT THOMAS DR","cross_st_block":"12818","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.6151962,30.1783047]},"location_latitude":"30.1783047","location_longitude":"-97.6151962","location_name":" ROSS RD / SAINT THOMAS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ROSS RD","primary_st_block":"4500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV12.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001090","camera_id":"120","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157428","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"1","cross_st":" CONGRESS AVE","cross_st_block":"1500","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7394943,30.2769184]},"location_latitude":"30.2769184","location_longitude":"-97.7394943","location_name":" 15TH ST / CONGRESS AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 15TH ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV120.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001100","camera_id":"121","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157976","comm_status_datetime_utc":"2018-03-03T09:30:00.000","council_district":"1","cross_st":" TRINITY ST","cross_st_block":"1400","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7360306,30.2759418]},"location_latitude":"30.2759418","location_longitude":"-97.7360306","location_name":" 15TH ST / TRINITY ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 15TH ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV121.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001550","camera_id":"136","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157443","comm_status_datetime_utc":"2019-01-03T03:35:00.000","council_district":"9","cross_st":" TRINITY ST","cross_st_block":"500","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7396774,30.2661324]},"location_latitude":"30.2661324","location_longitude":"-97.7396774","location_name":" 5TH ST / TRINITY ST","location_type":"ROADWAY","modified_date":"2019-01-03T03:45:00.000","primary_st":" 5TH ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV136.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001115","camera_id":"123","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158612","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"1","cross_st":"IH 35 SVRD","cross_st_block":"1500","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7317581,30.2747765]},"location_latitude":"30.2747765","location_longitude":"-97.7317581","location_name":" 15TH ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 15TH ST","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV123.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-001120","camera_id":"124","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155942","comm_status_datetime_utc":"2018-08-14T03:30:00.000","council_district":"9","cross_st":" ELIZABETH ST","cross_st_block":"101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.749939,30.2489243]},"location_latitude":"30.2489243","location_longitude":"-97.749939","location_name":" CONGRESS AVE / ELIZABETH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"1500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV124.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"340","atd_location_id":"LOC16-001150","camera_id":"125","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155151","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" DAWSON RD","cross_st_block":"501","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7557068,30.2603436]},"location_latitude":"30.2603436","location_longitude":"-97.7557068","location_name":" BARTON SPRINGS RD / DAWSON RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"1100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV125.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001170","camera_id":"126","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155385","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" WALTER SEAHOLM DR","cross_st_block":"100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.75353,30.266]},"location_latitude":"30.266","location_longitude":"-97.75353","location_name":" CESAR CHAVEZ ST / WALTER SEAHOLM DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"816","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV126.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2016-09-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"102","atd_location_id":"LOC16-001845","camera_id":"13","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5159157","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"3","cross_st":" ROYAL CREST DR","cross_st_block":"1401","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7282867,30.241785]},"location_latitude":"30.241785","location_longitude":"-97.7282867","location_name":" RIVERSIDE DR / ROYAL CREST DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RIVERSIDE DR","primary_st_block":"1818","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV13.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001470","camera_id":"132","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156605","comm_status_datetime_utc":"2018-11-16T03:35:00.000","council_district":"9","cross_st":" LAVACA ST","cross_st_block":"600","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7452011,30.2687168]},"location_latitude":"30.2687168","location_longitude":"-97.7452011","location_name":" 6TH ST / LAVACA ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV132.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001305","camera_id":"129","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158042","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"1,9","cross_st":" 10TH ST","cross_st_block":"500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7357712,30.2702274]},"location_latitude":"30.2702274","location_longitude":"-97.7357712","location_name":" RED RIVER ST / 10TH ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" RED RIVER ST","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV129.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-03-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001440","camera_id":"131","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157390","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" SAN JACINTO BLVD","cross_st_block":"700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.740036,30.2682953]},"location_latitude":"30.2682953","location_longitude":"-97.740036","location_name":" 7TH ST / SAN JACINTO BLVD","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" 7TH ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV131.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001480","camera_id":"133","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156982","comm_status_datetime_utc":"2018-06-07T03:30:00.000","council_district":"9","cross_st":" CONGRESS AVE","cross_st_block":"600","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7428131,30.2680664]},"location_latitude":"30.2680664","location_longitude":"-97.7428131","location_name":" 6TH ST / CONGRESS AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV133.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001505","camera_id":"134","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157835","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" RED RIVER ST","cross_st_block":"600","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7371902,30.2664757]},"location_latitude":"30.2664757","location_longitude":"-97.7371902","location_name":" 6TH ST / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" 6TH ST","primary_st_block":"500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV134.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001540","camera_id":"135","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157141","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" BRAZOS ST","cross_st_block":"500","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7418365,30.2667561]},"location_latitude":"30.2667561","location_longitude":"-97.7418365","location_name":" 5TH ST / BRAZOS ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" 5TH ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV135.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001405","camera_id":"130","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156508","comm_status_datetime_utc":"2018-11-30T03:35:00.000","council_district":"9","cross_st":" 4TH ST","cross_st_block":"301","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7458725,30.2668762]},"location_latitude":"30.2668762","location_longitude":"-97.7458725","location_name":" LAVACA ST / 4TH ST","location_type":"ROADWAY","modified_date":"2018-11-30T03:45:00.000","primary_st":" LAVACA ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV130.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-001575","camera_id":"137","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5168019","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"2","cross_st":" ROSS RD","cross_st_block":"5413","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6231079,30.1694298]},"location_latitude":"30.1694298","location_longitude":"-97.6231079","location_name":" PEARCE LN / ROSS RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PEARCE LN","primary_st_block":"12400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV137.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"3819","atd_location_id":"LOC16-001585","camera_id":"138","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150362","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" LAMAR BLVD SVRD","cross_st_block":"4545","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8005447,30.2319736]},"location_latitude":"30.2319736","location_longitude":"-97.8005447","location_name":" WEST GATE BLVD / LAMAR BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WEST GATE BLVD","primary_st_block":"4500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV138.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001590","camera_id":"139","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156339","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"9","cross_st":" 4TH ST","cross_st_block":"401","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7469635,30.2671833]},"location_latitude":"30.2671833","location_longitude":"-97.7469635","location_name":" GUADALUPE ST / 4TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GUADALUPE ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV139.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-004365","camera_id":"14","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5159261","comm_status_datetime_utc":"2018-05-19T03:30:00.000","council_district":"3","cross_st":" PLEASANT VALLEY RD","cross_st_block":"2400","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7277679,30.227459]},"location_latitude":"30.227459","location_longitude":"-97.7277679","location_name":" OLTORF ST / PLEASANT VALLEY RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" OLTORF ST","primary_st_block":"2510","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV14.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001615","camera_id":"140","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158498","comm_status_datetime_utc":"2018-04-27T03:30:00.000","council_district":"1","cross_st":"IH 35 SVRD","cross_st_block":"1200","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7327881,30.2718334]},"location_latitude":"30.2718334","location_longitude":"-97.7327881","location_name":" 12TH ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 12TH ST","primary_st_block":"718","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV140.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-001630","camera_id":"141","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154173","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"3","cross_st":" POWELL CIR","cross_st_block":"501","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7639542,30.2352734]},"location_latitude":"30.2352734","location_longitude":"-97.7639542","location_name":" 1ST ST / POWELL CIR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 1ST ST","primary_st_block":"2912","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV141.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001640","camera_id":"142","camera_status":"VOID","coa_intersection_id":"5158252","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"3,1,9","cross_st":"IH 35 SVRD","cross_st_block":"700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7346649,30.2668209]},"location_latitude":"30.2668209","location_longitude":"-97.7346649","location_name":" 7TH ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-12-17T14:46:00.000","primary_st":" 7TH ST","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV142.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001640","camera_id":"143","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158252","comm_status_datetime_utc":"2018-03-11T08:30:00.000","council_district":"3,1,9","cross_st":"IH 35 SVRD","cross_st_block":"700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7346649,30.2668209]},"location_latitude":"30.2668209","location_longitude":"-97.7346649","location_name":" 7TH ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV143.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"102","atd_location_id":"LOC16-001650","camera_id":"144","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160906","comm_status_datetime_utc":"2018-07-21T03:30:00.000","council_district":"3","cross_st":" FARO DR","cross_st_block":"1901","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7126312,30.2295113]},"location_latitude":"30.2295113","location_longitude":"-97.7126312","location_name":" RIVERSIDE DR / FARO DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RIVERSIDE DR","primary_st_block":"5200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV144.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"3316","atd_location_id":"LOC16-001670","camera_id":"145","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158544","comm_status_datetime_utc":"2018-04-27T03:30:00.000","council_district":"1","cross_st":"IH 35 SVRD","cross_st_block":"1100","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7324753,30.2703285]},"location_latitude":"30.2703285","location_longitude":"-97.7324753","location_name":" 11TH ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 11TH ST","primary_st_block":"718","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV145.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"553","atd_location_id":"LOC16-001695","camera_id":"146","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158331","comm_status_datetime_utc":"2018-08-03T03:30:00.000","council_district":"3","cross_st":" 6TH ST","cross_st_block":"800","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7341995,30.2656364]},"location_latitude":"30.2656364","location_longitude":"-97.7341995","location_name":"IH 35 SVRD / 6TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"IH 35 SVRD","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV146.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-09-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1371","atd_location_id":"LOC16-001725","camera_id":"147","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159761","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"3,1","cross_st":" CHICON ST","cross_st_block":"700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7221146,30.2625771]},"location_latitude":"30.2625771","location_longitude":"-97.7221146","location_name":" 7TH ST / CHICON ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"1700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV147.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"3447","atd_location_id":"LOC16-000950","camera_id":"15","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5150642","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" STASSNEY LN","cross_st_block":"1820","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7977066,30.2154312]},"location_latitude":"30.2154312","location_longitude":"-97.7977066","location_name":" MANCHACA RD / STASSNEY LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"5320","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV15.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001875","camera_id":"153","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157291","comm_status_datetime_utc":"2018-03-29T03:30:00.000","council_district":"9","cross_st":"IH 35 SVRD","cross_st_block":"2200","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7416534,30.2338505]},"location_latitude":"30.2338505","location_longitude":"-97.7416534","location_name":" OLTORF ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" OLTORF ST","primary_st_block":"1400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV153.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"378","atd_location_id":"LOC16-001885","camera_id":"154","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158305","comm_status_datetime_utc":"2018-08-25T03:30:00.000","council_district":"9","cross_st":"IH 35 SVRD","cross_st_block":"1101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7348862,30.2478428]},"location_latitude":"30.2478428","location_longitude":"-97.7348862","location_name":" RIVERSIDE DR / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RIVERSIDE DR","primary_st_block":"1300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV154.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"102","atd_location_id":"LOC16-001920","camera_id":"155","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159771","comm_status_datetime_utc":"2018-11-16T03:35:00.000","council_district":"3","cross_st":" RIVERSIDE DR","cross_st_block":"2512","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7228088,30.2341137]},"location_latitude":"30.2341137","location_longitude":"-97.7228088","location_name":" PLEASANT VALLEY RD / RIVERSIDE DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PLEASANT VALLEY RD","primary_st_block":"1950","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV155.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1912","atd_location_id":"LOC16-001970","camera_id":"156","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153096","comm_status_datetime_utc":"2018-11-16T03:35:00.000","council_district":"3","cross_st":" ST ELMO RD","cross_st_block":"601","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7728806,30.2210426]},"location_latitude":"30.2210426","location_longitude":"-97.7728806","location_name":" 1ST ST / ST ELMO RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 1ST ST","primary_st_block":"4400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV156.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-001980","camera_id":"157","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151543","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" 1ST ST","cross_st_block":"6519","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7878189,30.1970978]},"location_latitude":"30.1970978","location_longitude":"-97.7878189","location_name":" WILLIAM CANNON DR / 1ST ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV157.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"4",":@computed_region_qwte_z96m":"92","atd_location_id":"LOC16-002010","camera_id":"158","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5152698","comm_status_datetime_utc":"2018-03-28T08:30:00.000","council_district":"2","cross_st":" EBERHART LN","cross_st_block":"101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7771225,30.1970272]},"location_latitude":"30.1970272","location_longitude":"-97.7771225","location_name":" CONGRESS AVE / EBERHART LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"6400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV158.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002025","camera_id":"159","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153510","comm_status_datetime_utc":"2018-09-11T03:30:00.000","council_district":"2","cross_st":"IH 35 SVRD","cross_st_block":"6425","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7701111,30.1902447]},"location_latitude":"30.1902447","location_longitude":"-97.7701111","location_name":" WILLIAM CANNON DR / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV159.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-000505","camera_id":"88","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157553","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"10,9","cross_st":" 45TH ST","cross_st_block":"1001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7375946,30.3134632]},"location_latitude":"30.3134632","location_longitude":"-97.7375946","location_name":" LAMAR BLVD / 45TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"4400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV88.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000600","camera_id":"100","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154798","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" BARTON SPRINGS RD","cross_st_block":"1301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.758522,30.2608624]},"location_latitude":"30.2608624","location_longitude":"-97.758522","location_name":" LAMAR BLVD / BARTON SPRINGS RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"419","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV100.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-06-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001265","camera_id":"128","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165721","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1","cross_st":" BRAKER LN","cross_st_block":"1400","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Shropshire","location":{"type":"Point","coordinates":[-97.6586609,30.3772907]},"location_latitude":"30.3772907","location_longitude":"-97.6586609","location_name":" DESSAU RD / BRAKER LN (Shropshire)","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" DESSAU RD","primary_st_block":"11800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV128.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000645","camera_id":"101","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153923","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"5","cross_st":" AZIE MORTON RD","cross_st_block":"401","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7649841,30.2647686]},"location_latitude":"30.2647686","location_longitude":"-97.7649841","location_name":" BARTON SPRINGS RD / AZIE MORTON RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"1901","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV101.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-09-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000770","camera_id":"109","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156770","comm_status_datetime_utc":"2018-06-07T03:30:00.000","council_district":"9","cross_st":" 2ND ST","cross_st_block":"101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.744194,30.2643204]},"location_latitude":"30.2643204","location_longitude":"-97.744194","location_name":" CONGRESS AVE / 2ND ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV109.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000910","camera_id":"114","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151029","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" LAMAR BLVD SVRD","cross_st_block":"4101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"BRODIE OAKS SHOPPING CENTER","location":{"type":"Point","coordinates":[-97.7925873,30.2362595]},"location_latitude":"30.2362595","location_longitude":"-97.7925873","location_name":" LAMAR BLVD / LAMAR BLVD SVRD (BRODIE OAKS SHOPPING CENTER)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"3802","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV114.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001105","camera_id":"122","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158186","comm_status_datetime_utc":"2018-09-08T03:30:00.000","council_district":"1","cross_st":" RED RIVER ST","cross_st_block":"1500","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.734848,30.2756176]},"location_latitude":"30.2756176","location_longitude":"-97.734848","location_name":" 15TH ST / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 15TH ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV122.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001235","camera_id":"127","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157222","comm_status_datetime_utc":"2018-06-07T03:30:00.000","council_district":"1","cross_st":" 11TH ST","cross_st_block":"101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7411041,30.2727489]},"location_latitude":"30.2727489","location_longitude":"-97.7411041","location_name":" CONGRESS AVE / 11TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV127.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002030","camera_id":"160","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153808","comm_status_datetime_utc":"2018-12-22T03:35:00.000","council_district":"2","cross_st":" BLUFF SPRINGS RD","cross_st_block":"6601","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7678909,30.1891956]},"location_latitude":"30.1891956","location_longitude":"-97.7678909","location_name":" WILLIAM CANNON DR / BLUFF SPRINGS RD","location_type":"ROADWAY","modified_date":"2018-12-22T03:45:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"1616","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV160.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-003885","camera_id":"16","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5148415","comm_status_datetime_utc":"2018-11-08T03:35:00.000","council_district":"8","cross_st":" MOPAC EXPY SVRD","cross_st_block":"5101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8241196,30.2346859]},"location_latitude":"30.2346859","location_longitude":"-97.8241196","location_name":"US 290 HWY SVRD / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"US 290 HWY SVRD","primary_st_block":"5029","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV16.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-002035","camera_id":"161","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154265","comm_status_datetime_utc":"2018-10-17T03:30:00.000","council_district":"3","cross_st":" BEN WHITE BLVD SVRD","cross_st_block":"100","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7635956,30.2234097]},"location_latitude":"30.2234097","location_longitude":"-97.7635956","location_name":" CONGRESS AVE / BEN WHITE BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"3900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV161.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-002055","camera_id":"163","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5147962","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8,5","cross_st":" WILLIAM CANNON DR","cross_st_block":"3501","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8303833,30.2137775]},"location_latitude":"30.2137775","location_longitude":"-97.8303833","location_name":" BRODIE LN / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BRODIE LN","primary_st_block":"6912","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV163.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-002080","camera_id":"165","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150283","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" WEST GATE BLVD","cross_st_block":"3901","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8011093,30.2421951]},"location_latitude":"30.2421951","location_longitude":"-97.8011093","location_name":" CAPITAL OF TEXAS HWY / WEST GATE BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"3800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV165.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002090","camera_id":"166","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154346","comm_status_datetime_utc":"2018-12-11T03:35:00.000","council_district":"2","cross_st":"IH 35 SVRD","cross_st_block":"5301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7636566,30.1981945]},"location_latitude":"30.1981945","location_longitude":"-97.7636566","location_name":" STASSNEY LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-12-11T03:45:00.000","primary_st":" STASSNEY LN","primary_st_block":"1501","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV166.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-05-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002155","camera_id":"169","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154483","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" NORTHLAND DR","cross_st_block":"3453","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7589417,30.3384666]},"location_latitude":"30.3384666","location_longitude":"-97.7589417","location_name":"FM 2222 RD / NORTHLAND DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":"FM 2222 RD","primary_st_block":"3500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV169.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-002110","camera_id":"167","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153187","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"10","cross_st":" ATLANTA ST","cross_st_block":"410","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7704849,30.2772179]},"location_latitude":"30.2772179","location_longitude":"-97.7704849","location_name":" LAKE AUSTIN BLVD / ATLANTA ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAKE AUSTIN BLVD","primary_st_block":"2201","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV167.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-002120","camera_id":"168","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5146294","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5,8","cross_st":" SLAUGHTER LN","cross_st_block":"3500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8497925,30.1835499]},"location_latitude":"30.1835499","location_longitude":"-97.8497925","location_name":" BRODIE LN / SLAUGHTER LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BRODIE LN","primary_st_block":"10000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV168.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-000485","camera_id":"17","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5156212","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" MOPAC EXPY SVRD","cross_st_block":"7740","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7452316,30.3612633]},"location_latitude":"30.3612633","location_longitude":"-97.7452316","location_name":" SPICEWOOD SPRINGS RD / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" SPICEWOOD SPRINGS RD","primary_st_block":"3501","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV17.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002165","camera_id":"170","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154860","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" NORTHLAND DR","cross_st_block":"3300","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"West","location":{"type":"Point","coordinates":[-97.7559586,30.3367844]},"location_latitude":"30.3367844","location_longitude":"-97.7559586","location_name":" MOPAC EXPY SVRD / NORTHLAND DR (West)","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" MOPAC EXPY SVRD","primary_st_block":"5700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV170.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-23T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"2761","atd_location_id":"LOC16-002290","camera_id":"177","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164497","comm_status_datetime_utc":"2019-01-02T03:35:00.000","council_district":"1","cross_st":"IH 35 SVRD","cross_st_block":"11300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6755829,30.3769493]},"location_latitude":"30.3769493","location_longitude":"-97.6755829","location_name":" BRAKER LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2019-01-02T03:45:00.000","primary_st":" BRAKER LN","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV177.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"2761","atd_location_id":"LOC16-002290","camera_id":"176","camera_status":"VOID","coa_intersection_id":"5164497","comm_status_datetime_utc":"2018-08-14T03:30:00.000","council_district":"1","cross_st":"IH 35 SVRD","cross_st_block":"11300","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6755829,30.3769493]},"location_latitude":"30.3769493","location_longitude":"-97.6755829","location_name":" BRAKER LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-12-17T15:31:00.000","primary_st":" BRAKER LN","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV176.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002195","camera_id":"171","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155589","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" MOPAC EXPY SVRD","cross_st_block":"6900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7496185,30.3519115]},"location_latitude":"30.3519115","location_longitude":"-97.7496185","location_name":" FAR WEST BLVD / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" FAR WEST BLVD","primary_st_block":"3300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV171.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002230","camera_id":"172","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5162712","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" PARMER LN","cross_st_block":"1601","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6905823,30.4132328]},"location_latitude":"30.4132328","location_longitude":"-97.6905823","location_name":" METRIC BLVD / PARMER LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" METRIC BLVD","primary_st_block":"12420","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV172.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-002235","camera_id":"173","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160898","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" METRIC BLVD","cross_st_block":"11301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7082825,30.3923416]},"location_latitude":"30.3923416","location_longitude":"-97.7082825","location_name":" BRAKER LN / METRIC BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" BRAKER LN","primary_st_block":"1910","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV173.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002265","camera_id":"174","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159410","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" BURNET RD","cross_st_block":"10700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7218094,30.3911648]},"location_latitude":"30.3911648","location_longitude":"-97.7218094","location_name":" BRAKER LN / BURNET RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" BRAKER LN","primary_st_block":"2512","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV174.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-002330","camera_id":"179","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5162155","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" RUNDBERG LN","cross_st_block":"411","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6970215,30.3631401]},"location_latitude":"30.3631401","location_longitude":"-97.6970215","location_name":" LAMAR BLVD / RUNDBERG LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" LAMAR BLVD","primary_st_block":"9200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV179.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002420","camera_id":"180","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159989","comm_status_datetime_utc":"2018-09-06T11:16:00.000","council_district":"7","cross_st":" MOPAC EXPY SVRD","cross_st_block":"12000","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.716095,30.4090595]},"location_latitude":"30.4090595","location_longitude":"-97.716095","location_name":" DUVAL RD / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DUVAL RD","primary_st_block":"3000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV180.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-003870","camera_id":"18","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5144924","comm_status_datetime_utc":"2018-12-19T03:35:00.000","council_district":"8","cross_st":" SLAUGHTER LN","cross_st_block":"5200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8654556,30.2005672]},"location_latitude":"30.2005672","location_longitude":"-97.8654556","location_name":" MOPAC EXPY / SLAUGHTER LN","location_type":"ROADWAY","modified_date":"2018-12-19T03:45:00.000","primary_st":" MOPAC EXPY","primary_st_block":"8100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV18.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002435","camera_id":"181","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5163798","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" BURLESON RD","cross_st_block":"8300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6876297,30.1828804]},"location_latitude":"30.1828804","location_longitude":"-97.6876297","location_name":"US 183 HWY / BURLESON RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"US 183 HWY","primary_st_block":"4500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV181.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-002440","camera_id":"182","camera_mfg":"Sarix","camera_status":"REMOVED","coa_intersection_id":"5163534","comm_status_datetime_utc":"2018-07-03T03:30:00.000","council_district":"3","cross_st":" VARGAS RD","cross_st_block":"301","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6882172,30.2398014]},"location_latitude":"30.2398014","location_longitude":"-97.6882172","location_name":" BASTROP HWY / VARGAS RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BASTROP HWY","primary_st_block":"247","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV182.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-002300","camera_id":"19","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5163282","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" LAMAR BLVD","cross_st_block":"11300","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6863708,30.3819351]},"location_latitude":"30.3819351","location_longitude":"-97.6863708","location_name":" BRAKER LN / LAMAR BLVD","location_type":"BUILDING","modified_date":"2019-01-01T03:45:00.000","primary_st":" BRAKER LN","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV19.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002530","camera_id":"190","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161296","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" MOPAC EXPY SVRD","cross_st_block":"12511","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7035828,30.4199772]},"location_latitude":"30.4199772","location_longitude":"-97.7035828","location_name":" PARMER LN / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" PARMER LN","primary_st_block":"3048","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV190.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3243",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002540","camera_id":"191","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164152","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" PARMER LN","cross_st_block":"1001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6782227,30.4078522]},"location_latitude":"30.4078522","location_longitude":"-97.6782227","location_name":" LAMAR BLVD / PARMER LN","location_type":"BUILDING","modified_date":"2019-01-01T03:45:00.000","primary_st":" LAMAR BLVD","primary_st_block":"12400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV191.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002445","camera_id":"183","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161340","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" SMITH SCHOOL RD","cross_st_block":"4001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.709137,30.2012062]},"location_latitude":"30.2012062","location_longitude":"-97.709137","location_name":" BURLESON RD / SMITH SCHOOL RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURLESON RD","primary_st_block":"6714","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV183.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-002450","camera_id":"184","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5163780","comm_status_datetime_utc":"2018-11-16T03:35:00.000","council_district":"3","cross_st":" THOMPSON LN","cross_st_block":"401","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6862717,30.2365303]},"location_latitude":"30.2365303","location_longitude":"-97.6862717","location_name":" BASTROP HWY / THOMPSON LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BASTROP HWY","primary_st_block":"500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV184.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-002455","camera_id":"185","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5367215","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"3","cross_st":" RIVERSIDE DR","cross_st_block":"7700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.69118,30.21883]},"location_latitude":"30.21883","location_longitude":"-97.69118","location_name":" BEN WHITE BLVD / RIVERSIDE DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BEN WHITE BLVD","primary_st_block":"7700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV185.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002465","camera_id":"186","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157007","comm_status_datetime_utc":"2018-01-23T09:30:00.000","council_district":"3,2","cross_st":" WOODWARD ST","cross_st_block":"2070","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.744072,30.2157249]},"location_latitude":"30.2157249","location_longitude":"-97.744072","location_name":" BEN WHITE BLVD SVRD / WOODWARD ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BEN WHITE BLVD SVRD","primary_st_block":"2019","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV186.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002475","camera_id":"187","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155881","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"3,2","cross_st":" BEN WHITE BLVD SVRD","cross_st_block":"1300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7512589,30.215517]},"location_latitude":"30.215517","location_longitude":"-97.7512589","location_name":"IH 35 SVRD / BEN WHITE BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"IH 35 SVRD","primary_st_block":"4015","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV187.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"2316","atd_location_id":"LOC16-002480","camera_id":"188","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156416","comm_status_datetime_utc":"2018-03-29T03:30:00.000","council_district":"3","cross_st":" WOODWARD ST","cross_st_block":"578","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7476883,30.2234898]},"location_latitude":"30.2234898","location_longitude":"-97.7476883","location_name":"IH 35 SVRD / WOODWARD ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"IH 35 SVRD","primary_st_block":"3500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV188.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002495","camera_id":"189","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160970","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"3,2","cross_st":" BEN WHITE BLVD SVRD","cross_st_block":"5700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7125397,30.2119789]},"location_latitude":"30.2119789","location_longitude":"-97.7125397","location_name":" MONTOPOLIS DR / BEN WHITE BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MONTOPOLIS DR","primary_st_block":"3100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV189.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002590","camera_id":"193","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164691","comm_status_datetime_utc":"2018-08-13T03:30:00.000","council_district":"1,7","cross_st":"IH 35 SVRD","cross_st_block":"12200","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"YAGER LN","location":{"type":"Point","coordinates":[-97.6730423,30.3991604]},"location_latitude":"30.3991604","location_longitude":"-97.6730423","location_name":" TECH RIDGE BLVD / 35 SVRD (YAGER LN)","location_type":"ROADWAY","modified_date":"2018-12-19T15:24:00.000","primary_st":" TECH RIDGE BLVD","primary_st_block":"12100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV193.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-09-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002570","camera_id":"192","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5158092","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" MOPAC EXPY SVRD","cross_st_block":"10700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7321243,30.3954906]},"location_latitude":"30.3954906","location_longitude":"-97.7321243","location_name":" BRAKER LN / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" BRAKER LN","primary_st_block":"3700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV192.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002635","camera_id":"195","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164455","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":"IH 35 SVRD","cross_st_block":"12600","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6752319,30.4080296]},"location_latitude":"30.4080296","location_longitude":"-97.6752319","location_name":" PARMER LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" PARMER LN","primary_st_block":"900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV195.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"8481",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002645","camera_id":"196","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5166825","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,7","cross_st":" DESSAU RD","cross_st_block":"13500","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6384277,30.4036503]},"location_latitude":"30.4036503","location_longitude":"-97.6384277","location_name":" HOWARD LN / DESSAU RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" HOWARD LN","primary_st_block":"1500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV196.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002270","camera_id":"20","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5159845","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" PALM WAY","cross_st_block":"2901","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"IBM DRIVEWAY","location":{"type":"Point","coordinates":[-97.7176056,30.4022865]},"location_latitude":"30.4022865","location_longitude":"-97.7176056","location_name":" BURNET RD / PALM WAY (IBM DRIVEWAY)","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" BURNET RD","primary_st_block":"11700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV20.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002615","camera_id":"194","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160558","comm_status_datetime_utc":"2018-06-27T03:30:00.000","council_district":"2","cross_st":" MONTOPOLIS DR","cross_st_block":"3605","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7165909,30.2055626]},"location_latitude":"30.2055626","location_longitude":"-97.7165909","location_name":" BURLESON RD / MONTOPOLIS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURLESON RD","primary_st_block":"6300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV194.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-09-01T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-002660","camera_id":"198","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153502","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"3","cross_st":" BEN WHITE BLVD SVRD","cross_st_block":"600","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7692413,30.226881]},"location_latitude":"30.226881","location_longitude":"-97.7692413","location_name":" 1ST ST / BEN WHITE BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 1ST ST","primary_st_block":"3817","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV198.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2864",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-000805","camera_id":"2","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5162329","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"3,1","cross_st":" OAK SPRINGS DR","cross_st_block":"3300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6979065,30.2735558]},"location_latitude":"30.2735558","location_longitude":"-97.6979065","location_name":" AIRPORT BLVD / OAK SPRINGS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"1137","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV2.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2016-11-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1760","atd_location_id":"LOC16-002695","camera_id":"200","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161846","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"3","cross_st":" MONTOPOLIS DR","cross_st_block":"1901","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7034378,30.2249317]},"location_latitude":"30.2249317","location_longitude":"-97.7034378","location_name":" RIVERSIDE DR / MONTOPOLIS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RIVERSIDE DR","primary_st_block":"6200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV200.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-002710","camera_id":"201","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161173","comm_status_datetime_utc":"2018-05-19T03:30:00.000","council_district":"3","cross_st":" MONTOPOLIS DR","cross_st_block":"2900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7102966,30.2150421]},"location_latitude":"30.2150421","location_longitude":"-97.7102966","location_name":" OLTORF ST / MONTOPOLIS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" OLTORF ST","primary_st_block":"5500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV201.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002725","camera_id":"202","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5162528","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" MC KINNEY FALLS PKWY","cross_st_block":"4121","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6983871,30.1919994]},"location_latitude":"30.1919994","location_longitude":"-97.6983871","location_name":" BURLESON RD / MC KINNEY FALLS PKWY","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURLESON RD","primary_st_block":"7508","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV202.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2865",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1169","atd_location_id":"LOC16-002740","camera_id":"203","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161099","comm_status_datetime_utc":"2018-10-27T03:30:00.000","council_district":"9","cross_st":" WILSHIRE BLVD","cross_st_block":"1610","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7088776,30.2978573]},"location_latitude":"30.2978573","location_longitude":"-97.7088776","location_name":" AIRPORT BLVD / WILSHIRE BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"4301","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV203.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3439","atd_location_id":"LOC16-002925","camera_id":"206","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5163096","comm_status_datetime_utc":"2018-10-31T03:35:00.000","council_district":"4","cross_st":"IH 35 SVRD","cross_st_block":"9400","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6885452,30.358427]},"location_latitude":"30.358427","location_longitude":"-97.6885452","location_name":" RUNDBERG LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2019-01-02T16:41:00.000","primary_st":" RUNDBERG LN","primary_st_block":"712","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV206.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"2863",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002940","camera_id":"207","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165374","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"2","cross_st":" EMMA BROWNING AVE","cross_st_block":"5201","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6705399,30.1731625]},"location_latitude":"30.1731625","location_longitude":"-97.6705399","location_name":" BURLESON RD / EMMA BROWNING AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURLESON RD","primary_st_block":"9609","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV207.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003100","camera_id":"212","camera_mfg":"Sarix","camera_status":"REMOVED","coa_intersection_id":"5165704","comm_status_datetime_utc":"2018-07-03T03:30:00.000","council_district":"1","cross_st":" LOYOLA LN","cross_st_block":"5501","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6609726,30.3026314]},"location_latitude":"30.3026314","location_longitude":"-97.6609726","location_name":" ED BLUESTEIN BLVD / LOYOLA LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ED BLUESTEIN BLVD","primary_st_block":"6500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV212.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003120","camera_id":"216","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165563","comm_status_datetime_utc":"2018-09-23T03:30:00.000","council_district":"1","cross_st":" ED BLUESTEIN BLVD SVRD","cross_st_block":"4893","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Martin Luther King Jr Blvd / US 183","location":{"type":"Point","coordinates":[-97.6640472,30.2854214]},"location_latitude":"30.2854214","location_longitude":"-97.6640472","location_name":"FM 969 RD / ED BLUESTEIN BLVD SVRD (Martin Luther King Jr Blvd / US 183)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"FM 969 RD","primary_st_block":"6000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV216.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2864",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003130","camera_id":"217","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164054","comm_status_datetime_utc":"2018-10-25T03:30:00.000","council_district":"1","cross_st":" SPRINGDALE RD","cross_st_block":"1800","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6826248,30.285862]},"location_latitude":"30.285862","location_longitude":"-97.6826248","location_name":" MARTIN LUTHER KING JR BLVD / SPRINGDALE RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"4600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV217.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-003235","camera_id":"221","camera_mfg":"Sarix","camera_status":"REMOVED","coa_intersection_id":"5160817","comm_status_datetime_utc":"2018-02-02T09:30:00.000","council_district":"9","cross_st":"IH 35 SVRD","cross_st_block":"5100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7113037,30.3101578]},"location_latitude":"30.3101578","location_longitude":"-97.7113037","location_name":" 51ST ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 51ST ST","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV221.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"202","atd_location_id":"LOC16-002920","camera_id":"205","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161497","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":"IH 35 SVRD","cross_st_block":"7200","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7037048,30.3325787]},"location_latitude":"30.3325787","location_longitude":"-97.7037048","location_name":" ST JOHNS AVE / 35 SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" ST JOHNS AVE","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV205.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"3819","atd_location_id":"LOC16-003370","camera_id":"229","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150689","comm_status_datetime_utc":"2018-11-08T03:35:00.000","council_district":"5","cross_st":" LAMAR BLVD SVRD","cross_st_block":"4401","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7966614,30.2336826]},"location_latitude":"30.2336826","location_longitude":"-97.7966614","location_name":" BEN WHITE BLVD SVRD / LAMAR BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BEN WHITE BLVD SVRD","primary_st_block":"2439","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV229.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003005","camera_id":"208","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150697","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":"US 183 HWY SVRD","cross_st_block":"13456","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.790947,30.4486465]},"location_latitude":"30.4486465","location_longitude":"-97.790947","location_name":" ANDERSON MILL RD / 183 HWY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" ANDERSON MILL RD","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV208.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003115","camera_id":"215","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154014","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" OAK KNOLL DR","cross_st_block":"11914","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7600708,30.427557]},"location_latitude":"30.427557","location_longitude":"-97.7600708","location_name":" JOLLYVILLE RD / OAK KNOLL DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" JOLLYVILLE RD","primary_st_block":"12018","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV215.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-003040","camera_id":"209","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157734","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" 4TH ST","cross_st_block":"500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7378387,30.2646255]},"location_latitude":"30.2646255","location_longitude":"-97.7378387","location_name":" RED RIVER ST / 4TH ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" RED RIVER ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV209.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-002680","camera_id":"23","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5151437","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" BEN WHITE BLVD SVRD","cross_st_block":"2001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7880554,30.23036]},"location_latitude":"30.23036","location_longitude":"-97.7880554","location_name":" MANCHACA RD / BEN WHITE BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"4300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV23.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003460","camera_id":"233","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5167104","comm_status_datetime_utc":"2018-06-05T03:30:00.000","council_district":"1","cross_st":" DECKER LN","cross_st_block":"5200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6372757,30.2767944]},"location_latitude":"30.2767944","location_longitude":"-97.6372757","location_name":"FM 969 RD / DECKER LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"FM 969 RD","primary_st_block":"8600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV233.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3251",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-003480","camera_id":"234","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5144899","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" WILLIAM CANNON DR","cross_st_block":"6400","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.86483,30.2340565]},"location_latitude":"30.2340565","location_longitude":"-97.86483","location_name":"US 290 HWY / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"US 290 HWY","primary_st_block":"6322","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV234.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-003495","camera_id":"236","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5144363","comm_status_datetime_utc":"2018-09-21T03:30:00.000","council_district":"8","cross_st":"US 290 HWY","cross_st_block":"6851","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8747025,30.2333431]},"location_latitude":"30.2333431","location_longitude":"-97.8747025","location_name":"SH 71 / 290 HWY","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"SH 71 ","primary_st_block":"6901","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV236.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-003530","camera_id":"237","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161328","comm_status_datetime_utc":"2018-08-29T03:30:00.000","council_district":"4","cross_st":" NORTHCREST BLVD","cross_st_block":"7816","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7053833,30.3437004]},"location_latitude":"30.3437004","location_longitude":"-97.7053833","location_name":" ANDERSON LN SVRD / NORTHCREST BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ANDERSON LN SVRD","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV237.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003690","camera_id":"238","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151762","comm_status_datetime_utc":"2018-03-23T08:30:00.000","council_district":"10","cross_st":" REDBUD TRL","cross_st_block":"3101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7830658,30.2915916]},"location_latitude":"30.2915916","location_longitude":"-97.7830658","location_name":" LAKE AUSTIN BLVD / REDBUD TRL","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAKE AUSTIN BLVD","primary_st_block":"3600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV238.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-003715","camera_id":"239","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154071","comm_status_datetime_utc":"2018-06-28T03:30:00.000","council_district":"10","cross_st":" EXPOSITION BLVD","cross_st_block":"3400","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7627029,30.3104992]},"location_latitude":"30.3104992","location_longitude":"-97.7627029","location_name":" 35TH ST / EXPOSITION BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 35TH ST","primary_st_block":"2700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV239.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003735","camera_id":"240","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165107","comm_status_datetime_utc":"2018-06-05T03:30:00.000","council_district":"1","cross_st":" NORTHEAST DR","cross_st_block":"3300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6707687,30.3085327]},"location_latitude":"30.3085327","location_longitude":"-97.6707687","location_name":" MANOR RD / NORTHEAST DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANOR RD","primary_st_block":"6500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV240.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-003775","camera_id":"243","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151710","comm_status_datetime_utc":"2018-03-30T03:30:00.000","council_district":"5,2","cross_st":"IH 35 SVRD","cross_st_block":"8652","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7869263,30.1670704]},"location_latitude":"30.1670704","location_longitude":"-97.7869263","location_name":" SLAUGHTER LN / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV243.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2861",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003805","camera_id":"244","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159120","comm_status_datetime_utc":"2018-09-08T03:30:00.000","council_district":"1,9","cross_st":"IH 35 SVRD","cross_st_block":"2100","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.727478,30.2830906]},"location_latitude":"30.2830906","location_longitude":"-97.727478","location_name":" MANOR RD / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANOR RD","primary_st_block":"914","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV244.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-003810","camera_id":"245","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154288","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" LAMAR SQUARE DR","cross_st_block":"1301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7625885,30.2542477]},"location_latitude":"30.2542477","location_longitude":"-97.7625885","location_name":" LAMAR BLVD / LAMAR SQUARE DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV245.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-09-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-003830","camera_id":"248","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151549","comm_status_datetime_utc":"2018-03-30T03:30:00.000","council_district":"5,2","cross_st":" SLAUGHTER LN","cross_st_block":"126","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.788559,30.1671066]},"location_latitude":"30.1671066","location_longitude":"-97.788559","location_name":" CONGRESS AVE / SLAUGHTER LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"8516","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV248.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003850","camera_id":"249","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5167561","comm_status_datetime_utc":"2018-08-23T03:30:00.000","council_district":"1","cross_st":" LOYOLA LN","cross_st_block":"8301","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6279831,30.2912273]},"location_latitude":"30.2912273","location_longitude":"-97.6279831","location_name":" DECKER LN / LOYOLA LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DECKER LN","primary_st_block":"6700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV249.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000845","camera_id":"25","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5160367","comm_status_datetime_utc":"2018-02-23T09:30:00.000","council_district":"9","cross_st":" 51ST ST","cross_st_block":"806","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7153397,30.3120689]},"location_latitude":"30.3120689","location_longitude":"-97.7153397","location_name":" AIRPORT BLVD / 51ST ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"5100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV25.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003860","camera_id":"250","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5166219","comm_status_datetime_utc":"2018-10-25T03:30:00.000","council_district":"1","cross_st":" JOHNNY MORRIS RD","cross_st_block":"5100","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.653183,30.2827682]},"location_latitude":"30.2827682","location_longitude":"-97.653183","location_name":"FM 969 RD / JOHNNY MORRIS RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"FM 969 RD","primary_st_block":"7000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV250.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"2862",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003400","camera_id":"230","camera_mfg":"Axis","camera_status":"TURNED_ON","coa_intersection_id":"5149897","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":"US 183 HWY SVRD","cross_st_block":"13900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7991867,30.4728546]},"location_latitude":"30.4728546","location_longitude":"-97.7991867","location_name":" LAKELINE MALL DR / 183 HWY SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" LAKELINE MALL DR","primary_st_block":"11000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV230.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-004025","camera_id":"255","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151258","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" BARTON SKWY","cross_st_block":"2999","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7892303,30.2622852]},"location_latitude":"30.2622852","location_longitude":"-97.7892303","location_name":" MOPAC EXPY SVRD / BARTON SKWY","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MOPAC EXPY SVRD","primary_st_block":"1300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV255.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"202","atd_location_id":"LOC16-007010","camera_id":"26","camera_mfg":"Axis","camera_status":"REMOVED","comm_status_datetime_utc":"2018-08-15T03:30:00.000","council_district":"4","cross_st":" ST JOHNS AVE","cross_st_block":"800","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"HOME DEPOT - DEPOT - WEST","location":{"type":"Point","coordinates":[-97.7025,30.333519]},"location_latitude":"30.333519","location_longitude":"-97.7025","location_name":"IH 35 SVRD / ST JOHNS AVE (HOME DEPOT - DEPOT - WEST)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"IH 35 SVRD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV26.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-10-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"2863",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-004235","camera_id":"269","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5164191","comm_status_datetime_utc":"2018-12-14T03:35:00.000","council_district":"2","cross_st":" METROPOLIS DR","cross_st_block":"7700","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6832809,30.2099247]},"location_latitude":"30.2099247","location_longitude":"-97.6832809","location_name":"US 183 HWY / METROPOLIS DR","location_type":"ROADWAY","modified_date":"2018-12-14T03:45:00.000","primary_st":"US 183 HWY","primary_st_block":"2800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV269.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"202","atd_location_id":"LOC16-007005","camera_id":"27","camera_mfg":"Axis","camera_status":"REMOVED","comm_status_datetime_utc":"2018-08-15T03:30:00.000","council_district":"4","cross_st":" ST JOHNS AVE","cross_st_block":"800","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"HOME DEPOT - DEPOT - INTERIOR","location":{"type":"Point","coordinates":[-97.701905,30.333229]},"location_latitude":"30.333229","location_longitude":"-97.701905","location_name":"IH 35 SVRD / ST JOHNS AVE (HOME DEPOT - DEPOT - INTERIOR)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"IH 35 SVRD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV27.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-10-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-004255","camera_id":"270","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5168145","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" THOME VALLEY DR","cross_st_block":"12700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6202011,30.1740685]},"location_latitude":"30.1740685","location_longitude":"-97.6202011","location_name":" ROSS RD / THOME VALLEY DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ROSS RD","primary_st_block":"5310","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV270.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"8481",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003915","camera_id":"253","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165050","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":"IH 35 SVRD","cross_st_block":"15000","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6677628,30.440731]},"location_latitude":"30.440731","location_longitude":"-97.6677628","location_name":" WELLS BRANCH PKWY / 35 SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" WELLS BRANCH PKWY","primary_st_block":"1511","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV253.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-004075","camera_id":"259","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5166307","comm_status_datetime_utc":"2018-10-10T00:34:00.000","council_district":"1,7","cross_st":" PARMER LN","cross_st_block":"1601","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6485367,30.3870049]},"location_latitude":"30.3870049","location_longitude":"-97.6485367","location_name":" DESSAU RD / PARMER LN","location_type":"ROADWAY","modified_date":"2018-12-14T12:31:00.000","primary_st":" DESSAU RD","primary_st_block":"12200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV259.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"2862",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004060","camera_id":"256","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153256","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" PARMER LN","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7646179,30.4759941]},"location_latitude":"30.4759941","location_longitude":"-97.7646179","location_name":"FM 620 RD / PARMER LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"FM 620 RD","primary_st_block":"13941","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV256.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-02-01T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-004310","camera_id":"274","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149237","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" WALSH TARLTON LN","cross_st_block":"2715","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8122482,30.2579861]},"location_latitude":"30.2579861","location_longitude":"-97.8122482","location_name":" CAPITAL OF TEXAS HWY / WALSH TARLTON LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"2430","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV274.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-004315","camera_id":"275","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149533","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" ","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Barton Creek Mall","location":{"type":"Point","coordinates":[-97.8089066,30.2537231]},"location_latitude":"30.2537231","location_longitude":"-97.8089066","location_name":"2731 BLK S CAPITAL OF TEXAS HWY NB (Barton Creek Mall)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"2731","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV275.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-004320","camera_id":"276","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5167205","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":"FM 973 RD","cross_st_block":"3301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6377563,30.2023029]},"location_latitude":"30.2023029","location_longitude":"-97.6377563","location_name":"SH 71 / 973 RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"SH 71 ","primary_st_block":"3228","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV276.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-09-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-004345","camera_id":"277","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149983","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" MOPAC EXPY SVRD","cross_st_block":"3445","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8040085,30.2477283]},"location_latitude":"30.2477283","location_longitude":"-97.8040085","location_name":" CAPITAL OF TEXAS HWY / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"3511","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV277.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-004350","camera_id":"278","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149746","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" MOPAC EXPY SVRD","cross_st_block":"3106","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8066635,30.2510681]},"location_latitude":"30.2510681","location_longitude":"-97.8066635","location_name":" CAPITAL OF TEXAS HWY / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"3311","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV278.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"202","atd_location_id":"LOC16-007000","camera_id":"28","camera_mfg":"Axis","camera_status":"REMOVED","comm_status_datetime_utc":"2018-08-14T13:47:00.000","council_district":"4","cross_st":" ST JOHNS AVE","cross_st_block":"800","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"HOME DEPOT - DEPOT - EAST","location":{"type":"Point","coordinates":[-97.701398,30.333052]},"location_latitude":"30.333052","location_longitude":"-97.701398","location_name":"IH 35 SVRD / ST JOHNS AVE (HOME DEPOT - DEPOT - EAST)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"IH 35 SVRD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV28.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-10-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-004525","camera_id":"282","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150904","comm_status_datetime_utc":"2018-07-18T03:30:00.000","council_district":"5,2","cross_st":" FRANCIA TRL","cross_st_block":"9101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7958298,30.1692791]},"location_latitude":"30.1692791","location_longitude":"-97.7958298","location_name":" SLAUGHTER LN / FRANCIA TRL","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV282.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2865",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1169","atd_location_id":"LOC16-004555","camera_id":"283","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159732","comm_status_datetime_utc":"2018-03-31T03:30:00.000","council_district":"9","cross_st":" LAFAYETTE AVE","cross_st_block":"2316","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7218094,30.2844238]},"location_latitude":"30.2844238","location_longitude":"-97.7218094","location_name":" DEAN KEETON ST / LAFAYETTE AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"1300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV283.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3128","atd_location_id":"LOC16-004865","camera_id":"289","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5147403","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" MOPAC EXPY SVRD","cross_st_block":"6627","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8362503,30.2196655]},"location_latitude":"30.2196655","location_longitude":"-97.8362503","location_name":" WILLIAM CANNON DR / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"3809","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV289.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2865",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1169","atd_location_id":"LOC16-004800","camera_id":"287","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159577","comm_status_datetime_utc":"2018-12-28T03:35:00.000","council_district":"9","cross_st":" 32ND ST","cross_st_block":"1034","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.723053,30.2890625]},"location_latitude":"30.2890625","location_longitude":"-97.723053","location_name":"IH 35 SVRD / 32ND ST","location_type":"ROADWAY","modified_date":"2018-12-28T03:45:00.000","primary_st":"IH 35 SVRD","primary_st_block":"3109","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV287.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3242",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004380","camera_id":"280","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5147160","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" BOULDER LN","cross_st_block":"11700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"North","location":{"type":"Point","coordinates":[-97.8331299,30.4434834]},"location_latitude":"30.4434834","location_longitude":"-97.8331299","location_name":"FM 620 RD / BOULDER LN (North)","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"FM 620 RD","primary_st_block":"10443","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV280.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000155","camera_id":"292","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156755","comm_status_datetime_utc":"2018-06-19T03:30:00.000","council_district":"9","cross_st":" NUECES ST","cross_st_block":"2300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.74366,30.2878265]},"location_latitude":"30.2878265","location_longitude":"-97.74366","location_name":" 24TH ST / NUECES ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 24TH ST","primary_st_block":"511","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV292.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-01-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000105","camera_id":"293","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156836","comm_status_datetime_utc":"2018-06-19T03:30:00.000","council_district":"9","cross_st":" NUECES ST","cross_st_block":"2400","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7431412,30.2878284]},"location_latitude":"30.2878284","location_longitude":"-97.7431412","location_name":" 24TH ST / NUECES ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 24TH ST","primary_st_block":"511","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV293.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-01-17T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"2862",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004400","camera_id":"281","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151987","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" AVERY RANCH BLVD","cross_st_block":"15001","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7756653,30.4980755]},"location_latitude":"30.4980755","location_longitude":"-97.7756653","location_name":" PARMER LN / AVERY RANCH BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" PARMER LN","primary_st_block":"10223","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV281.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-02-01T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-004935","camera_id":"291","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157052","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" 3RD ST","cross_st_block":"100","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7425079,30.2648773]},"location_latitude":"30.2648773","location_longitude":"-97.7425079","location_name":" BRAZOS ST / 3RD ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" BRAZOS ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV291.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_a3it_2a2z":"8002","atd_location_id":"LOC16-007030","camera_id":"29","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5168587","comm_status_datetime_utc":"2018-12-16T03:35:00.000","cross_st":" ROSS RD","cross_st_block":"4501","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.609533,30.186287]},"location_latitude":"30.186287","location_longitude":"-97.609533","location_name":"SH 71 / ROSS RD","location_type":"ROADWAY","modified_date":"2018-12-16T03:45:00.000","primary_st":"SH 71 ","primary_st_block":"4436","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV29.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002015","camera_id":"295","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5152526","comm_status_datetime_utc":"2018-03-28T08:30:00.000","council_district":"2","cross_st":" WILLIAM CANNON DR","cross_st_block":"100","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7788773,30.1930141]},"location_latitude":"30.1930141","location_longitude":"-97.7788773","location_name":" CONGRESS AVE / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"6400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV295.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-03-01T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"2862",":@computed_region_q9nd_rr82":"6",":@computed_region_qwte_z96m":"529","atd_location_id":"LOC16-004915","camera_id":"3","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5150747","comm_status_datetime_utc":"2018-10-09T23:03:00.000","council_district":"6","cross_st":" LAKELINE BLVD","cross_st_block":"10001","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7895737,30.4819565]},"location_latitude":"30.4819565","location_longitude":"-97.7895737","location_name":" STAKED PLAINS DR / LAKELINE BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" STAKED PLAINS DR","primary_st_block":"10001","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV3.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-12-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"579","atd_location_id":"LOC16-006995","camera_id":"30","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-03-09T09:30:00.000","council_district":"9","cross_st":" BOWIE ST","cross_st_block":"300","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"SPRING CONDOS - WEST","location":{"type":"Point","coordinates":[-97.754318,30.268963]},"location_latitude":"30.268963","location_longitude":"-97.754318","location_name":" 3RD ST / BOWIE ST (SPRING CONDOS - WEST)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 3RD ST","primary_st_block":"900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV30.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-03-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-002995","camera_id":"301","camera_status":"DESIRED","coa_intersection_id":"5162396","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"4","cross_st":" LONGSPUR BLVD","cross_st_block":"401","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6945877,30.3673611]},"location_latitude":"30.3673611","location_longitude":"-97.6945877","location_name":" LAMAR BLVD / LONGSPUR BLVD","location_type":"BUILDING","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"9800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV301.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1404","atd_location_id":"LOC16-002325","camera_id":"302","camera_status":"DESIRED","coa_intersection_id":"5161813","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"4","cross_st":" PAYTON GIN RD","cross_st_block":"801","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7001114,30.3576469]},"location_latitude":"30.3576469","location_longitude":"-97.7001114","location_name":" LAMAR BLVD / PAYTON GIN RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"8900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV302.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3439","atd_location_id":"LOC16-002320","camera_id":"303","camera_status":"DESIRED","coa_intersection_id":"5161271","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"4","cross_st":" THURMOND ST","cross_st_block":"801","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7056351,30.3533516]},"location_latitude":"30.3533516","location_longitude":"-97.7056351","location_name":" LAMAR BLVD / THURMOND ST","location_type":"BUILDING","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"8500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV303.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1352","atd_location_id":"LOC16-002310","camera_id":"307","camera_status":"DESIRED","coa_intersection_id":"5160315","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7,4","cross_st":" MORROW ST","cross_st_block":"701","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7149658,30.3439732]},"location_latitude":"30.3439732","location_longitude":"-97.7149658","location_name":" LAMAR BLVD / MORROW ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"7500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV307.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002620","camera_id":"299","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5164083","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" YAGER LN","cross_st_block":"501","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6791687,30.4017849]},"location_latitude":"30.4017849","location_longitude":"-97.6791687","location_name":" LAMAR BLVD / YAGER LN","location_type":"BUILDING","modified_date":"2019-01-01T03:46:00.000","primary_st":" LAMAR BLVD","primary_st_block":"12250","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV299.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-06-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"340","atd_location_id":"LOC16-006990","camera_id":"31","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" RIVERSIDE DR","cross_st_block":"301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"OTC - NORTHWEST","location":{"type":"Point","coordinates":[-97.748989,30.257478]},"location_latitude":"30.257478","location_longitude":"-97.748989","location_name":" BARTON SPRINGS RD / RIVERSIDE DR (OTC - NORTHWEST)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV31.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-004995","camera_id":"310","camera_status":"DESIRED","coa_intersection_id":"5158123","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"9","cross_st":" 47TH ST","cross_st_block":"800","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Triangle / State Offices","location":{"type":"Point","coordinates":[-97.7341919,30.31604]},"location_latitude":"30.31604","location_longitude":"-97.7341919","location_name":" LAMAR BLVD / 47TH ST (Triangle / State Offices)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"4601","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV310.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-005155","camera_id":"312","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156307","comm_status_datetime_utc":"2018-06-21T03:30:00.000","council_district":"10,9","cross_st":" 31ST ST","cross_st_block":"907","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7461166,30.3004322]},"location_latitude":"30.3004322","location_longitude":"-97.7461166","location_name":" LAMAR BLVD / 31ST ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"3006","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV312.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-000520","camera_id":"313","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156542","comm_status_datetime_utc":"2018-06-13T03:30:00.000","council_district":"10,9","cross_st":" 34TH ST","cross_st_block":"1001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7447128,30.3027]},"location_latitude":"30.3027","location_longitude":"-97.7447128","location_name":" LAMAR BLVD / 34TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"3400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV313.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000635","camera_id":"314","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155448","comm_status_datetime_utc":"2018-06-06T03:30:00.000","council_district":"9","cross_st":" 9TH ST","cross_st_block":"1001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7527771,30.2739487]},"location_latitude":"30.2739487","location_longitude":"-97.7527771","location_name":" LAMAR BLVD / 9TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV314.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-001130","camera_id":"315","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154951","comm_status_datetime_utc":"2018-06-08T03:30:00.000","council_district":"9","cross_st":" B R REYNOLDS DR","cross_st_block":"100","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7570953,30.266964]},"location_latitude":"30.266964","location_longitude":"-97.7570953","location_name":" CESAR CHAVEZ ST / B R REYNOLDS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV315.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000050","camera_id":"304","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5160009","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" ST JOHNS AVE","cross_st_block":"613","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7178421,30.339407]},"location_latitude":"30.339407","location_longitude":"-97.7178421","location_name":" LAMAR BLVD / ST JOHNS AVE","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" LAMAR BLVD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV304.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001450","camera_id":"296","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157893","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" RED RIVER ST","cross_st_block":"700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7368164,30.2674026]},"location_latitude":"30.2674026","location_longitude":"-97.7368164","location_name":" 7TH ST / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" 7TH ST","primary_st_block":"500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV296.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-05-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000625","camera_id":"316","camera_status":"DESIRED","coa_intersection_id":"5154433","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"5","cross_st":" TREADWELL ST","cross_st_block":"1301","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7614899,30.256052]},"location_latitude":"30.256052","location_longitude":"-97.7614899","location_name":" LAMAR BLVD / TREADWELL ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV316.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000605","camera_id":"317","camera_status":"DESIRED","coa_intersection_id":"5153644","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"5","cross_st":" HETHER ST","cross_st_block":"1401","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7674408,30.2494106]},"location_latitude":"30.2494106","location_longitude":"-97.7674408","location_name":" LAMAR BLVD / HETHER ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"2000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV317.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-005150","camera_id":"319","camera_status":"DESIRED","coa_intersection_id":"5151650","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"5","cross_st":" PRATHER LN","cross_st_block":"2001","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Ann Richard's School","location":{"type":"Point","coordinates":[-97.7857132,30.2339172]},"location_latitude":"30.2339172","location_longitude":"-97.7857132","location_name":" MANCHACA RD / PRATHER LN (Ann Richard's School)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"3712","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV319.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"340","atd_location_id":"LOC16-006985","camera_id":"32","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-09-28T03:30:00.000","council_district":"9","cross_st":" RIVERSIDE DR","cross_st_block":"301","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"OTC - NORTHEAST","location":{"type":"Point","coordinates":[-97.749041,30.257391]},"location_latitude":"30.257391","location_longitude":"-97.749041","location_name":" BARTON SPRINGS RD / RIVERSIDE DR (OTC - NORTHEAST)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV32.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006980","camera_id":"33","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-12-21T03:35:00.000","council_district":"9","cross_st":" 7TH ST","cross_st_block":"200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"OMNI - SOUTHWEST","location":{"type":"Point","coordinates":[-97.740692,30.268688]},"location_latitude":"30.268688","location_longitude":"-97.740692","location_name":" SAN JACINTO BLVD / 7TH ST (OMNI - SOUTHWEST)","location_type":"ROADWAY","modified_date":"2018-12-21T03:45:00.000","primary_st":" SAN JACINTO BLVD","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV33.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"2244","atd_location_id":"LOC16-000945","camera_id":"321","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5150932","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" JONES RD","cross_st_block":"2001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7940674,30.2207584]},"location_latitude":"30.2207584","location_longitude":"-97.7940674","location_name":" MANCHACA RD / JONES RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"5100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV321.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"3447","atd_location_id":"LOC16-005185","camera_id":"322","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5150162","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" ","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Garrison Park","location":{"type":"Point","coordinates":[-97.801889,30.212943]},"location_latitude":"30.212943","location_longitude":"-97.801889","location_name":"5900 BLK MANCHACA RD (Garrison Park)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"5900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV322.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000965","camera_id":"323","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5149803","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" MATTHEWS LN","cross_st_block":"2001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8073349,30.1999645]},"location_latitude":"30.1999645","location_longitude":"-97.8073349","location_name":" MANCHACA RD / MATTHEWS LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"7100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV323.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000970","camera_id":"324","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5149065","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" DAVIS LN","cross_st_block":"2001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8163071,30.1859264]},"location_latitude":"30.1859264","location_longitude":"-97.8163071","location_name":" MANCHACA RD / DAVIS LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"8416","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV324.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-31T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000920","camera_id":"318","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5152078","comm_status_datetime_utc":"2018-12-27T03:35:00.000","council_district":"5","cross_st":" BARTON SKWY","cross_st_block":"2101","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Lightsey Rd","location":{"type":"Point","coordinates":[-97.781662,30.2426128]},"location_latitude":"30.2426128","location_longitude":"-97.781662","location_name":" MANCHACA RD / BARTON SKWY (Lightsey Rd)","location_type":"ROADWAY","modified_date":"2018-12-27T03:45:00.000","primary_st":" MANCHACA RD","primary_st_block":"2800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV318.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-31T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"350","atd_location_id":"LOC16-005465","camera_id":"331","camera_status":"DESIRED","coa_intersection_id":"5162654","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"1,4","cross_st":" CAMINO LA COSTA ","cross_st_block":"1300","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6935791,30.323827]},"location_latitude":"30.323827","location_longitude":"-97.6935791","location_name":" CAMERON RD / CAMINO LA COSTA ","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CAMERON RD","primary_st_block":"6900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV331.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-002580","camera_id":"325","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5165334","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1","cross_st":" DESSAU RD","cross_st_block":"11300","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6657333,30.3724384]},"location_latitude":"30.3724384","location_longitude":"-97.6657333","location_name":" BRAKER LN / DESSAU RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" BRAKER LN","primary_st_block":"1301","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV325.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-12-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"2244","atd_location_id":"LOC16-000935","camera_id":"320","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151323","comm_status_datetime_utc":"2018-12-18T03:35:00.000","council_district":"5","cross_st":" REDD ST","cross_st_block":"2001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7894058,30.2282581]},"location_latitude":"30.2282581","location_longitude":"-97.7894058","location_name":" MANCHACA RD / REDD ST","location_type":"ROADWAY","modified_date":"2018-12-18T03:45:00.000","primary_st":" MANCHACA RD","primary_st_block":"4400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV320.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-004960","camera_id":"334","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5161146","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" 53RD ST","cross_st_block":"1108","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.70809936,30.31062051]},"location_latitude":"30.31062051","location_longitude":"-97.70809936","location_name":" CAMERON RD / 53RD ST","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAMERON RD","primary_st_block":"5300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV334.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"3627","atd_location_id":"LOC16-004520","camera_id":"337","camera_status":"DESIRED","coa_intersection_id":"5161088","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"1","cross_st":" ALEXANDER AVE","cross_st_block":"1900","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7094574,30.2817059]},"location_latitude":"30.2817059","location_longitude":"-97.7094574","location_name":" MARTIN LUTHER KING JR BLVD / ALEXANDER AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"2809","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV337.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2864",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-004190","camera_id":"338","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5162491","comm_status_datetime_utc":"2018-06-16T03:30:00.000","council_district":"1","cross_st":" E M FRANKLIN AVE","cross_st_block":"2000","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6960907,30.2837296]},"location_latitude":"30.2837296","location_longitude":"-97.6960907","location_name":" MARTIN LUTHER KING JR BLVD / E M FRANKLIN AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"3600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV338.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-004105","camera_id":"339","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5165251","comm_status_datetime_utc":"2018-06-15T03:30:00.000","council_district":"1","cross_st":" TANNEHILL LN","cross_st_block":"4800","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6694107,30.2863102]},"location_latitude":"30.2863102","location_longitude":"-97.6694107","location_name":" MARTIN LUTHER KING JR BLVD / TANNEHILL LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"5600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV339.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-14T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"329","atd_location_id":"LOC16-002875","camera_id":"336","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159381","comm_status_datetime_utc":"2018-12-25T03:35:00.000","council_district":"1","cross_st":" COMAL ST","cross_st_block":"1900","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7251358,30.2791042]},"location_latitude":"30.2791042","location_longitude":"-97.7251358","location_name":" MARTIN LUTHER KING JR BLVD / COMAL ST","location_type":"ROADWAY","modified_date":"2018-12-25T03:45:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"1500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV336.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003250","camera_id":"340","camera_status":"DESIRED","coa_intersection_id":"5165822","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"1","cross_st":" CRAIGWOOD DR","cross_st_block":"4900","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6598206,30.2847252]},"location_latitude":"30.2847252","location_longitude":"-97.6598206","location_name":"FM 969 RD / CRAIGWOOD DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"FM 969 RD","primary_st_block":"6311","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV340.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-002815","camera_id":"341","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5153901","comm_status_datetime_utc":"2018-06-07T03:30:00.000","council_district":"9","cross_st":" CAMPBELL ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7648392,30.2748566]},"location_latitude":"30.2748566","location_longitude":"-97.7648392","location_name":" 5TH ST / CAMPBELL ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"1600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV341.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-001015","camera_id":"342","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5153995","comm_status_datetime_utc":"2018-08-04T03:30:00.000","council_district":"9","cross_st":" CAMPBELL ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7642212,30.2757683]},"location_latitude":"30.2757683","location_longitude":"-97.7642212","location_name":" 6TH ST / CAMPBELL ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"1600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV342.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-004680","camera_id":"343","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154542","comm_status_datetime_utc":"2018-06-06T03:30:00.000","council_district":"9","cross_st":" PRESSLER ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.760832,30.272729]},"location_latitude":"30.272729","location_longitude":"-97.760832","location_name":" 5TH ST / PRESSLER ST","location_type":"BUILDING","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"1400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV343.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-004730","camera_id":"344","camera_status":"DESIRED","coa_intersection_id":"5154542","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"9","cross_st":" PRESSLER ST","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.760207,30.273898]},"location_latitude":"30.273898","location_longitude":"-97.760207","location_name":" 6TH ST / PRESSLER ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"1300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV344.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-001610","camera_id":"345","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154932","comm_status_datetime_utc":"2018-06-10T03:30:00.000","council_district":"9","cross_st":" BLANCO ST","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7571259,30.2727489]},"location_latitude":"30.2727489","location_longitude":"-97.7571259","location_name":" 6TH ST / BLANCO ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"1135","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV345.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-004660","camera_id":"346","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154806","comm_status_datetime_utc":"2018-06-06T03:30:00.000","council_district":"9","cross_st":" WALSH ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7581711,30.2716541]},"location_latitude":"30.2716541","location_longitude":"-97.7581711","location_name":" 5TH ST / WALSH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV346.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001510","camera_id":"347","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155711","comm_status_datetime_utc":"2018-06-24T03:30:00.000","council_district":"9","cross_st":" WEST AVE","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7509537,30.26931]},"location_latitude":"30.26931","location_longitude":"-97.7509537","location_name":" 5TH ST / WEST AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV347.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-23T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001455","camera_id":"348","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155766","comm_status_datetime_utc":"2018-06-10T03:30:00.000","council_district":"9","cross_st":" WEST AVE","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7505875,30.2702961]},"location_latitude":"30.2702961","location_longitude":"-97.7505875","location_name":" 6TH ST / WEST AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV348.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001460","camera_id":"349","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156096","comm_status_datetime_utc":"2018-06-06T03:30:00.000","council_district":"9","cross_st":" NUECES ST","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7484207,30.2696285]},"location_latitude":"30.2696285","location_longitude":"-97.7484207","location_name":" 6TH ST / NUECES ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV349.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001515","camera_id":"350","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156046","comm_status_datetime_utc":"2018-06-06T03:30:00.000","council_district":"9","cross_st":" NUECES ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7487793,30.2686787]},"location_latitude":"30.2686787","location_longitude":"-97.7487793","location_name":" 5TH ST / NUECES ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV350.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001465","camera_id":"351","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156452","comm_status_datetime_utc":"2018-06-06T03:30:00.000","council_district":"9","cross_st":" GUADALUPE ST","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7462616,30.2690239]},"location_latitude":"30.2690239","location_longitude":"-97.7462616","location_name":" 6TH ST / GUADALUPE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV351.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001570","camera_id":"352","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156387","comm_status_datetime_utc":"2018-06-21T03:30:00.000","council_district":"9","cross_st":" GUADALUPE ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7466354,30.2680931]},"location_latitude":"30.2680931","location_longitude":"-97.7466354","location_name":" 5TH ST / GUADALUPE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV352.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001525","camera_id":"353","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156555","comm_status_datetime_utc":"2018-06-07T03:30:00.000","council_district":"9","cross_st":" LAVACA ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7455444,30.2677956]},"location_latitude":"30.2677956","location_longitude":"-97.7455444","location_name":" 5TH ST / LAVACA ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV353.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001535","camera_id":"354","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156914","comm_status_datetime_utc":"2018-06-09T03:30:00.000","council_district":"9","cross_st":" CONGRESS AVE","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7431717,30.2671185]},"location_latitude":"30.2671185","location_longitude":"-97.7431717","location_name":" 5TH ST / CONGRESS AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV354.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001645","camera_id":"358","camera_status":"VOID","coa_intersection_id":"5158201","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"3,9","cross_st":"IH 35 SVRD","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7350006,30.2658806]},"location_latitude":"30.2658806","location_longitude":"-97.7350006","location_name":" 6TH ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV358.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-003965","camera_id":"359","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5148259","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" BEN GARZA LN","cross_st_block":"3501","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8266525,30.2198162]},"location_latitude":"30.2198162","location_longitude":"-97.8266525","location_name":" BRODIE LN / BEN GARZA LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BRODIE LN","primary_st_block":"6300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV359.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-07-06T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"8002","atd_location_id":"LOC16-007025","camera_id":"36","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5167173","comm_status_datetime_utc":"2018-11-08T03:35:00.000","council_district":"2","cross_st":" HEINE FARM RD","cross_st_block":"7113","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.639766,30.153975]},"location_latitude":"30.153975","location_longitude":"-97.639766","location_name":" ELROY RD / HEINE FARM RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ELROY RD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV36.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-002070","camera_id":"360","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5147555","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8,5","cross_st":" HARPERS FERRY LN","cross_st_block":"3501","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.834938,30.2070122]},"location_latitude":"30.2070122","location_longitude":"-97.834938","location_name":" BRODIE LN / HARPERS FERRY LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BRODIE LN","primary_st_block":"7400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV360.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-004245","camera_id":"361","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5147204","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5,8","cross_st":" ALEXANDRIA DR","cross_st_block":"3501","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8387375,30.2008514]},"location_latitude":"30.2008514","location_longitude":"-97.8387375","location_name":" BRODIE LN / ALEXANDRIA DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BRODIE LN","primary_st_block":"8209","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV361.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-003470","camera_id":"362","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5146665","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5,8","cross_st":" SILK OAK DR","cross_st_block":"3413","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8452148,30.1907635]},"location_latitude":"30.1907635","location_longitude":"-97.8452148","location_name":" BRODIE LN / SILK OAK DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BRODIE LN","primary_st_block":"9000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV362.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3251",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-003645","camera_id":"363","camera_status":"DESIRED","coa_intersection_id":"5144805","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"8","cross_st":" WILLIAM CANNON DR","cross_st_block":"7161","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8656235,30.2545109]},"location_latitude":"30.2545109","location_longitude":"-97.8656235","location_name":" SOUTHWEST PKWY / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SOUTHWEST PKWY","primary_st_block":"7018","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV363.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3251",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-001020","camera_id":"364","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5146140","comm_status_datetime_utc":"2018-06-29T03:30:00.000","council_district":"8","cross_st":" FOSTER RANCH RD","cross_st_block":"4501","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8497391,30.2480564]},"location_latitude":"30.2480564","location_longitude":"-97.8497391","location_name":" SOUTHWEST PKWY / FOSTER RANCH RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SOUTHWEST PKWY","primary_st_block":"6000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV364.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-19T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3251",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-002595","camera_id":"366","camera_mfg":"Advidia","camera_status":"DESIRED","coa_intersection_id":"5147905","comm_status_datetime_utc":"2018-07-02T03:30:00.000","council_district":"8","cross_st":" REPUBLIC OF TEXAS BLVD","cross_st_block":"4500","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8302536,30.2400837]},"location_latitude":"30.2400837","location_longitude":"-97.8302536","location_name":" SOUTHWEST PKWY / REPUBLIC OF TEXAS BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SOUTHWEST PKWY","primary_st_block":"4400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV366.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3251",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-003905","camera_id":"368","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148537","comm_status_datetime_utc":"2018-11-08T03:35:00.000","council_district":"8","cross_st":" MOPAC EXPY SVRD","cross_st_block":"4911","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.822525,30.2364311]},"location_latitude":"30.2364311","location_longitude":"-97.822525","location_name":" SOUTHWEST PKWY / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SOUTHWEST PKWY","primary_st_block":"3900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV368.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-03-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006965","camera_id":"37","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-06-19T03:30:00.000","council_district":"9","cross_st":" SHOAL CREEK BLVD","cross_st_block":"2710","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"LAMAR / 27TH","location":{"type":"Point","coordinates":[-97.747347,30.292496]},"location_latitude":"30.292496","location_longitude":"-97.747347","location_name":" LAMAR BLVD / SHOAL CREEK BLVD (LAMAR / 27TH)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"2601","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV37.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-003180","camera_id":"370","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157009","comm_status_datetime_utc":"2018-07-03T03:30:00.000","council_district":"2","cross_st":" NUCKOLS CROSSING RD","cross_st_block":"6112","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7449036,30.1844883]},"location_latitude":"30.1844883","location_longitude":"-97.7449036","location_name":" PLEASANT VALLEY RD / NUCKOLS CROSSING RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PLEASANT VALLEY RD","primary_st_block":"6201","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV370.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2018-05-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-001685","camera_id":"371","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157006","comm_status_datetime_utc":"2018-03-28T08:30:00.000","council_district":"2","cross_st":" STASSNEY LN","cross_st_block":"4610","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7446823,30.193985]},"location_latitude":"30.193985","location_longitude":"-97.7446823","location_name":" PLEASANT VALLEY RD / STASSNEY LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PLEASANT VALLEY RD","primary_st_block":"5205","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV371.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2018-02-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002855","camera_id":"372","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5158368","comm_status_datetime_utc":"2018-03-09T09:30:00.000","council_district":"2","cross_st":" TODD LN","cross_st_block":"3701","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7352905,30.2149239]},"location_latitude":"30.2149239","location_longitude":"-97.7352905","location_name":" BEN WHITE BLVD SVRD / TODD LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BEN WHITE BLVD SVRD","primary_st_block":"2237","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV372.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2018-03-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"378","atd_location_id":"LOC16-003595","camera_id":"373","camera_mfg":"Advidia","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-08-16T03:30:00.000","council_district":"3","cross_st":" ","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"KREIG FIELD","location":{"type":"Point","coordinates":[-97.7149734,30.2460289]},"location_latitude":"30.2460289","location_longitude":"-97.7149734","location_name":"1 BLK S PLEASANT VALLEY RD (KREIG FIELD)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PLEASANT VALLEY RD","primary_st_block":"1","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV373.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-05-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3251",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-003900","camera_id":"367","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148451","comm_status_datetime_utc":"2018-12-27T03:35:00.000","council_district":"8","cross_st":" MOPAC EXPY SVRD","cross_st_block":"4950","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8236008,30.2377434]},"location_latitude":"30.2377434","location_longitude":"-97.8236008","location_name":" SOUTHWEST PKWY / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-12-27T03:45:00.000","primary_st":" SOUTHWEST PKWY","primary_st_block":"3900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV367.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001490","camera_id":"355","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157344","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" SAN JACINTO BLVD","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7403717,30.267395]},"location_latitude":"30.267395","location_longitude":"-97.7403717","location_name":" 6TH ST / SAN JACINTO BLVD","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" 6TH ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV355.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001560","camera_id":"357","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157789","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" RED RIVER ST","cross_st_block":"500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7374878,30.2655354]},"location_latitude":"30.2655354","location_longitude":"-97.7374878","location_name":" 5TH ST / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" 5TH ST","primary_st_block":"500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV357.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-11-21T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1599","atd_location_id":"LOC16-001925","camera_id":"374","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160383","comm_status_datetime_utc":"2018-03-04T09:30:00.000","council_district":"3","cross_st":" SOUTH LAKESHORE BLVD","cross_st_block":"2206","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7171478,30.2425137]},"location_latitude":"30.2425137","location_longitude":"-97.7171478","location_name":" PLEASANT VALLEY RD / SOUTH LAKESHORE BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PLEASANT VALLEY RD","primary_st_block":"1100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV374.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-01-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"102","atd_location_id":"LOC16-001175","camera_id":"375","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5160122","comm_status_datetime_utc":"2018-07-20T03:30:00.000","council_district":"3","cross_st":" ELMONT DR","cross_st_block":"2424","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7195511,30.238802]},"location_latitude":"30.238802","location_longitude":"-97.7195511","location_name":" PLEASANT VALLEY RD / ELMONT DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PLEASANT VALLEY RD","primary_st_block":"1100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV375.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-05-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-004115","camera_id":"376","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5160988","comm_status_datetime_utc":"2018-06-16T03:30:00.000","council_district":"3","cross_st":" PLEASANT VALLEY RD","cross_st_block":"400","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7111053,30.256628]},"location_latitude":"30.256628","location_longitude":"-97.7111053","location_name":" 5TH ST / PLEASANT VALLEY RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"2715","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV376.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-03-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006955","camera_id":"39","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" SAN JACINTO BLVD","cross_st_block":"100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"FOUR SEASONS - WEST","location":{"type":"Point","coordinates":[-97.74283,30.261807]},"location_latitude":"30.261807","location_longitude":"-97.74283","location_name":" CESAR CHAVEZ ST / SAN JACINTO BLVD (FOUR SEASONS - WEST)","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV39.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000640","camera_id":"379","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154418","comm_status_datetime_utc":"2018-05-22T03:30:00.000","council_district":"5","cross_st":" KINNEY AVE","cross_st_block":"501","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.761467,30.261982]},"location_latitude":"30.261982","location_longitude":"-97.761467","location_name":" BARTON SPRINGS RD / KINNEY AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"1501","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV379.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-05-21T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3245",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003175","camera_id":"390","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5151165","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" POND SPRINGS RD","cross_st_block":"13400","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7853088,30.4503841]},"location_latitude":"30.4503841","location_longitude":"-97.7853088","location_name":" ANDERSON MILL RD / POND SPRINGS RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" ANDERSON MILL RD","primary_st_block":"9320","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV390.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"340","atd_location_id":"LOC16-001145","camera_id":"380","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155411","comm_status_datetime_utc":"2018-05-08T03:30:00.000","council_district":"9","cross_st":" BOULDIN AVE","cross_st_block":"101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.753479,30.2595844]},"location_latitude":"30.2595844","location_longitude":"-97.753479","location_name":" BARTON SPRINGS RD / BOULDIN AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV380.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-05-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"3316","atd_location_id":"LOC16-001715","camera_id":"381","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5158993","comm_status_datetime_utc":"2018-06-08T03:30:00.000","council_district":"3,1","cross_st":" ATTAYAC ST","cross_st_block":"600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7290802,30.2650185]},"location_latitude":"30.2650185","location_longitude":"-97.7290802","location_name":" 7TH ST / ATTAYAC ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"1201","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV381.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"3316","atd_location_id":"LOC16-001720","camera_id":"382","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159325","comm_status_datetime_utc":"2018-03-30T03:30:00.000","council_district":"3,1","cross_st":" COMAL ST","cross_st_block":"700","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7261353,30.2639542]},"location_latitude":"30.2639542","location_longitude":"-97.7261353","location_name":" 7TH ST / COMAL ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"1500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV382.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-03-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1371","atd_location_id":"LOC16-001735","camera_id":"383","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5160710","comm_status_datetime_utc":"2018-04-27T03:30:00.000","council_district":"3","cross_st":" PEDERNALES ST","cross_st_block":"700","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7137146,30.2609138]},"location_latitude":"30.2609138","location_longitude":"-97.7137146","location_name":" 7TH ST / PEDERNALES ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"2500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV383.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-02-28T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-001805","camera_id":"384","camera_status":"DESIRED","coa_intersection_id":"5162417","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"3","cross_st":" SHADY LN","cross_st_block":"702","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6975708,30.2533531]},"location_latitude":"30.2533531","location_longitude":"-97.6975708","location_name":" 7TH ST / SHADY LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 7TH ST","primary_st_block":"4600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV384.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003695","camera_id":"385","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5152487","comm_status_datetime_utc":"2018-02-24T09:30:00.000","council_district":"10","cross_st":" LAKE AUSTIN BLVD","cross_st_block":"2701","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7767715,30.2832127]},"location_latitude":"30.2832127","location_longitude":"-97.7767715","location_name":" EXPOSITION BLVD / LAKE AUSTIN BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" EXPOSITION BLVD","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV385.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-02-23T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-007155","camera_id":"386","camera_mfg":"Advidia","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-06-05T03:30:00.000","council_district":"10","cross_st":" ","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Hearn / UT Graduate Student Housing","location":{"type":"Point","coordinates":[-97.774177,30.279402]},"location_latitude":"30.279402","location_longitude":"-97.774177","location_name":"2500 BLK LAKE AUSTIN BLVD (Hearn / UT Graduate Student Housing)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAKE AUSTIN BLVD","primary_st_block":"2500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV386.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-05-31T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-003685","camera_id":"387","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5153038","comm_status_datetime_utc":"2018-05-24T03:30:00.000","council_district":"10","cross_st":" VETERANS DR","cross_st_block":"2301","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7718658,30.2776871]},"location_latitude":"30.2776871","location_longitude":"-97.7718658","location_name":" LAKE AUSTIN BLVD / VETERANS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAKE AUSTIN BLVD","primary_st_block":"2304","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV387.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-05-23T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002840","camera_id":"391","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155231","comm_status_datetime_utc":"2018-06-19T03:30:00.000","council_district":"10,7","cross_st":" BULL CREEK RD","cross_st_block":"4400","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.753479,30.3205681]},"location_latitude":"30.3205681","location_longitude":"-97.753479","location_name":" 45TH ST / BULL CREEK RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 45TH ST","primary_st_block":"2800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV391.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002845","camera_id":"392","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155059","comm_status_datetime_utc":"2018-03-08T09:30:00.000","council_district":"10","cross_st":" 45TH ST","cross_st_block":"2904","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7548218,30.3212357]},"location_latitude":"30.3212357","location_longitude":"-97.7548218","location_name":" MOPAC EXPY / 45TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MOPAC EXPY","primary_st_block":"4313","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV392.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-03-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004355","camera_id":"393","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154866","comm_status_datetime_utc":"2018-03-08T09:30:00.000","council_district":"10","cross_st":" W 45TH TO MOPAC SB RAMP","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7563477,30.3213959]},"location_latitude":"30.3213959","location_longitude":"-97.7563477","location_name":" 45TH ST / W 45TH TO MOPAC SB RAMP","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 45TH ST","primary_st_block":"2916","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV393.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-03-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000340","camera_id":"394","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159912","comm_status_datetime_utc":"2018-05-23T03:30:00.000","council_district":"9","cross_st":" RED RIVER ST","cross_st_block":"4500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7196121,30.3048534]},"location_latitude":"30.3048534","location_longitude":"-97.7196121","location_name":" 45TH ST / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 45TH ST","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV394.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-02-28T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"572","atd_location_id":"LOC16-000295","camera_id":"395","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159359","comm_status_datetime_utc":"2018-03-24T08:30:00.000","council_district":"9","cross_st":" DUVAL ST","cross_st_block":"4500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7245865,30.3069954]},"location_latitude":"30.3069954","location_longitude":"-97.7245865","location_name":" 45TH ST / DUVAL ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 45TH ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV395.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-02-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"3823","atd_location_id":"LOC16-000300","camera_id":"396","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5158939","comm_status_datetime_utc":"2018-06-01T03:30:00.000","council_district":"9","cross_st":" SPEEDWAY ","cross_st_block":"4400","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7283936,30.3086319]},"location_latitude":"30.3086319","location_longitude":"-97.7283936","location_name":" 45TH ST / SPEEDWAY ","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 45TH ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV396.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003095","camera_id":"399","camera_status":"DESIRED","coa_intersection_id":"5165539","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"1","cross_st":" ED BLUESTEIN BLVD SVRD","cross_st_block":"7300","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6635742,30.3152828]},"location_latitude":"30.3152828","location_longitude":"-97.6635742","location_name":" MANOR RD / ED BLUESTEIN BLVD SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANOR RD","primary_st_block":"7200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV399.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006950","camera_id":"40","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"9","cross_st":" SAN JACINTO BLVD","cross_st_block":"100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"FOUR SEASONS - EAST","location":{"type":"Point","coordinates":[-97.742403,30.261684]},"location_latitude":"30.261684","location_longitude":"-97.742403","location_name":" CESAR CHAVEZ ST / SAN JACINTO BLVD (FOUR SEASONS - EAST)","location_type":"ROADWAY","modified_date":"2018-12-29T03:45:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV40.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003300","camera_id":"400","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5165474","comm_status_datetime_utc":"2018-06-05T03:30:00.000","council_district":"1","cross_st":" SUSQUEHANNA LN","cross_st_block":"3200","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6650085,30.3130779]},"location_latitude":"30.3130779","location_longitude":"-97.6650085","location_name":" MANOR RD / SUSQUEHANNA LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANOR RD","primary_st_block":"7001","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV400.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-08-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-002405","camera_id":"401","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5165345","comm_status_datetime_utc":"2018-06-05T03:30:00.000","council_district":"1","cross_st":" LOYOLA LN","cross_st_block":"3500","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6671524,30.3100624]},"location_latitude":"30.3100624","location_longitude":"-97.6671524","location_name":" MANOR RD / LOYOLA LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANOR RD","primary_st_block":"6700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV401.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-08-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2864",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-002785","camera_id":"403","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5163550","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"1","cross_st":" 12TH ST","cross_st_block":"4100","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6870193,30.2789841]},"location_latitude":"30.2789841","location_longitude":"-97.6870193","location_name":" SPRINGDALE RD / 12TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SPRINGDALE RD","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV403.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-08-01T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"3240","atd_location_id":"LOC16-003310","camera_id":"398","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5165650","comm_status_datetime_utc":"2018-12-12T03:30:00.000","council_district":"1","cross_st":" PECAN BROOK DR","cross_st_block":"4600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.6613617,30.3186951]},"location_latitude":"30.3186951","location_longitude":"-97.6613617","location_name":" SPRINGDALE RD / PECAN BROOK DR","location_type":"ROADWAY","modified_date":"2018-12-12T03:40:00.000","primary_st":" SPRINGDALE RD","primary_st_block":"7352","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV398.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-000320","camera_id":"405","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158913","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"1,9","cross_st":" MEDICAL ARTS ST","cross_st_block":"2900","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7291336,30.2883301]},"location_latitude":"30.2883301","location_longitude":"-97.7291336","location_name":" DEAN KEETON ST / MEDICAL ARTS ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"818","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV405.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2861",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000270","camera_id":"406","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157794","comm_status_datetime_utc":"2018-02-07T09:30:00.000","council_district":"9","cross_st":" SPEEDWAY ","cross_st_block":"2400","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7368088,30.2894573]},"location_latitude":"30.2894573","location_longitude":"-97.7368088","location_name":" DEAN KEETON ST / SPEEDWAY ","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV406.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-02-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2861",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000260","camera_id":"407","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157607","comm_status_datetime_utc":"2018-06-08T03:30:00.000","council_district":"9","cross_st":" WICHITA ST","cross_st_block":"2600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7379913,30.2895603]},"location_latitude":"30.2895603","location_longitude":"-97.7379913","location_name":" DEAN KEETON ST / WICHITA ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV407.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2861",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000305","camera_id":"408","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157439","comm_status_datetime_utc":"2018-03-14T08:30:00.000","council_district":"9","cross_st":" UNIVERSITY AVE","cross_st_block":"2600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7390747,30.2896271]},"location_latitude":"30.2896271","location_longitude":"-97.7390747","location_name":" DEAN KEETON ST / UNIVERSITY AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV408.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-03-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000325","camera_id":"409","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157276","comm_status_datetime_utc":"2018-06-08T03:30:00.000","council_district":"9","cross_st":" WHITIS AVE","cross_st_block":"2600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7402496,30.2897549]},"location_latitude":"30.2897549","location_longitude":"-97.7402496","location_name":" DEAN KEETON ST / WHITIS AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV409.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1760","atd_location_id":"LOC16-002690","camera_id":"410","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5161393","comm_status_datetime_utc":"2018-03-04T09:30:00.000","council_district":"3","cross_st":" RIVERSIDE DR","cross_st_block":"5800","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7079239,30.2270241]},"location_latitude":"30.2270241","location_longitude":"-97.7079239","location_name":" GROVE BLVD / RIVERSIDE DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GROVE BLVD","primary_st_block":"2001","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV410.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-08-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"102","atd_location_id":"LOC16-001930","camera_id":"411","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5160049","comm_status_datetime_utc":"2018-03-04T09:30:00.000","council_district":"3","cross_st":" WICKERSHAM LN","cross_st_block":"1401","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7204056,30.2323837]},"location_latitude":"30.2323837","location_longitude":"-97.7204056","location_name":" RIVERSIDE DR / WICKERSHAM LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RIVERSIDE DR","primary_st_block":"4400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV411.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-08-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"102","atd_location_id":"LOC16-001900","camera_id":"412","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158907","comm_status_datetime_utc":"2018-10-16T03:30:00.000","council_district":"3,9","cross_st":" SOUTH LAKESHORE BLVD","cross_st_block":"1700","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7303467,30.2448444]},"location_latitude":"30.2448444","location_longitude":"-97.7303467","location_name":" RIVERSIDE DR / SOUTH LAKESHORE BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RIVERSIDE DR","primary_st_block":"1652","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV412.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-006945","camera_id":"42","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-10-06T03:30:00.000","council_district":"1","cross_st":" ","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"EXPO CENTER DRIVEWAY","location":{"type":"Point","coordinates":[-97.624578,30.29682]},"location_latitude":"30.29682","location_longitude":"-97.624578","location_name":"7000 BLK DECKER LN (EXPO CENTER DRIVEWAY)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DECKER LN","primary_st_block":"7000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV42.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_a3it_2a2z":"3258","atd_location_id":"LOC16-003835","camera_id":"421","camera_status":"DESIRED","coa_intersection_id":"5159643","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"2","cross_st":" WILLIAM CANNON DR","cross_st_block":"7000","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.7258301,30.1632175]},"location_latitude":"30.1632175","location_longitude":"-97.7258301","location_name":" MC KINNEY FALLS PKWY / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MC KINNEY FALLS PKWY","primary_st_block":"6926","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV421.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003655","camera_id":"416","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5165394","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" MC CALLEN PASS","cross_st_block":"13013","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6639328,30.4052601]},"location_latitude":"30.4052601","location_longitude":"-97.6639328","location_name":" PARMER LN / MC CALLEN PASS","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" PARMER LN","primary_st_block":"101","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV416.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-02-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"3447","atd_location_id":"LOC16-001960","camera_id":"424","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5150583","comm_status_datetime_utc":"2018-04-04T03:30:00.000","council_district":"5,2","cross_st":" WOODHUE DR","cross_st_block":"6605","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7987671,30.2003918]},"location_latitude":"30.2003918","location_longitude":"-97.7987671","location_name":" WILLIAM CANNON DR / WOODHUE DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"1300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV424.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-03-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-002125","camera_id":"425","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5145695","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" BECKETT RD","cross_st_block":"6807","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8549728,30.2249718]},"location_latitude":"30.2249718","location_longitude":"-97.8549728","location_name":" WILLIAM CANNON DR / BECKETT RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"5400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV425.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-03-17T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-002130","camera_id":"426","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5146898","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" BRUSH COUNTRY RD","cross_st_block":"6701","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8416977,30.2233868]},"location_latitude":"30.2233868","location_longitude":"-97.8416977","location_name":" WILLIAM CANNON DR / BRUSH COUNTRY RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"4600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV426.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-03-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-003745","camera_id":"428","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149245","comm_status_datetime_utc":"2018-03-30T03:30:00.000","council_district":"5","cross_st":" TEXAS OAKS DR","cross_st_block":"9401","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8143845,30.1738815]},"location_latitude":"30.1738815","location_longitude":"-97.8143845","location_name":" SLAUGHTER LN / TEXAS OAKS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"1201","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV428.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-17T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-006940","camera_id":"43","camera_mfg":"Axis","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"2","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"COTA TOWER SOUTH","location":{"type":"Point","coordinates":[-97.637863,30.133909]},"location_latitude":"30.133909","location_longitude":"-97.637863","location_name":"9143 BLK CIRCUIT OF THE AMERICAS BLVD (COTA TOWER SOUTH)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CIRCUIT OF THE AMERICAS BLVD","primary_st_block":"9143","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV43.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-10-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-003160","camera_id":"431","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5145092","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" SENDERA MESA DR","cross_st_block":"9201","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8627777,30.1987305]},"location_latitude":"30.1987305","location_longitude":"-97.8627777","location_name":" SLAUGHTER LN / SENDERA MESA DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"4500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV431.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-05-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-000690","camera_id":"433","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156131","comm_status_datetime_utc":"2018-08-14T03:30:00.000","council_district":"9","cross_st":" NELLIE ST","cross_st_block":"101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7486496,30.2522736]},"location_latitude":"30.2522736","location_longitude":"-97.7486496","location_name":" CONGRESS AVE / NELLIE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV433.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-000870","camera_id":"435","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155801","comm_status_datetime_utc":"2018-10-17T03:30:00.000","council_district":"9","cross_st":" ANNIE ST","cross_st_block":"101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7509689,30.2460938]},"location_latitude":"30.2460938","location_longitude":"-97.7509689","location_name":" CONGRESS AVE / ANNIE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"1700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV435.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-28T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"340","atd_location_id":"LOC16-000725","camera_id":"436","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154953","comm_status_datetime_utc":"2018-02-03T09:30:00.000","council_district":"9","cross_st":" LIVE OAK ST","cross_st_block":"601","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7576752,30.2444649]},"location_latitude":"30.2444649","location_longitude":"-97.7576752","location_name":" 1ST ST / LIVE OAK ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 1ST ST","primary_st_block":"2000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV436.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-007175","camera_id":"437","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155677","comm_status_datetime_utc":"2018-10-17T03:30:00.000","council_district":"9","cross_st":" LELAND ST","cross_st_block":"100","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"St. Edwards","location":{"type":"Point","coordinates":[-97.751915,30.243446]},"location_latitude":"30.243446","location_longitude":"-97.751915","location_name":" CONGRESS AVE / LELAND ST (St. Edwards)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"2000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV437.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-005105","camera_id":"438","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154891","comm_status_datetime_utc":"2018-10-17T03:30:00.000","council_district":"3","cross_st":" LA VISTA ST","cross_st_block":"101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"St. Edwards","location":{"type":"Point","coordinates":[-97.7584152,30.2325363]},"location_latitude":"30.2325363","location_longitude":"-97.7584152","location_name":" CONGRESS AVE / LA VISTA ST (St. Edwards)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"3000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV438.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-28T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-006045","camera_id":"439","camera_status":"DESIRED","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"3","cross_st":" ALPINE RD","cross_st_block":"100","funding":"1/4 Cent","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7616501,30.2271775]},"location_latitude":"30.2271775","location_longitude":"-97.7616501","location_name":" CONGRESS AVE / ALPINE RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"3600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV439.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002045","camera_id":"423","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154994","comm_status_datetime_utc":"2018-12-22T03:35:00.000","council_district":"2","cross_st":" STONLEIGH PL","cross_st_block":"6501","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7588806,30.1864319]},"location_latitude":"30.1864319","location_longitude":"-97.7588806","location_name":" WILLIAM CANNON DR / STONLEIGH PL","location_type":"ROADWAY","modified_date":"2018-12-22T03:45:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"2300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV423.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2018-03-17T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3243",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-004860","camera_id":"417","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5160219","comm_status_datetime_utc":"2018-12-27T03:35:00.000","council_district":"7","cross_st":" PARMER LN","cross_st_block":"3900","funding":"1/4 Cent","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.713562,30.4247303]},"location_latitude":"30.4247303","location_longitude":"-97.713562","location_name":" AMHERST DR / PARMER LN","location_type":"ROADWAY","modified_date":"2018-12-27T03:45:00.000","primary_st":" AMHERST DR","primary_st_block":"12416","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV417.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-02-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-006935","camera_id":"44","camera_mfg":"Axis","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"2","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"COTA TOWER NORTH","location":{"type":"Point","coordinates":[-97.638195,30.134634]},"location_latitude":"30.134634","location_longitude":"-97.638195","location_name":"9143 BLK CIRCUIT OF THE AMERICAS BLVD (COTA TOWER NORTH)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CIRCUIT OF THE AMERICAS BLVD","primary_st_block":"9143","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV44.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-10-02T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-004870","camera_id":"440","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157958","comm_status_datetime_utc":"2018-03-01T09:30:00.000","council_district":"3","cross_st":" SOUTH CENTER ST","cross_st_block":"601","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7676616,30.22942948]},"location_latitude":"30.22942948","location_longitude":"-97.7676616","location_name":" 1ST ST / SOUTH CENTER ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 1ST ST","primary_st_block":"3616","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV440.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-28T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1776","atd_location_id":"LOC16-001990","camera_id":"441","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5153835","comm_status_datetime_utc":"2018-02-02T09:30:00.000","council_district":"3","cross_st":" ST ELMO RD","cross_st_block":"101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7668762,30.2182045]},"location_latitude":"30.2182045","location_longitude":"-97.7668762","location_name":" CONGRESS AVE / ST ELMO RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"4228","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV441.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-01T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1776","atd_location_id":"LOC16-002005","camera_id":"443","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5152923","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"3,2","cross_st":" STASSNEY LN","cross_st_block":"100","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.77479,30.204942]},"location_latitude":"30.204942","location_longitude":"-97.77479","location_name":" CONGRESS AVE / STASSNEY LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"5536","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV443.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-05-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-000065","camera_id":"449","camera_status":"DESIRED","coa_intersection_id":"5160128","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"4","cross_st":" GUADALUPE ST","cross_st_block":"6800","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7169266,30.3339596]},"location_latitude":"30.3339596","location_longitude":"-97.7169266","location_name":" AIRPORT BLVD / GUADALUPE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"6800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV449.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_a3it_2a2z":"8002","atd_location_id":"LOC16-006930","camera_id":"45","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5166789","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"2","cross_st":"FM 812 RD","cross_st_block":"12510","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","landmark":"COTA SOUTH GATE","location":{"type":"Point","coordinates":[-97.647147,30.132037]},"location_latitude":"30.132037","location_longitude":"-97.647147","location_name":" CIRCUIT OF THE AMERICAS BLVD / 812 RD (COTA SOUTH GATE)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CIRCUIT OF THE AMERICAS BLVD","primary_st_block":"9514","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV45.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-09-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000855","camera_id":"450","camera_status":"DESIRED","coa_intersection_id":"5160656","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"4","cross_st":" KOENIG LN SVRD","cross_st_block":"733","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7125473,30.31991]},"location_latitude":"30.31991","location_longitude":"-97.7125473","location_name":" AIRPORT BLVD / KOENIG LN SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"5701","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV450.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000850","camera_id":"451","camera_status":"DESIRED","coa_intersection_id":"5160439","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"4,9","cross_st":" 53RD HALF ST","cross_st_block":"800","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7146301,30.3150253]},"location_latitude":"30.3150253","location_longitude":"-97.7146301","location_name":" AIRPORT BLVD / 53RD HALF ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"5300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV451.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2865",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1169","atd_location_id":"LOC16-004785","camera_id":"452","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5161201","comm_status_datetime_utc":"2018-10-29T03:30:00.000","council_district":"9","cross_st":" ZACH SCOTT ST","cross_st_block":"1824","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7078781,30.2941189]},"location_latitude":"30.2941189","location_longitude":"-97.7078781","location_name":" AIRPORT BLVD / ZACH SCOTT ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"4100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV452.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-07-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2865",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"1169","atd_location_id":"LOC16-000825","camera_id":"453","camera_status":"DESIRED","coa_intersection_id":"5161289","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"1,9","cross_st":" 38TH HALF ST","cross_st_block":"1814","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7072449,30.2891846]},"location_latitude":"30.2891846","location_longitude":"-97.7072449","location_name":" AIRPORT BLVD / 38TH HALF ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"3801","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV453.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"566","atd_location_id":"LOC16-000810","camera_id":"455","camera_status":"DESIRED","coa_intersection_id":"5162046","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"1","cross_st":" 12TH ST","cross_st_block":"3250","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7003326,30.2768612]},"location_latitude":"30.2768612","location_longitude":"-97.7003326","location_name":" AIRPORT BLVD / 12TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV455.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-000790","camera_id":"456","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5162808","comm_status_datetime_utc":"2018-10-27T03:30:00.000","council_district":"3","cross_st":" BOLM RD","cross_st_block":"5000","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6938629,30.2600937]},"location_latitude":"30.2600937","location_longitude":"-97.6938629","location_name":" AIRPORT BLVD / BOLM RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV456.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-006925","camera_id":"46","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5168033","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"2","cross_st":" ELROY RD","cross_st_block":"7713","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"COTA NORTH GATE","location":{"type":"Point","coordinates":[-97.623441,30.146154]},"location_latitude":"30.146154","location_longitude":"-97.623441","location_name":" CIRCUIT OF THE AMERICAS BLVD / ELROY RD (COTA NORTH GATE)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CIRCUIT OF THE AMERICAS BLVD","primary_st_block":"7800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV46.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-09-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-004720","camera_id":"461","camera_status":"DESIRED","coa_intersection_id":"5157958","comm_status_datetime_utc":"2018-07-01T03:30:00.000","council_district":"7","cross_st":" ARROYO SECO ","cross_st_block":"5900","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.73474,30.33239]},"location_latitude":"30.33239","location_longitude":"-97.73474","location_name":" KOENIG LN / ARROYO SECO ","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" KOENIG LN","primary_st_block":"1600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV461.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-29T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-002515","camera_id":"446","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5162233","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,4","cross_st":" PARKFIELD DR","cross_st_block":"11200","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6957474,30.3861217]},"location_latitude":"30.3861217","location_longitude":"-97.6957474","location_name":" BRAKER LN / PARKFIELD DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BRAKER LN","primary_st_block":"1400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV446.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000405","camera_id":"464","camera_status":"DESIRED","coa_intersection_id":"5157237","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" WHITE HORSE TRL","cross_st_block":"2101","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7392502,30.33848]},"location_latitude":"30.33848","location_longitude":"-97.7392502","location_name":" BURNET RD / WHITE HORSE TRL","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"6314","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV464.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"1114","atd_location_id":"LOC16-004710","camera_id":"465","camera_status":"DESIRED","coa_intersection_id":"5157168","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" ADAMS AVE","cross_st_block":"5600","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7398911,30.3300705]},"location_latitude":"30.3300705","location_longitude":"-97.7398911","location_name":" BURNET RD / ADAMS AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"5500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV465.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7",":@computed_region_qwte_z96m":"3950","atd_location_id":"LOC16-000450","camera_id":"467","camera_status":"DESIRED","coa_intersection_id":"5158100","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" NORTHCROSS DR","cross_st_block":"7601","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7332458,30.3522167]},"location_latitude":"30.3522167","location_longitude":"-97.7332458","location_name":" BURNET RD / NORTHCROSS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"7600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV467.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000380","camera_id":"468","camera_status":"DESIRED","coa_intersection_id":"5158619","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" STECK AVE","cross_st_block":"2501","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7293396,30.3618469]},"location_latitude":"30.3618469","location_longitude":"-97.7293396","location_name":" BURNET RD / STECK AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"8224","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV468.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002260","camera_id":"469","camera_status":"DESIRED","coa_intersection_id":"5159209","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" RUTLAND DR","cross_st_block":"2401","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7240753,30.3834267]},"location_latitude":"30.3834267","location_longitude":"-97.7240753","location_name":" BURNET RD / RUTLAND DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"10000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV469.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1776","atd_location_id":"LOC16-006920","camera_id":"47","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153279","comm_status_datetime_utc":"2018-08-14T13:48:00.000","council_district":"3","cross_st":" WASSON RD","cross_st_block":"5001","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.771369,30.210902]},"location_latitude":"30.210902","location_longitude":"-97.771369","location_name":" CONGRESS AVE / WASSON RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"4703","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV47.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002275","camera_id":"470","camera_status":"DESIRED","coa_intersection_id":"5159550","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" KRAMER LN","cross_st_block":"2625","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7203979,30.3952026]},"location_latitude":"30.3952026","location_longitude":"-97.7203979","location_name":" BURNET RD / KRAMER LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"10800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV470.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002245","camera_id":"471","camera_status":"DESIRED","coa_intersection_id":"5160013","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" GAULT LN","cross_st_block":"2901","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7160492,30.4049339]},"location_latitude":"30.4049339","location_longitude":"-97.7160492","location_name":" BURNET RD / GAULT LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"11700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV471.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-004290","camera_id":"472","camera_status":"DESIRED","coa_intersection_id":"5159662","comm_status_datetime_utc":"2017-11-18T17:26:00.000","council_district":"7","cross_st":" ESPERANZA XING","cross_st_block":"2901","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7193222,30.3983212]},"location_latitude":"30.3983212","location_longitude":"-97.7193222","location_name":" BURNET RD / ESPERANZA XING","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BURNET RD","primary_st_block":"11100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV472.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002170","camera_id":"463","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155147","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" NORTHLAND DR","cross_st_block":"3000","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"East","location":{"type":"Point","coordinates":[-97.7537231,30.3355293]},"location_latitude":"30.3355293","location_longitude":"-97.7537231","location_name":" MOPAC EXPY / NORTHLAND DR (East)","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" MOPAC EXPY","primary_st_block":"5300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV463.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-02-28T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3851","atd_location_id":"LOC16-002415","camera_id":"475","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5161615","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" COLLINFIELD DR","cross_st_block":"9200","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7016525,30.3653278]},"location_latitude":"30.3653278","location_longitude":"-97.7016525","location_name":" RUNDBERG LN / COLLINFIELD DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" RUNDBERG LN","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV475.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-06-08T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-007015","camera_id":"48","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5166040","comm_status_datetime_utc":"2018-10-09T23:07:00.000","council_district":"2","cross_st":" BURLESON RD","cross_st_block":"10300","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.659321,30.167316]},"location_latitude":"30.167316","location_longitude":"-97.659321","location_name":"FM 973 RD / BURLESON RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"FM 973 RD","primary_st_block":"6210","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV48.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-003590","camera_id":"473","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159686","comm_status_datetime_utc":"2018-12-12T03:30:00.000","council_district":"4","cross_st":" RUNDBERG LN","cross_st_block":"2101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7197266,30.3751812]},"location_latitude":"30.3751812","location_longitude":"-97.7197266","location_name":" METRIC BLVD / RUNDBERG LN","location_type":"ROADWAY","modified_date":"2018-12-12T03:40:00.000","primary_st":" METRIC BLVD","primary_st_block":"9310","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV473.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3439","atd_location_id":"LOC16-002410","camera_id":"476","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5162565","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" GEORGIAN DR","cross_st_block":"9100","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6934052,30.3608303]},"location_latitude":"30.3608303","location_longitude":"-97.6934052","location_name":" RUNDBERG LN / GEORGIAN DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" RUNDBERG LN","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV476.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-05-31T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-006915","camera_id":"49","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-07-02T03:30:00.000","council_district":"10","cross_st":" ","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"BULL CREEK LOW WATER XING","location":{"type":"Point","coordinates":[-97.787368,30.366129]},"location_latitude":"30.366129","location_longitude":"-97.787368","location_name":"6600 BLK LAKEWOOD DR (BULL CREEK LOW WATER XING)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAKEWOOD DR","primary_st_block":"6600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV49.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1563","atd_location_id":"LOC16-000865","camera_id":"492","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5162956","comm_status_datetime_utc":"2018-10-27T03:30:00.000","council_district":"3","cross_st":" LEVANDER LOOP","cross_st_block":"7400","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.692543,30.2537231]},"location_latitude":"30.2537231","location_longitude":"-97.692543","location_name":" AIRPORT BLVD / LEVANDER LOOP","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"750","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV492.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-05-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"4",":@computed_region_qwte_z96m":"3447","atd_location_id":"LOC16-001975","camera_id":"499","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5152189","comm_status_datetime_utc":"2018-09-06T03:30:00.000","council_district":"3,2","cross_st":" 1ST ST","cross_st_block":"5501","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7815247,30.2084713]},"location_latitude":"30.2084713","location_longitude":"-97.7815247","location_name":" STASSNEY LN / 1ST ST","location_type":"ROADWAY","modified_date":"2018-12-20T12:10:00.000","primary_st":" STASSNEY LN","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV499.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-06-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004600","camera_id":"482","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5153101","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" MESA DR","cross_st_block":"5700","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7696381,30.3413143]},"location_latitude":"30.3413143","location_longitude":"-97.7696381","location_name":"FM 2222 RD / MESA DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 2222 RD","primary_st_block":"4014","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV482.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-002395","camera_id":"498","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5162218","comm_status_datetime_utc":"2018-10-27T03:30:00.000","council_district":"9,1","cross_st":" BERKMAN DR","cross_st_block":"3700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6985397,30.2890873]},"location_latitude":"30.2890873","location_longitude":"-97.6985397","location_name":" MANOR RD / BERKMAN DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANOR RD","primary_st_block":"3500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV498.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-05-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004480","camera_id":"486","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148292","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" HATCH RD","cross_st_block":"3400","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8199234,30.4608479]},"location_latitude":"30.4608479","location_longitude":"-97.8199234","location_name":"FM 620 RD / HATCH RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"12108","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV486.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-01-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003085","camera_id":"488","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5149481","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" PECAN PARK BLVD","cross_st_block":"11000","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8039627,30.4659653]},"location_latitude":"30.4659653","location_longitude":"-97.8039627","location_name":"FM 620 RD / PECAN PARK BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"12700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV488.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-01-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3642",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003650","camera_id":"495","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5165757","comm_status_datetime_utc":"2018-09-07T03:30:00.000","council_district":"7","cross_st":" HARRIS RIDGE BLVD","cross_st_block":"12801","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6573715,30.4023132]},"location_latitude":"30.4023132","location_longitude":"-97.6573715","location_name":" PARMER LN / HARRIS RIDGE BLVD","location_type":"ROADWAY","modified_date":"2018-12-28T16:16:00.000","primary_st":" PARMER LN","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV495.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-06-22T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1404","atd_location_id":"LOC16-002510","camera_id":"504","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5162805","comm_status_datetime_utc":"2018-08-12T05:19:00.000","council_district":"4","cross_st":" MEADOWS DR","cross_st_block":"801","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.690773,30.3741302]},"location_latitude":"30.3741302","location_longitude":"-97.690773","location_name":" LAMAR BLVD / MEADOWS DR","location_type":"BUILDING","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"10508","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV504.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-06-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002210","camera_id":"509","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5156695","comm_status_datetime_utc":"2018-10-16T03:30:00.000","council_district":"10","cross_st":" MOPAC EXPY SVRD","cross_st_block":"8200","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7419205,30.3679314]},"location_latitude":"30.3679314","location_longitude":"-97.7419205","location_name":" STECK AVE / MOPAC EXPY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" STECK AVE","primary_st_block":"3451","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV509.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006905","camera_id":"51","camera_mfg":"Axis","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-09-21T03:30:00.000","council_district":"9","cross_st":" 2ND ST","cross_st_block":"101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"AUSTONIAN - SOUTHWEST","location":{"type":"Point","coordinates":[-97.744895,30.264593]},"location_latitude":"30.264593","location_longitude":"-97.744895","location_name":" CONGRESS AVE / 2ND ST (AUSTONIAN - SOUTHWEST)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV51.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-002605","camera_id":"511","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"BOWIE HIGH SCHOOL","location":{"type":"Point","coordinates":[-97.8568878,30.1891022]},"location_latitude":"30.1891022","location_longitude":"-97.8568878","location_name":"3901 BLK W SLAUGHTER LN (BOWIE HIGH SCHOOL)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"3901","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV511.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-09-29T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-002760","camera_id":"512","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5147070","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" WEST GATE BLVD","cross_st_block":"9801","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.841011,30.1792698]},"location_latitude":"30.1792698","location_longitude":"-97.841011","location_name":" SLAUGHTER LN / WEST GATE BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"2812","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV512.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-09-29T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-002105","camera_id":"513","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5151136","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" DITTMAR RD","cross_st_block":"622","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7926559,30.1838989]},"location_latitude":"30.1838989","location_longitude":"-97.7926559","location_name":" 1ST ST / DITTMAR RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 1ST ST","primary_st_block":"7500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV513.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-09-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-004930","camera_id":"517","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"BROKEN SPOKE","location":{"type":"Point","coordinates":[-97.7866669,30.2404709]},"location_latitude":"30.2404709","location_longitude":"-97.7866669","location_name":"3201 BLK S LAMAR BLVD (BROKEN SPOKE)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"3201","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV517.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003935","camera_id":"518","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5166036","comm_status_datetime_utc":"2018-11-11T03:30:00.000","council_district":"1","cross_st":" SPRINGDALE RD","cross_st_block":"8496","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.654752,30.329023]},"location_latitude":"30.329023","location_longitude":"-97.654752","location_name":"US 290 HWY SVRD / SPRINGDALE RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"US 290 HWY SVRD","primary_st_block":"9200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV518.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-07-19T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-004810","camera_id":"519","camera_status":"REMOVED","coa_intersection_id":"5166007","comm_status_datetime_utc":"2018-07-18T03:30:00.000","council_district":"1","cross_st":"US 290 HWY SVRD","cross_st_block":"8700","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6552582,30.3281689]},"location_latitude":"30.3281689","location_longitude":"-97.6552582","location_name":" SPRINGDALE RD / 290 HWY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SPRINGDALE RD","primary_st_block":"8108","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV519.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-07-20T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"3182","atd_location_id":"LOC16-006900","camera_id":"52","camera_mfg":"Axis","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-09-21T03:30:00.000","council_district":"9","cross_st":" 2ND ST","cross_st_block":"101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"AUSTONIAN - NORTHWEST","location":{"type":"Point","coordinates":[-97.744886,30.264923]},"location_latitude":"30.264923","location_longitude":"-97.744886","location_name":" CONGRESS AVE / 2ND ST (AUSTONIAN - NORTHWEST)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV52.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003725","camera_id":"505","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5159052","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" WATERFORD CENTRE BLVD","cross_st_block":"9234","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7254715,30.3773537]},"location_latitude":"30.3773537","location_longitude":"-97.7254715","location_name":" BURNET RD / WATERFORD CENTRE BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" BURNET RD","primary_st_block":"9300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV505.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2016-12-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-002180","camera_id":"521","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5155725","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" NORTHLAND DR","cross_st_block":"2801","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7491684,30.3346004]},"location_latitude":"30.3346004","location_longitude":"-97.7491684","location_name":" ALLANDALE RD / NORTHLAND DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" ALLANDALE RD","primary_st_block":"2609","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV521.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-25T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1",":@computed_region_qwte_z96m":"3447","atd_location_id":"LOC16-000955","camera_id":"522","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5150004","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" BERKELEY AVE","cross_st_block":"1901","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8048477,30.20858]},"location_latitude":"30.20858","location_longitude":"-97.8048477","location_name":" MANCHACA RD / BERKELEY AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"6374","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV522.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-07-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-003185","camera_id":"523","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5164505","comm_status_datetime_utc":"2018-06-05T03:30:00.000","council_district":"1","cross_st":" 51ST ST","cross_st_block":"3200","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6778107,30.2936001]},"location_latitude":"30.2936001","location_longitude":"-97.6778107","location_name":" SPRINGDALE RD / 51ST ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" SPRINGDALE RD","primary_st_block":"5200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV523.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-08-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-001860","camera_id":"524","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157654","comm_status_datetime_utc":"2018-08-25T03:30:00.000","council_district":"9","cross_st":" TRAVIS HEIGHTS BLVD","cross_st_block":"1101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7387695,30.2498417]},"location_latitude":"30.2498417","location_longitude":"-97.7387695","location_name":" RIVERSIDE DR / TRAVIS HEIGHTS BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RIVERSIDE DR","primary_st_block":"901","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV524.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-08-04T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"3258","atd_location_id":"LOC16-004370","camera_id":"525","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-08-14T11:17:00.000","council_district":"2","cross_st":" ","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","landmark":"TX Parks and Wildlife","location":{"type":"Point","coordinates":[-97.713356,30.1883583]},"location_latitude":"30.1883583","location_longitude":"-97.713356","location_name":"4601 BLK MC KINNEY FALLS PKWY (TX Parks and Wildlife)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MC KINNEY FALLS PKWY","primary_st_block":"4601","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV525.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-08-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001060","camera_id":"527","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5156240","comm_status_datetime_utc":"2018-11-16T03:35:00.000","council_district":"9","cross_st":" WEST AVE","cross_st_block":"1500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7472839,30.2791462]},"location_latitude":"30.2791462","location_longitude":"-97.7472839","location_name":" 15TH ST / WEST AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 15TH ST","primary_st_block":"700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV527.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001085","camera_id":"528","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5157084","comm_status_datetime_utc":"2018-03-21T08:30:00.000","council_district":"1,9","cross_st":" LAVACA ST","cross_st_block":"1500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7419281,30.2776051]},"location_latitude":"30.2776051","location_longitude":"-97.7419281","location_name":" 15TH ST / LAVACA ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 15TH ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV528.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-16T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"3258","atd_location_id":"LOC16-007255","camera_id":"535","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5163226","comm_status_datetime_utc":"2018-12-08T03:30:00.000","cross_st":"FM 812 RD","cross_st_block":"8600","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.69317091,30.1641817]},"location_latitude":"30.1641817","location_longitude":"-97.69317091","location_name":"US 183 HWY / 812 RD","location_type":"ROADWAY","modified_date":"2018-12-08T03:40:00.000","primary_st":"US 183 HWY","primary_st_block":"6500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV535.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-10-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002190","camera_id":"529","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5155170","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" WOOD HOLLOW DR","cross_st_block":"6700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7531357,30.3534126]},"location_latitude":"30.3534126","location_longitude":"-97.7531357","location_name":" FAR WEST BLVD / WOOD HOLLOW DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" FAR WEST BLVD","primary_st_block":"3436","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV529.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-08-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-006565","camera_id":"531","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5148631","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" MONARCH DR","cross_st_block":"2001","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8225865,30.1760006]},"location_latitude":"30.1760006","location_longitude":"-97.8225865","location_name":" MANCHACA RD / MONARCH DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"9429","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV531.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-08-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"1053","atd_location_id":"LOC16-000290","camera_id":"533","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158780","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" DUVAL ST","cross_st_block":"3800","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7297745,30.298708]},"location_latitude":"30.298708","location_longitude":"-97.7297745","location_name":" 38TH ST / DUVAL ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 38TH ST","primary_st_block":"402","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV533.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-29T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3247",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-002185","camera_id":"530","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5154721","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" HART LN","cross_st_block":"7000","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7566376,30.3551102]},"location_latitude":"30.3551102","location_longitude":"-97.7566376","location_name":" FAR WEST BLVD / HART LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" FAR WEST BLVD","primary_st_block":"3700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV530.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-08-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"8002",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC17-011365","camera_id":"537","camera_mfg":"Advidia","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"2","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"COTA TOWER ADVIDIA","location":{"type":"Point","coordinates":[-97.637593,30.134247]},"location_latitude":"30.134247","location_longitude":"-97.637593","location_name":"9143 BLK CIRCUIT OF THE AMERICAS BLVD (COTA TOWER ADVIDIA)","location_type":"BUILDING","modified_date":"2018-11-19T15:15:00.000","primary_st":" CIRCUIT OF THE AMERICAS BLVD","primary_st_block":"9143","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV537.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-10-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"1081","atd_location_id":"LOC16-000890","camera_id":"534","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5159980","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" AVENUE F ","cross_st_block":"5600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7185745,30.3219643]},"location_latitude":"30.3219643","location_longitude":"-97.7185745","location_name":" KOENIG LN / AVENUE F ","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" KOENIG LN","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV534.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-08-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001125","camera_id":"539","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155155","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" SANDRA MURAIDA WAY","cross_st_block":"100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7555389,30.2664337]},"location_latitude":"30.2664337","location_longitude":"-97.7555389","location_name":" CESAR CHAVEZ ST / SANDRA MURAIDA WAY","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"914","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV539.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-11-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-006890","camera_id":"54","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-09-21T03:30:00.000","council_district":"5","cross_st":" JESSIE ST","cross_st_block":"301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"ATD TOOMEY PARKING LOT","location":{"type":"Point","coordinates":[-97.758894,30.263474]},"location_latitude":"30.263474","location_longitude":"-97.758894","location_name":" TOOMEY RD / JESSIE ST (ATD TOOMEY PARKING LOT)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" TOOMEY RD","primary_st_block":"1500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV54.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1599","atd_location_id":"LOC16-007170","camera_id":"542","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161516","comm_status_datetime_utc":"2018-08-15T03:30:00.000","council_district":"3","cross_st":" FAIRWAY ST","cross_st_block":"5900","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Ruiz Library","location":{"type":"Point","coordinates":[-97.706307,30.230108]},"location_latitude":"30.230108","location_longitude":"-97.706307","location_name":" GROVE BLVD / FAIRWAY ST (Ruiz Library)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GROVE BLVD","primary_st_block":"1600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV542.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-01-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3239",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-003345","camera_id":"548","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5162129","comm_status_datetime_utc":"2019-01-04T03:35:00.000","council_district":"9,4","cross_st":" BERKMAN DR","cross_st_block":"5100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6988754,30.3039074]},"location_latitude":"30.3039074","location_longitude":"-97.6988754","location_name":" 51ST ST / BERKMAN DR","location_type":"ROADWAY","modified_date":"2019-01-04T03:45:00.000","primary_st":" 51ST ST","primary_st_block":"1700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV548.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"566","atd_location_id":"LOC16-004820","camera_id":"546","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5160419","comm_status_datetime_utc":"2018-03-10T09:30:00.000","council_district":"1","cross_st":" CHESTNUT AVE","cross_st_block":"1200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7159805,30.2743607]},"location_latitude":"30.2743607","location_longitude":"-97.7159805","location_name":" 12TH ST / CHESTNUT AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 12TH ST","primary_st_block":"2300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV546.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"566","atd_location_id":"LOC16-001815","camera_id":"547","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5159977","comm_status_datetime_utc":"2018-03-10T09:30:00.000","council_district":"1","cross_st":" CHICON ST","cross_st_block":"1200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7199097,30.2737865]},"location_latitude":"30.2737865","location_longitude":"-97.7199097","location_name":" 12TH ST / CHICON ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 12TH ST","primary_st_block":"1900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV547.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-03-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"2863",":@computed_region_q9nd_rr82":"4",":@computed_region_qwte_z96m":"3619","atd_location_id":"LOC16-005240","camera_id":"55","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5166703","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" PEARCE LN","cross_st_block":"10800","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.64674967,30.18069517]},"location_latitude":"30.18069517","location_longitude":"-97.64674967","location_name":"FM 973 RD / PEARCE LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"FM 973 RD","primary_st_block":"4700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV55.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000640","camera_id":"550","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5154418","comm_status_datetime_utc":"2018-06-07T03:30:00.000","council_district":"5","cross_st":" KINNEY AVE","cross_st_block":"501","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.761467,30.261982]},"location_latitude":"30.261982","location_longitude":"-97.761467","location_name":" BARTON SPRINGS RD / KINNEY AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"1501","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV550.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-04T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-001165","camera_id":"551","camera_status":"DESIRED","coa_intersection_id":"5154367","comm_status_datetime_utc":"2018-03-13T08:30:00.000","council_district":"10","cross_st":" WINSTED LN","cross_st_block":"2400","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Mopac / Loop 1","location":{"type":"Point","coordinates":[-97.760994,30.2925949]},"location_latitude":"30.2925949","location_longitude":"-97.760994","location_name":" WINDSOR RD / WINSTED LN (Mopac / Loop 1)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WINDSOR RD","primary_st_block":"2708","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV551.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-003710","camera_id":"552","camera_status":"DESIRED","coa_intersection_id":"5153874","comm_status_datetime_utc":"2018-03-13T08:30:00.000","council_district":"10","cross_st":" WESTOVER RD","cross_st_block":"2601","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7643051,30.3030338]},"location_latitude":"30.3030338","location_longitude":"-97.7643051","location_name":" EXPOSITION BLVD / WESTOVER RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" EXPOSITION BLVD","primary_st_block":"2612","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV552.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001160","camera_id":"553","camera_status":"DESIRED","coa_intersection_id":"5154660","comm_status_datetime_utc":"2018-03-13T08:30:00.000","council_district":"9","cross_st":" HARTFORD RD","cross_st_block":"2300","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Mopac / Loop 1","location":{"type":"Point","coordinates":[-97.7588196,30.2916527]},"location_latitude":"30.2916527","location_longitude":"-97.7588196","location_name":" WINDSOR RD / HARTFORD RD (Mopac / Loop 1)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WINDSOR RD","primary_st_block":"2600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV553.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-004310","camera_id":"554","camera_status":"VOID","coa_intersection_id":"5149237","comm_status_datetime_utc":"2018-03-16T08:30:00.000","council_district":"8","cross_st":" WALSH TARLTON LN","cross_st_block":"2715","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8122482,30.2579861]},"location_latitude":"30.2579861","location_longitude":"-97.8122482","location_name":" CAPITAL OF TEXAS HWY / WALSH TARLTON LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"2430","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV554.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001200","camera_id":"555","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156737","comm_status_datetime_utc":"2018-05-26T03:30:00.000","council_district":"9","cross_st":" GUADALUPE ST","cross_st_block":"1200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7441254,30.2748528]},"location_latitude":"30.2748528","location_longitude":"-97.7441254","location_name":" 12TH ST / GUADALUPE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 12TH ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV555.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-05-24T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-001215","camera_id":"545","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158165","comm_status_datetime_utc":"2018-12-29T03:35:00.000","council_district":"1","cross_st":" RED RIVER ST","cross_st_block":"1100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7350464,30.2723198]},"location_latitude":"30.2723198","location_longitude":"-97.7350464","location_name":" 12TH ST / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-12-29T03:46:00.000","primary_st":" 12TH ST","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV545.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-01-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003440","camera_id":"232","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155327","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10","cross_st":" JOLLYVILLE RD","cross_st_block":"11616","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7500381,30.4172859]},"location_latitude":"30.4172859","location_longitude":"-97.7500381","location_name":" DUVAL RD / JOLLYVILLE RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" DUVAL RD","primary_st_block":"5600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV232.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-007155","camera_id":"558","camera_mfg":"Advidia","camera_status":"REMOVED","comm_status_datetime_utc":"2018-06-01T03:30:00.000","council_district":"10","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Hearn / UT Graduate Student Housing","location":{"type":"Point","coordinates":[-97.774177,30.279402]},"location_latitude":"30.279402","location_longitude":"-97.774177","location_name":"2500 BLK LAKE AUSTIN BLVD (Hearn / UT Graduate Student Housing)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAKE AUSTIN BLVD","primary_st_block":"2500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV558.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-05-31T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001380","camera_id":"559","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156869","comm_status_datetime_utc":"2018-07-11T03:30:00.000","council_district":"9","cross_st":" COLORADO ST","cross_st_block":"800","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7434158,30.2702675]},"location_latitude":"30.2702675","location_longitude":"-97.7434158","location_name":" 8TH ST / COLORADO ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 8TH ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV559.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-10T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001080","camera_id":"56","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156901","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" 15TH ST","cross_st_block":"300","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.743,30.2779]},"location_latitude":"30.2779","location_longitude":"-97.743","location_name":" GUADALUPE ST / 15TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GUADALUPE ST","primary_st_block":"1500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV56.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001335","camera_id":"560","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156915","comm_status_datetime_utc":"2018-07-11T03:30:00.000","council_district":"9","cross_st":" 9TH ST","cross_st_block":"201","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7430573,30.271244]},"location_latitude":"30.271244","location_longitude":"-97.7430573","location_name":" COLORADO ST / 9TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" COLORADO ST","primary_st_block":"900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV560.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-10T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"9","atd_location_id":"LOC16-004515","camera_id":"544","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5163816","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,4","cross_st":" RUTHERFORD LN","cross_st_block":"1300","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6832428,30.337326]},"location_latitude":"30.337326","location_longitude":"-97.6832428","location_name":" CAMERON RD / RUTHERFORD LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" CAMERON RD","primary_st_block":"8112","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV544.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-02-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-002500","camera_id":"543","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5144578","comm_status_datetime_utc":"2018-12-19T03:35:00.000","council_district":"8","cross_st":" BECKETT RD","cross_st_block":"9301","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8708801,30.2009087]},"location_latitude":"30.2009087","location_longitude":"-97.8708801","location_name":" SLAUGHTER LN / BECKETT RD","location_type":"ROADWAY","modified_date":"2018-12-19T03:45:00.000","primary_st":" SLAUGHTER LN","primary_st_block":"5701","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV543.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-02-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001530","camera_id":"562","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156720","comm_status_datetime_utc":"2018-07-11T03:30:00.000","council_district":"9","cross_st":" COLORADO ST","cross_st_block":"500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7444687,30.267477]},"location_latitude":"30.267477","location_longitude":"-97.7444687","location_name":" 5TH ST / COLORADO ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV562.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-10T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-001870","camera_id":"570","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157921","comm_status_datetime_utc":"2018-12-12T03:30:00.000","council_district":"9","cross_st":" WOODLAND AVE","cross_st_block":"1200","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7373962,30.2410469]},"location_latitude":"30.2410469","location_longitude":"-97.7373962","location_name":"IH 35 SVRD / WOODLAND AVE","location_type":"ROADWAY","modified_date":"2018-12-12T03:40:00.000","primary_st":"IH 35 SVRD","primary_st_block":"1600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV570.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-10-17T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001355","camera_id":"565","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156523","comm_status_datetime_utc":"2018-07-20T03:30:00.000","council_district":"9","cross_st":" COLORADO ST","cross_st_block":"100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7458572,30.2637615]},"location_latitude":"30.2637615","location_longitude":"-97.7458572","location_name":" CESAR CHAVEZ ST / COLORADO ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV565.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-19T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-003660","camera_id":"566","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156624","comm_status_datetime_utc":"2018-07-26T03:30:00.000","council_district":"9","cross_st":" 3RD ST","cross_st_block":"201","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7451553,30.2656021]},"location_latitude":"30.2656021","location_longitude":"-97.7451553","location_name":" COLORADO ST / 3RD ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" COLORADO ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV566.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-11T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001280","camera_id":"567","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156970","comm_status_datetime_utc":"2018-07-26T03:30:00.000","council_district":"1,9","cross_st":" 10TH ST","cross_st_block":"201","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7427444,30.2721729]},"location_latitude":"30.2721729","location_longitude":"-97.7427444","location_name":" COLORADO ST / 10TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" COLORADO ST","primary_st_block":"900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV567.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-25T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3256",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-002705","camera_id":"568","camera_status":"DESIRED","coa_intersection_id":"5162726","comm_status_datetime_utc":"2018-08-04T03:30:00.000","council_district":"3","cross_st":" MONTOPOLIS DR","cross_st_block":"615","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6952896,30.2375507]},"location_latitude":"30.2375507","location_longitude":"-97.6952896","location_name":" PONCA ST / MONTOPOLIS DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PONCA ST","primary_st_block":"6206","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV568.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-004360","camera_id":"569","camera_status":"DESIRED","coa_intersection_id":"5147818","comm_status_datetime_utc":"2018-08-04T03:30:00.000","council_district":"5","cross_st":" RAVENSCROFT DR","cross_st_block":"1801","funding":"None Identified","ip_comm_status":"NO COMMUNICATION","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8333054,30.1571236]},"location_latitude":"30.1571236","location_longitude":"-97.8333054","location_name":" MANCHACA RD / RAVENSCROFT DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"11119","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV569.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000005","camera_id":"57","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158418","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"9","cross_st":" LAMAR BLVD","cross_st_block":"4701","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7322464,30.3166466]},"location_latitude":"30.3166466","location_longitude":"-97.7322464","location_name":" GUADALUPE ST / LAMAR BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" GUADALUPE ST","primary_st_block":"4700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV57.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"2133","atd_location_id":"LOC16-004545","camera_id":"571","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5164399","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,4","cross_st":" FERGUSON LN","cross_st_block":"1400","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6774902,30.3458042]},"location_latitude":"30.3458042","location_longitude":"-97.6774902","location_name":" CAMERON RD / FERGUSON LN","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" CAMERON RD","primary_st_block":"8700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV571.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-11-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001625","camera_id":"6","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156460","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" 3RD ST","cross_st_block":"301","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7462463,30.2659302]},"location_latitude":"30.2659302","location_longitude":"-97.7462463","location_name":" LAVACA ST / 3RD ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAVACA ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV6.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2016-08-10T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3341","atd_location_id":"LOC16-000080","camera_id":"60","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160231","comm_status_datetime_utc":"2018-06-22T03:30:00.000","council_district":"4","cross_st":" DENSON DR","cross_st_block":"101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7160797,30.3270321]},"location_latitude":"30.3270321","location_longitude":"-97.7160797","location_name":" AIRPORT BLVD / DENSON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" AIRPORT BLVD","primary_st_block":"6200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV60.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000110","camera_id":"61","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157068","comm_status_datetime_utc":"2018-02-21T09:30:00.000","council_district":"9","cross_st":" MARTIN LUTHER KING JR BLVD","cross_st_block":"401","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7419281,30.2817326]},"location_latitude":"30.2817326","location_longitude":"-97.7419281","location_name":" GUADALUPE ST / MARTIN LUTHER KING JR BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GUADALUPE ST","primary_st_block":"1900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV61.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC17-010385","camera_id":"62","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157068","comm_status_datetime_utc":"2018-11-16T03:35:00.000","council_district":"9","cross_st":" ","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"NW Corner","location":{"type":"Point","coordinates":[-97.742011,30.281803]},"location_latitude":"30.281803","location_longitude":"-97.742011","location_name":"BLK (NW Corner)","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV62.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-06-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000115","camera_id":"63","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157273","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" MARTIN LUTHER KING JR BLVD","cross_st_block":"301","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.740509,30.2813282]},"location_latitude":"30.2813282","location_longitude":"-97.740509","location_name":" LAVACA ST / MARTIN LUTHER KING JR BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAVACA ST","primary_st_block":"1800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV63.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-000120","camera_id":"64","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157629","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"1,9","cross_st":" CONGRESS AVE","cross_st_block":"1800","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7381058,30.2806873]},"location_latitude":"30.2806873","location_longitude":"-97.7381058","location_name":" MARTIN LUTHER KING JR BLVD / CONGRESS AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV64.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-10-09T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-000130","camera_id":"65","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158219","comm_status_datetime_utc":"2018-06-05T03:30:00.000","council_district":"1","cross_st":" TRINITY ST","cross_st_block":"1900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7345123,30.2796383]},"location_latitude":"30.2796383","location_longitude":"-97.7345123","location_name":" MARTIN LUTHER KING JR BLVD / TRINITY ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"312","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV65.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-004685","camera_id":"561","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156665","comm_status_datetime_utc":"2018-12-19T03:35:00.000","council_district":"9","cross_st":" 4TH ST","cross_st_block":"201","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.744812,30.2665691]},"location_latitude":"30.2665691","location_longitude":"-97.744812","location_name":" COLORADO ST / 4TH ST","location_type":"ROADWAY","modified_date":"2018-12-19T03:45:00.000","primary_st":" COLORADO ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV561.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-10T00:00:00.000"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-000135","camera_id":"66","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158551","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"1","cross_st":" RED RIVER ST","cross_st_block":"1900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.732193,30.2789745]},"location_latitude":"30.2789745","location_longitude":"-97.732193","location_name":" MARTIN LUTHER KING JR BLVD / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV66.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-000170","camera_id":"67","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158756","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"1","cross_st":"IH 35 SVRD","cross_st_block":"1900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.730484,30.2785587]},"location_latitude":"30.2785587","location_longitude":"-97.730484","location_name":" MARTIN LUTHER KING JR BLVD / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV67.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000180","camera_id":"68","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157063","comm_status_datetime_utc":"2018-03-21T08:30:00.000","council_district":"9","cross_st":" 21ST ST","cross_st_block":"401","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7419052,30.2837963]},"location_latitude":"30.2837963","location_longitude":"-97.7419052","location_name":" GUADALUPE ST / 21ST ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GUADALUPE ST","primary_st_block":"2100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV68.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2861",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000195","camera_id":"69","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157100","comm_status_datetime_utc":"2018-04-18T03:30:00.000","council_district":"9","cross_st":" 24TH ST","cross_st_block":"401","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7415466,30.2877197]},"location_latitude":"30.2877197","location_longitude":"-97.7415466","location_name":" GUADALUPE ST / 24TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GUADALUPE ST","primary_st_block":"2400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV69.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_a3it_2a2z":"8002","atd_location_id":"LOC16-000500","camera_id":"7","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5168571","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"2","cross_st":" KELLAM RD","cross_st_block":"6001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.611196,30.163688]},"location_latitude":"30.163688","location_longitude":"-97.611196","location_name":" PEARCE LN / KELLAM RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" PEARCE LN","primary_st_block":"13400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV7.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2016-10-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2861",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000200","camera_id":"70","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157120","comm_status_datetime_utc":"2018-04-18T03:30:00.000","council_district":"9","cross_st":" GUADALUPE ST","cross_st_block":"2520","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7413559,30.289814]},"location_latitude":"30.289814","location_longitude":"-97.7413559","location_name":" DEAN KEETON ST / GUADALUPE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV70.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"3600","atd_location_id":"LOC16-000235","camera_id":"71","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157521","comm_status_datetime_utc":"2018-05-30T03:30:00.000","council_district":"9","cross_st":" GUADALUPE ST","cross_st_block":"3800","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7381439,30.302742]},"location_latitude":"30.302742","location_longitude":"-97.7381439","location_name":" 38TH ST / GUADALUPE ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 38TH ST","primary_st_block":"600","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV71.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"3600","atd_location_id":"LOC16-000245","camera_id":"72","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158333","comm_status_datetime_utc":"2018-03-24T08:30:00.000","council_district":"9","cross_st":" 45TH ST","cross_st_block":"501","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7329788,30.3108425]},"location_latitude":"30.3108425","location_longitude":"-97.7329788","location_name":" GUADALUPE ST / 45TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" GUADALUPE ST","primary_st_block":"4482","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV72.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2857",":@computed_region_q9nd_rr82":"8",":@computed_region_qwte_z96m":"1169","atd_location_id":"LOC16-000255","camera_id":"73","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5160241","comm_status_datetime_utc":"2018-10-25T03:30:00.000","council_district":"1","cross_st":" CHESTNUT AVE","cross_st_block":"1900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7172699,30.2804375]},"location_latitude":"30.2804375","location_longitude":"-97.7172699","location_name":" MARTIN LUTHER KING JR BLVD / CHESTNUT AVE","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MARTIN LUTHER KING JR BLVD","primary_st_block":"2300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV73.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2861",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000265","camera_id":"74","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158159","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"9","cross_st":" SAN JACINTO BLVD","cross_st_block":"2600","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7346115,30.2893162]},"location_latitude":"30.2893162","location_longitude":"-97.7346115","location_name":" DEAN KEETON ST / SAN JACINTO BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV74.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000315","camera_id":"75","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159923","comm_status_datetime_utc":"2018-09-13T03:30:00.000","council_district":"9","cross_st":"IH 35 SVRD","cross_st_block":"3820","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7197723,30.294981]},"location_latitude":"30.294981","location_longitude":"-97.7197723","location_name":" 38TH HALF ST / 35 SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 38TH HALF ST","primary_st_block":"1014","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV75.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-000345","camera_id":"78","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159198","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"1,9","cross_st":" RED RIVER ST","cross_st_block":"2200","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7267456,30.2871666]},"location_latitude":"30.2871666","location_longitude":"-97.7267456","location_name":" DEAN KEETON ST / RED RIVER ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" DEAN KEETON ST","primary_st_block":"928","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV78.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"1",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-000350","camera_id":"79","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159062","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"1","cross_st":" CLYDE LITTLEFIELD DR","cross_st_block":"700","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7279663,30.2832279]},"location_latitude":"30.2832279","location_longitude":"-97.7279663","location_name":" RED RIVER ST / CLYDE LITTLEFIELD DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RED RIVER ST","primary_st_block":"2000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV79.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-03T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-002050","camera_id":"8","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5149106","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" WILLIAM CANNON DR","cross_st_block":"2700","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8153915,30.207201]},"location_latitude":"30.207201","location_longitude":"-97.8153915","location_name":" WEST GATE BLVD / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" WEST GATE BLVD","primary_st_block":"6900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV8.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-000510","camera_id":"89","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156777","comm_status_datetime_utc":"2018-04-15T03:30:00.000","council_district":"10,9","cross_st":" LAMAR BLVD","cross_st_block":"3800","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7430496,30.3051968]},"location_latitude":"30.3051968","location_longitude":"-97.7430496","location_name":" 38TH ST / LAMAR BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 38TH ST","primary_st_block":"1000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV89.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3638",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-002065","camera_id":"9","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5144930","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"8","cross_st":" WILLIAM CANNON DR","cross_st_block":"5901","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8645477,30.2299938]},"location_latitude":"30.2299938","location_longitude":"-97.8645477","location_name":" ESCARPMENT BLVD / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ESCARPMENT BLVD","primary_st_block":"6900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV9.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-11-16T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000385","camera_id":"80","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158455","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" BURNET RD","cross_st_block":"7900","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.730896,30.3561535]},"location_latitude":"30.3561535","location_longitude":"-97.730896","location_name":" ANDERSON LN / BURNET RD","location_type":"ROADWAY","modified_date":"2019-01-01T03:45:00.000","primary_st":" ANDERSON LN","primary_st_block":"2300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV80.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-000415","camera_id":"82","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157162","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" BURNET RD","cross_st_block":"5900","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"KOENIG LN","location":{"type":"Point","coordinates":[-97.7398224,30.3348522]},"location_latitude":"30.3348522","location_longitude":"-97.7398224","location_name":" ALLANDALE RD / BURNET RD (KOENIG LN)","location_type":"BUILDING","modified_date":"2019-01-01T03:45:00.000","primary_st":" ALLANDALE RD","primary_st_block":"2100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV82.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000525","camera_id":"90","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155961","comm_status_datetime_utc":"2018-04-15T03:30:00.000","council_district":"10,9","cross_st":" 29TH ST","cross_st_block":"1001","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7484741,30.2981358]},"location_latitude":"30.2981358","location_longitude":"-97.7484741","location_name":" LAMAR BLVD / 29TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"2900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV90.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"952","atd_location_id":"LOC16-000535","camera_id":"92","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155404","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"9","cross_st":" 24TH ST","cross_st_block":"1301","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7527695,30.2885342]},"location_latitude":"30.2885342","location_longitude":"-97.7527695","location_name":" LAMAR BLVD / 24TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"2300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV92.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000545","camera_id":"93","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155501","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"9","cross_st":" MARTIN LUTHER KING JR BLVD","cross_st_block":"1109","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7520752,30.2836018]},"location_latitude":"30.2836018","location_longitude":"-97.7520752","location_name":" LAMAR BLVD / MARTIN LUTHER KING JR BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"1900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV93.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000575","camera_id":"94","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155626","comm_status_datetime_utc":"2018-06-27T03:30:00.000","council_district":"9","cross_st":" 12TH ST","cross_st_block":"1001","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7513962,30.2768974]},"location_latitude":"30.2768974","location_longitude":"-97.7513962","location_name":" LAMAR BLVD / 12TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV94.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"442","atd_location_id":"LOC16-000585","camera_id":"95","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155322","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" LAMAR BLVD","cross_st_block":"500","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7539673,30.2715378]},"location_latitude":"30.2715378","location_longitude":"-97.7539673","location_name":" 6TH ST / LAMAR BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 6TH ST","primary_st_block":"900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV95.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000590","camera_id":"96","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5155253","comm_status_datetime_utc":"2018-02-23T09:30:00.000","council_district":"9","cross_st":" LAMAR BLVD","cross_st_block":"500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7546005,30.2702904]},"location_latitude":"30.2702904","location_longitude":"-97.7546005","location_name":" 5TH ST / LAMAR BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 5TH ST","primary_st_block":"926","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV96.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-09-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000610","camera_id":"98","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153332","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" OLTORF ST","cross_st_block":"1401","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7699509,30.2484131]},"location_latitude":"30.2484131","location_longitude":"-97.7699509","location_name":" LAMAR BLVD / OLTORF ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"2059","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV98.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000615","camera_id":"99","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5152555","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" BLUEBONNET LN","cross_st_block":"2401","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7771835,30.2469234]},"location_latitude":"30.2469234","location_longitude":"-97.7771835","location_name":" LAMAR BLVD / BLUEBONNET LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"2261","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV99.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3245",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004275","camera_id":"389","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5152043","comm_status_datetime_utc":"2018-11-20T03:30:00.000","council_district":"6","cross_st":" BROADMEADE AVE","cross_st_block":"12800","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Turtle Rock Dr","location":{"type":"Point","coordinates":[-97.7763901,30.4531956]},"location_latitude":"30.4531956","location_longitude":"-97.7763901","location_name":" ANDERSON MILL RD / BROADMEADE AVE (Turtle Rock Dr)","location_type":"ROADWAY","modified_date":"2018-11-20T03:40:00.000","primary_st":" ANDERSON MILL RD","primary_st_block":"8906","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV389.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-21T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3251",":@computed_region_q9nd_rr82":"2",":@computed_region_qwte_z96m":"3764","atd_location_id":"LOC16-003030","camera_id":"365","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5147638","comm_status_datetime_utc":"2018-12-22T03:30:00.000","council_district":"8","cross_st":" BOSTON LN","cross_st_block":"4501","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8332901,30.2401161]},"location_latitude":"30.2401161","location_longitude":"-97.8332901","location_name":" SOUTHWEST PKWY / BOSTON LN","location_type":"ROADWAY","modified_date":"2018-12-22T03:40:00.000","primary_st":" SOUTHWEST PKWY","primary_st_block":"4501","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV365.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-21T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"8002","atd_location_id":"LOC16-007035","camera_id":"536","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2019-01-04T03:30:00.000","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","landmark":"South of Elroy Rd","location":{"type":"Point","coordinates":[-97.64924705,30.1440611]},"location_latitude":"30.1440611","location_longitude":"-97.64924705","location_name":"11406 BLK MC ANGUS RD (South of Elroy Rd)","location_type":"ROADWAY","modified_date":"2019-01-04T03:40:00.000","primary_st":" MC ANGUS RD","primary_st_block":"11406","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV536.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-10-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3255",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-003840","camera_id":"556","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5144465","comm_status_datetime_utc":"2019-01-04T03:30:00.000","council_district":"8","cross_st":" LA CROSSE AVE","cross_st_block":"5101","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8732529,30.1904659]},"location_latitude":"30.1904659","location_longitude":"-97.8732529","location_name":" MOPAC EXPY / LA CROSSE AVE","location_type":"ROADWAY","modified_date":"2019-01-04T03:40:00.000","primary_st":" MOPAC EXPY","primary_st_block":"10217","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV556.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-05-30T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"3248","atd_location_id":"LOC16-004500","camera_id":"493","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5143802","comm_status_datetime_utc":"2018-12-12T03:30:00.000","cross_st":" STEINER RANCH BLVD","cross_st_block":"4000","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.8848572,30.3775234]},"location_latitude":"30.3775234","location_longitude":"-97.8848572","location_name":" QUINLAN PARK RD / STEINER RANCH BLVD","location_type":"ROADWAY","modified_date":"2018-12-12T03:40:00.000","primary_st":" QUINLAN PARK RD","primary_st_block":"4000","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV493.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-06-05T00:00:00.000"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3646",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"3851","atd_location_id":"LOC16-002355","camera_id":"474","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5161164","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":" PARKFIELD DR","cross_st_block":"9300","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7062454,30.3674049]},"location_latitude":"30.3674049","location_longitude":"-97.7062454","location_name":" RUNDBERG LN / PARKFIELD DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" RUNDBERG LN","primary_st_block":"1200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV474.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-03-14T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000765","camera_id":"540","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156415","comm_status_datetime_utc":"2018-11-22T03:35:00.000","council_district":"9","cross_st":" 2ND ST","cross_st_block":"201","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7465897,30.2649975]},"location_latitude":"30.2649975","location_longitude":"-97.7465897","location_name":" LAVACA ST / 2ND ST","location_type":"ROADWAY","modified_date":"2018-11-22T03:45:00.000","primary_st":" LAVACA ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV540.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-01-04T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000760","camera_id":"108","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5156234","comm_status_datetime_utc":"2018-11-26T03:35:00.000","council_district":"9","cross_st":" 2ND ST","cross_st_block":"401","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.747673,30.2652874]},"location_latitude":"30.2652874","location_longitude":"-97.747673","location_name":" GUADALUPE ST / 2ND ST","location_type":"ROADWAY","modified_date":"2018-11-26T03:45:00.000","primary_st":" GUADALUPE ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV108.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-09-27T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001595","camera_id":"563","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156573","comm_status_datetime_utc":"2018-11-26T03:35:00.000","council_district":"9","cross_st":" 2ND ST","cross_st_block":"201","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7455139,30.2646828]},"location_latitude":"30.2646828","location_longitude":"-97.7455139","location_name":" COLORADO ST / 2ND ST","location_type":"ROADWAY","modified_date":"2018-11-26T03:45:00.000","primary_st":" COLORADO ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV563.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-11T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001425","camera_id":"564","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156810","comm_status_datetime_utc":"2018-11-26T03:35:00.000","council_district":"9","cross_st":" COLORADO ST","cross_st_block":"700","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7437744,30.2693481]},"location_latitude":"30.2693481","location_longitude":"-97.7437744","location_name":" 7TH ST / COLORADO ST","location_type":"ROADWAY","modified_date":"2018-11-26T03:45:00.000","primary_st":" 7TH ST","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV564.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-07-15T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-004185","camera_id":"266","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153292","comm_status_datetime_utc":"2019-01-04T03:35:00.000","council_district":"10","cross_st":" SPICEWOOD SPRINGS RD","cross_st_block":"5301","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"EAST - BLUFFSTONE DR ","location":{"type":"Point","coordinates":[-97.7667313,30.3850155]},"location_latitude":"30.3850155","location_longitude":"-97.7667313","location_name":" CAPITAL OF TEXAS HWY / SPICEWOOD SPRINGS RD (EAST - BLUFFSTONE DR )","location_type":"ROADWAY","modified_date":"2019-01-04T03:45:00.000","primary_st":" CAPITAL OF TEXAS HWY","primary_st_block":"8400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV266.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-000980","camera_id":"369","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5156706","comm_status_datetime_utc":"2018-12-22T03:35:00.000","council_district":"2","cross_st":" WILLIAM CANNON DR","cross_st_block":"5100","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7469025,30.1796741]},"location_latitude":"30.1796741","location_longitude":"-97.7469025","location_name":" PLEASANT VALLEY RD / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-12-22T03:45:00.000","primary_st":" PLEASANT VALLEY RD","primary_st_block":"6406","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV369.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-06-08T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-006960","camera_id":"38","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2018-12-22T03:35:00.000","council_district":"5","cross_st":" JESSIE ST","cross_st_block":"301","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"TOOMEY / JESSIE - BACK GATE","location":{"type":"Point","coordinates":[-97.75907,30.263071]},"location_latitude":"30.263071","location_longitude":"-97.75907","location_name":" TOOMEY RD / JESSIE ST (TOOMEY / JESSIE - BACK GATE)","location_type":"ROADWAY","modified_date":"2018-12-22T03:45:00.000","primary_st":" TOOMEY RD","primary_st_block":"1300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV38.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-000570","camera_id":"377","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5153190","comm_status_datetime_utc":"2019-01-04T03:30:00.000","council_district":"8","cross_st":" STRATFORD DR","cross_st_block":"2207","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.77088083,30.2671709]},"location_latitude":"30.2671709","location_longitude":"-97.77088083","location_name":" BARTON SPRINGS RD / STRATFORD DR","location_type":"ROADWAY","modified_date":"2019-01-04T03:40:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"2200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV377.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2017-10-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"2863",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-006885","camera_id":"538","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165986","comm_status_datetime_utc":"2018-11-28T03:30:00.000","council_district":"2","cross_st":" PRESIDENTIAL BLVD","cross_st_block":"2501","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"CARDINAL LOOP","location":{"type":"Point","coordinates":[-97.65884,30.21267]},"location_latitude":"30.21267","location_longitude":"-97.65884","location_name":"SH 71 SVRD / PRESIDENTIAL BLVD (CARDINAL LOOP)","location_type":"ROADWAY","modified_date":"2018-11-28T03:40:00.000","primary_st":"SH 71 SVRD","primary_st_block":"2432","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV538.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-10-18T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-005095","camera_id":"378","camera_mfg":"Advidia","camera_status":"TURNED_ON","comm_status_datetime_utc":"2019-01-04T03:30:00.000","council_district":"8","cross_st":" ","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"Zilker Park","location":{"type":"Point","coordinates":[-97.7681274,30.2660046]},"location_latitude":"30.2660046","location_longitude":"-97.7681274","location_name":"2100 BLK BARTON SPRINGS RD (Zilker Park)","location_type":"ROADWAY","modified_date":"2019-01-04T03:40:00.000","primary_st":" BARTON SPRINGS RD","primary_st_block":"2100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV378.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-06-06T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3260",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-005245","camera_id":"510","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5151862","comm_status_datetime_utc":"2018-11-30T03:35:00.000","council_district":"8","cross_st":" BEE CAVES RD","cross_st_block":"2500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.782313,30.265333]},"location_latitude":"30.265333","location_longitude":"-97.782313","location_name":" MOPAC EXPY SVRD / BEE CAVES RD","location_type":"BUILDING","modified_date":"2018-11-30T03:45:00.000","primary_st":" MOPAC EXPY SVRD","primary_st_block":"800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV510.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2016-09-22T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3245",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004585","camera_id":"388","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5153102","comm_status_datetime_utc":"2018-12-12T03:30:00.000","council_district":"6","cross_st":" MORRIS RD","cross_st_block":"13200","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.766571,30.4562817]},"location_latitude":"30.4562817","location_longitude":"-97.766571","location_name":" ANDERSON MILL RD / MORRIS RD","location_type":"ROADWAY","modified_date":"2018-12-12T03:40:00.000","primary_st":" ANDERSON MILL RD","primary_st_block":"8500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV388.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-06-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"2864",":@computed_region_q9nd_rr82":"3","atd_location_id":"LOC16-000800","camera_id":"404","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5163165","comm_status_datetime_utc":"2018-12-12T03:30:00.000","council_district":"3,1","cross_st":" OAK SPRINGS DR","cross_st_block":"3600","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6904221,30.2735615]},"location_latitude":"30.2735615","location_longitude":"-97.6904221","location_name":" SPRINGDALE RD / OAK SPRINGS DR","location_type":"ROADWAY","modified_date":"2018-12-12T03:40:00.000","primary_st":" SPRINGDALE RD","primary_st_block":"1100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV404.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003980","camera_id":"572","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5156003","comm_status_datetime_utc":"2018-12-27T03:35:00.000","council_district":"10,7","cross_st":" RESEARCH BLVD SVRD","cross_st_block":"10900","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7454987,30.4003582]},"location_latitude":"30.4003582","location_longitude":"-97.7454987","location_name":" BRAKER LN / RESEARCH BLVD SVRD","location_type":"ROADWAY","modified_date":"2019-01-03T17:21:00.000","primary_st":" BRAKER LN","primary_st_block":"4500","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV572.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-12-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-003630","camera_id":"4","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5153473","comm_status_datetime_utc":"2019-01-04T03:35:00.000","council_district":"10","cross_st":" PECOS ST","cross_st_block":"3400","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.76716,30.31354]},"location_latitude":"30.31354","location_longitude":"-97.76716","location_name":" 35TH ST / PECOS ST","location_type":"ROADWAY","modified_date":"2019-01-04T03:45:00.000","primary_st":" 35TH ST","primary_st_block":"3100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV4.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2016-11-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006895","camera_id":"53","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5157405","comm_status_datetime_utc":"2019-01-04T03:35:00.000","council_district":"9","cross_st":" TRINITY ST","cross_st_block":"400","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.739986,30.265235]},"location_latitude":"30.265235","location_longitude":"-97.739986","location_name":" 4TH ST / TRINITY ST","location_type":"ROADWAY","modified_date":"2019-01-04T03:45:00.000","primary_st":" 4TH ST","primary_st_block":"300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV53.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-02-27T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"3245","atd_location_id":"LOC16-003325","camera_id":"532","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5153506","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" AMBERGLEN BLVD","cross_st_block":"8801","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.7626419,30.4714336]},"location_latitude":"30.4714336","location_longitude":"-97.7626419","location_name":" PARMER LN / AMBERGLEN BLVD","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":" PARMER LN","primary_st_block":"8900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV532.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-07-29T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2856",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-006910","camera_id":"50","camera_mfg":"Axis","camera_status":"TURNED_ON","coa_intersection_id":"5256923","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"9","cross_st":" BRAZOS ST","cross_st_block":"100","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"BRAZOS GARAGE","location":{"type":"Point","coordinates":[-97.743067,30.263094]},"location_latitude":"30.263094","location_longitude":"-97.743067","location_name":" CESAR CHAVEZ ST / BRAZOS ST (BRAZOS GARAGE)","location_type":"ROADWAY","modified_date":"2018-12-19T14:11:00.000","primary_st":" CESAR CHAVEZ ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV50.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_8spj_utxs":"2",":@computed_region_a3it_2a2z":"3258",":@computed_region_q9nd_rr82":"4","atd_location_id":"LOC16-004130","camera_id":"422","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158068","comm_status_datetime_utc":"2018-12-22T03:35:00.000","council_district":"2","cross_st":" SALT SPRINGS DR","cross_st_block":"7101","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7383728,30.1690102]},"location_latitude":"30.1690102","location_longitude":"-97.7383728","location_name":" WILLIAM CANNON DR / SALT SPRINGS DR","location_type":"ROADWAY","modified_date":"2018-12-22T03:45:00.000","primary_st":" WILLIAM CANNON DR","primary_st_block":"6311","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV422.jpg","signal_eng_area":"SOUTHEAST","turn_on_date":"2017-06-07T00:00:00.000"}
,{":@computed_region_8spj_utxs":"7",":@computed_region_a3it_2a2z":"3645",":@computed_region_q9nd_rr82":"7","atd_location_id":"LOC16-003045","camera_id":"210","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5158961","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7","cross_st":" RESEARCH BLVD SVRD","cross_st_block":"9052","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7264786,30.3728848]},"location_latitude":"30.3728848","location_longitude":"-97.7264786","location_name":" BURNET RD / RESEARCH BLVD SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" BURNET RD","primary_st_block":"8927","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV210.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3643",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"2133","atd_location_id":"LOC16-004650","camera_id":"326","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5164317","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"1,4","cross_st":" CROSS PARK DR","cross_st_block":"8704","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.6783371,30.3439808]},"location_latitude":"30.3439808","location_longitude":"-97.6783371","location_name":" CAMERON RD / CROSS PARK DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" CAMERON RD","primary_st_block":"8700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV326.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2017-09-14T00:00:00.000"}
,{":@computed_region_8spj_utxs":"8",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"2","atd_location_id":"LOC16-003750","camera_id":"241","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5146913","comm_status_datetime_utc":"2018-08-01T03:30:00.000","council_district":"5,8","cross_st":" DAVIS LN","cross_st_block":"3301","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8422852,30.1953335]},"location_latitude":"30.1953335","location_longitude":"-97.8422852","location_name":" BRODIE LN / DAVIS LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" BRODIE LN","primary_st_block":"8900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV241.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3637",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000975","camera_id":"117","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148563","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" SLAUGHTER LN","cross_st_block":"2001","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8237305,30.1737366]},"location_latitude":"30.1737366","location_longitude":"-97.8237305","location_name":" MANCHACA RD / SLAUGHTER LN","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"9614","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV117.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-01-30T00:00:00.000"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000595","camera_id":"97","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5154958","comm_status_datetime_utc":"2018-12-23T03:35:00.000","council_district":"5","cross_st":" RIVERSIDE DR","cross_st_block":"1200","funding":"None Identified","ip_comm_status":"OFFLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.757103,30.2645245]},"location_latitude":"30.2645245","location_longitude":"-97.757103","location_name":" LAMAR BLVD / RIVERSIDE DR","location_type":"ROADWAY","modified_date":"2019-01-02T16:42:00.000","primary_st":" LAMAR BLVD","primary_st_block":"200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV97.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3644",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-001000","camera_id":"311","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5157046","comm_status_datetime_utc":"2018-06-13T03:30:00.000","council_district":"10,9","cross_st":" 40TH ST","cross_st_block":"1001","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7413864,30.3078613]},"location_latitude":"30.3078613","location_longitude":"-97.7413864","location_name":" LAMAR BLVD / 40TH ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" LAMAR BLVD","primary_st_block":"3912","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV311.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2018-06-12T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"5","atd_location_id":"LOC16-003975","camera_id":"254","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155883","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"7,10","cross_st":" RESEARCH BLVD SVRD","cross_st_block":"10826","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7462845,30.4005356]},"location_latitude":"30.4005356","location_longitude":"-97.7462845","location_name":" BRAKER LN / RESEARCH BLVD SVRD","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" BRAKER LN","primary_st_block":"4620","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV254.jpg","signal_eng_area":"NORTHWEST"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3639",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-004470","camera_id":"487","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5148947","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" DEERBROOK TRL","cross_st_block":"12324","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8106232,30.4638901]},"location_latitude":"30.4638901","location_longitude":"-97.8106232","location_name":"FM 620 RD / DEERBROOK TRL","location_type":"ROADWAY","modified_date":"2019-01-01T03:47:00.000","primary_st":"FM 620 RD","primary_st_block":"12400","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV487.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2018-01-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"3",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"3",":@computed_region_qwte_z96m":"1912","atd_location_id":"LOC16-004510","camera_id":"442","camera_mfg":"Advidia","camera_status":"TURNED_ON","coa_intersection_id":"5152507","comm_status_datetime_utc":"2018-03-14T08:30:00.000","council_district":"3","cross_st":" EMERALD WOOD DR","cross_st_block":"601","funding":"1/4 Cent","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.778511,30.2128639]},"location_latitude":"30.2128639","location_longitude":"-97.778511","location_name":" 1ST ST / EMERALD WOOD DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 1ST ST","primary_st_block":"4900","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV442.jpg","signal_eng_area":"SOUTHWEST","turn_on_date":"2018-03-13T00:00:00.000"}
,{":@computed_region_8spj_utxs":"10",":@computed_region_a3it_2a2z":"2858",":@computed_region_q9nd_rr82":"5",":@computed_region_qwte_z96m":"915","atd_location_id":"LOC16-003700","camera_id":"508","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5152981","comm_status_datetime_utc":"2018-07-20T03:30:00.000","council_district":"10","cross_st":" EXPOSITION BLVD","cross_st_block":"1500","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7720566,30.2905979]},"location_latitude":"30.2905979","location_longitude":"-97.7720566","location_name":" ENFIELD RD / EXPOSITION BLVD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" ENFIELD RD","primary_st_block":"2700","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV508.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2016-09-26T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2860",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"2420","atd_location_id":"LOC16-000285","camera_id":"526","camera_mfg":"Spectra Enhanced","camera_status":"TURNED_ON","coa_intersection_id":"5158290","comm_status_datetime_utc":"2018-01-08T21:32:00.000","council_district":"9","cross_st":" SPEEDWAY ","cross_st_block":"3800","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.733551,30.3005295]},"location_latitude":"30.3005295","location_longitude":"-97.733551","location_name":" 38TH ST / SPEEDWAY ","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" 38TH ST","primary_st_block":"100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV526.jpg","signal_eng_area":"CENTRAL","turn_on_date":"2017-08-15T00:00:00.000"}
,{":@computed_region_a3it_2a2z":"3240",":@computed_region_q9nd_rr82":"8","atd_location_id":"LOC16-004890","camera_id":"541","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5188386","comm_status_datetime_utc":"2018-10-30T14:52:00.000","council_district":"1","cross_st":"US 290 HWY SVRD","cross_st_block":"10017","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.5914612,30.3398151]},"location_latitude":"30.3398151","location_longitude":"-97.5914612","location_name":"SH 130 SVRD / 290 HWY SVRD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"SH 130 SVRD","primary_st_block":"11200","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV541.jpg","signal_eng_area":"NORTHEAST","turn_on_date":"2018-01-04T00:00:00.000"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"3640",":@computed_region_q9nd_rr82":"10","atd_location_id":"LOC16-000335","camera_id":"77","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5159542","comm_status_datetime_utc":"2018-01-08T21:31:00.000","council_district":"9","cross_st":" 38TH HALF ST","cross_st_block":"800","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7231445,30.2965431]},"location_latitude":"30.2965431","location_longitude":"-97.7231445","location_name":" RED RIVER ST / 38TH HALF ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" RED RIVER ST","primary_st_block":"3808","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV77.jpg","signal_eng_area":"CENTRAL"}
,{":@computed_region_a3it_2a2z":"2863","atd_location_id":"LOC16-007020","camera_id":"41","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5165411","comm_status_datetime_utc":"2018-11-09T03:35:00.000","council_district":"2","cross_st":"FM 812 RD","cross_st_block":"10000","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","location":{"type":"Point","coordinates":[-97.670519,30.15286]},"location_latitude":"30.15286","location_longitude":"-97.670519","location_name":"FM 973 RD / 812 RD","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":"FM 973 RD","primary_st_block":"7320","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV41.jpg","signal_eng_area":"SOUTHEAST"}
,{":@computed_region_8spj_utxs":"4",":@computed_region_a3it_2a2z":"3641",":@computed_region_q9nd_rr82":"9",":@computed_region_qwte_z96m":"202","atd_location_id":"LOC16-002895","camera_id":"204","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5161309","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"4","cross_st":"US 290 HWY SVRD","cross_st_block":"6100","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","landmark":"E Koenig LN","location":{"type":"Point","coordinates":[-97.7060852,30.3227043]},"location_latitude":"30.3227043","location_longitude":"-97.7060852","location_name":"IH 35 SVRD / 290 HWY SVRD (E Koenig LN)","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":"IH 35 SVRD","primary_st_block":"6100","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV204.jpg","signal_eng_area":"NORTHEAST"}
,{":@computed_region_8spj_utxs":"9",":@computed_region_a3it_2a2z":"2859",":@computed_region_q9nd_rr82":"10",":@computed_region_qwte_z96m":"981","atd_location_id":"LOC16-000710","camera_id":"104","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5155470","comm_status_datetime_utc":"2018-10-17T03:30:00.000","council_district":"3,9","cross_st":" OLTORF ST","cross_st_block":"101","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7535172,30.23876]},"location_latitude":"30.23876","location_longitude":"-97.7535172","location_name":" CONGRESS AVE / OLTORF ST","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" CONGRESS AVE","primary_st_block":"2300","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV104.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_8spj_utxs":"5",":@computed_region_a3it_2a2z":"3259",":@computed_region_q9nd_rr82":"1","atd_location_id":"LOC16-000960","camera_id":"116","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5149842","comm_status_datetime_utc":"2018-11-07T03:35:00.000","council_district":"5","cross_st":" WILLIAM CANNON DR","cross_st_block":"2000","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.8069077,30.2029133]},"location_latitude":"30.2029133","location_longitude":"-97.8069077","location_name":" MANCHACA RD / WILLIAM CANNON DR","location_type":"ROADWAY","modified_date":"2018-11-19T15:15:00.000","primary_st":" MANCHACA RD","primary_st_block":"6800","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV116.jpg","signal_eng_area":"SOUTHWEST"}
,{":@computed_region_a3it_2a2z":"3245","atd_location_id":"LOC16-003285","camera_id":"223","camera_mfg":"Sarix","camera_status":"TURNED_ON","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"6","cross_st":" ","funding":"None Identified","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN 2 MILE ETJ","landmark":"YMCA","location":{"type":"Point","coordinates":[-97.7342911,30.4463997]},"location_latitude":"30.4463997","location_longitude":"-97.7342911","location_name":"5701 BLK MC NEIL DR (YMCA)","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" MC NEIL DR","primary_st_block":"5701","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV223.jpg","signal_eng_area":"NORTHWEST","turn_on_date":"2017-08-11T00:00:00.000"}
,{":@computed_region_8spj_utxs":"6",":@computed_region_a3it_2a2z":"3647",":@computed_region_q9nd_rr82":"6","atd_location_id":"LOC16-003760","camera_id":"242","camera_mfg":"Sarix","camera_status":"TURNED_ON","coa_intersection_id":"5151420","comm_status_datetime_utc":"2019-01-01T03:35:00.000","council_district":"10,6","cross_st":" YAUPON DR","cross_st_block":"8307","ip_comm_status":"ONLINE","jurisdiction_label":"AUSTIN FULL PURPOSE","location":{"type":"Point","coordinates":[-97.7830505,30.4283123]},"location_latitude":"30.4283123","location_longitude":"-97.7830505","location_name":" SPICEWOOD SPRINGS RD / YAUPON DR","location_type":"ROADWAY","modified_date":"2019-01-01T03:46:00.000","primary_st":" SPICEWOOD SPRINGS RD","primary_st_block":"8468","screenshot_address":"http://162.89.13.145/CCTVImages/CCTV242.jpg","signal_eng_area":"NORTHWEST"}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment