Traffic Speed Prediction and Congestion Source Exploration: A

Total Page:16

File Type:pdf, Size:1020Kb

Traffic Speed Prediction and Congestion Source Exploration: A Traffic Speed Prediction and Congestion Source Exploration: A Deep Learning Method Jingyuan Wangy, Qian Guy, Junjie Wuz*, Guannan Liuz, Zhang Xiongyx y School of Computer Science and Engineering, Beihang University, Beijing, China z School of Economics and Management, Beihang University, Beijing, China x Research Institute of Beihang University in Shenzhen, Shenzhen, China Email: fjywang, gqian, wujj, liugn, [email protected], *Corresponding author Abstract—Traffic speed prediction is a long-standing and mostly concerned with traffic flow and congestion predic- critically important topic in the area of Intelligent Trans- tions [4], [5]. Traffic speed prediction, therefore, is still an portation Systems (ITS). Recent years have witnessed the open problem in the deep-learning era, with two notable encouraging potentials of deep neural networks for real- life applications of various domains. Traffic speed prediction, challenges as follows: however, is still in its initial stage without making full use • How to characterize the latent interactions of road seg- of spatio-temporal traffic information. In light of this, in this ments in traffic speeds so as to improve the predictive paper, we propose a deep learning method with an Error- feedback Recurrent Convolutional Neural Network structure performance of a deep neural network? (eRCNN) for continuous traffic speed prediction. By integrating • How to model the abrupt changes of traffic speeds in the spatio-temporal traffic speeds of contiguous road segments case of emerging events such as morning peaks and as an input matrix, eRCNN explicitly leverages the implicit traffic accidents? correlations among nearby segments to improve the predictive accuracy. By further introducing separate error feedback These indeed motivate our study. Specifically, in this neurons to the recurrent layer, eRCNN learns from prediction paper, we propose a deep learning method using an Error- errors so as to meet predictive challenges rising from abrupt feedback Recurrent Convolutional Neural Network (eRC- traffic events such as morning peaks and traffic accidents. NN) for continuous traffic speed prediction. The novel Extensive experiments on real-life speed data of taxis running on the 2nd and 3rd ring roads of Beijing city demonstrate the contributions of our study are summarized as follows. strong predictive power of eRCNN in comparison to some state- First, we take the matrix containing the spatio-temporal of-the-art competitors. The necessity of weight pre-training traffic speeds of contiguous road segments as the input of using a transfer learning notion has also been testified. More eRCNN. By this means, the complicated interactions of interestingly, we design a novel influence function based on traffic speeds among nearby road segments can be captured the deep learning model, and showcase how to leverage it to recognize the congestion sources of the ring roads in Beijing. by eRCNN naturally without elaborative characterization, which is crucial to the high-accuracy prediction of eRCNN. Keywords-Intelligent transportation systems; Deep learning; Spatio-temporal; Time series prediction; Convolutional neural Second, we introduce separate error-feedback neurons to network; the recurrent layer of eRCNN, for the purpose of capturing the prediction errors from the output layer. This empowers eRCNN the ability to model the abrupt changes in traffic I. INTRODUCTION speeds due to some emerging traffic events like the morning Traffic speed prediction, as a sub-direction of traffic peaks and traffic accidents. prediction in the area of Intelligent Transportation Systems Third, we put forward a novel weight pre-training method, (ITS), has long been regarded as a critically important which adopts a transfer-learning notion by clustering similar way for decision making in transportation navigation, travel yet contiguous road segments into a group for the generation scheduling, and traffic management. Traditional models, in- of a same set of initial weights. This “sharing scheme” not cluding auto-regression methods [1] and supervised learning only helps to reduce the learning process of eRCNN for methods such as support vector regression [2] and artificial every road segment, but also improves the chance of finding neural networks [3], all treat traffic speed prediction as better optimal solutions. a time-series forecasting problem, and thus run into the Finally, we design a novel influence function based on bottleneck gradually. the deep learning model, and illustrate how to leverage it to In recent years, with the rapid development of deep recognize the congestion sources of the ring roads in Beijing. learning techniques, more and more researchers in ITS began To the best of our knowledge, we are among the earliest to to adopt deep neural networks for high-accuracy traffic explore how to learn road congestion sources from deep prediction. The rich studies along this line, however, are learning models. downstream of the segment s at the time t, and the row vector vs;: contains traffic speed data of the segment s from time t to t − n. In this way, the input matrix V contains all the speed information that is spatially and temporally adjacent to the variate to be predicted, i.e., vs;t+1. B. The CNN-based Feature Extracting In the eRCNN model, we adopt a CNN-based network structure to extract features from the spatio-temporal input matrix. The CNN structure contains a convolution layer and Figure 1. The framework of the eRCNN model. a pooling layer, and then we introduce the two layers in this subsection. 1) The Convolution Layer: The convolution layer is a Extensive experiments on real-life speed data of taxis core part of the CNN model [6]. The convolution layer con- running on the 2nd and 3rd ring roads of Beijing city demon- nects the spatio-temporal input matrix with several trainable strate the strong predictive power of eRCNN, even with filters, with each being a i × i weight matrix. We define the the presence of state-of-the-art competitors. The inclusion (C) (C) k-th filter as Wk . The convolution layer uses the Wk of spatio-temporal information of contiguous segments, the to zigzag scan the input matrix to calculate a convolution introduction of error-feedback neurons to the recurrent layer, neuron matrix. The (p; q) element of the convolution neuron and the weight pre-training of similar segments, all give a matrix generated by the filter k is calculated by positive boost to the high accuracy of eRCNN. ! Xi Xi p;q x;y p+x;q+y II. THE ERCNN FRAMEWORK ck = sigmoid bk + wk m ; (2) Fig. 1 shows the framework of the eRCNN model con- x=0 y=0 x;y taining five network layers, including the input layer (LI), where bk is a bias for the filter k, wk is the (x; y) (C) the convolution layer (LC), the pooling layer (LP), the p+x;q+y element of Wk , m is the (p + x; q + y) element error-feedback recurrent layer (LeR), and the output layer of the spatio-temporal matrix V. More details about the (LO). The function of the input layer is to organize the implementation of the CNN’s convolution layer could be original traffic speed data as a spatio-temporal input matrix, found in [7]. which can be processed by the CNN layers of eRCNN. The 2) The Pooling Layer: The pooling layer is another function of the convolution layer and the pooling layer is important component of the CNN model, which is used to extract features from the spatio-temporal input matrix. to reduce the dimension of the convolution neuron matrix The function of the error-feedback recurrent layer is to through an average down sampling method. In the proposed compensate prediction errors using predicting results of eRCNN model, the pooling layer divides the convolution previous periods. The output layer uses a modified rectified neuron matrix into j × j disjoint regions, and uses the linear unit to generate the predictions of traffic speeds. averages of each region to represent the characteristic of the A. The Spatio-Temporal Input Matrix convolution neurons in the region. Through the processing of the pooling layer, the dimension of the spatio-temporal In order to exploit spatial and temporal correlation infor- matrix is reduced as about 1/(j × j) of its original size. The mation, we construct a spatio-temporal input matrix in the output of the pooling layer is a feature vector generated input layer. Given a road segment s, we define the traffic through vectoring the down sampled convolution neuron speed of the segment s at the time t as vs;t. When we use matrix, which is denoted as p. the proposed model to predict vs;t+1, the spatio-temporal matrix for the input layer is defined as C. The Error-Feedback Recurrent Layer 2 3 An important characteristic of traffic speed data is the vs−m;t vs−m;t−1 ··· vs−m;t−n 6 7 abrupt change of speed within a short time period. For 6 . 7 6 . ··· . 7 example, during the beginning 30 minutes of morning peaks, 6 7 6 vs−1;t vs−1;t−1 ··· vs−1;t−n 7 the traffic speed of the Beijing ring roads could drop 6 7 V = 6 vs;t vs;t−1 ··· vs;t−n 7 : (1) from 70km/h to 30km/h; while after a rear-end collision 6 7 6 vs+1;t vs+1;t−1 ··· vs+1;t−n 7 traffic accident, the traffic speed could drop from 50km/h to 6 . 7 20km/h. In general, it is hard to predict the traffic conditions 4 . ··· . 5 with these abrupt speed changes using traditional neural v v − ··· v − s+m;t s+m;t 1 s+m;t n network structures. In this way, we introduce an error- The column vector v:t contains traffic speed data of all feedback recurrent layer to improve prediction performance the segments in a range that m segments upstream and of our model in the above scenarios.
Recommended publications
  • The Old Beijing Gets Moving the World’S Longest Large Screen 3M Tall 228M Long
    Digital Art Fair 百年北京 The Old Beijing Gets Moving The World’s Longest Large Screen 3m Tall 228m Long Painting Commentary love the ew Beijing look at the old Beijing The Old Beijing Gets Moving SHOW BEIJING FOLK ART OLD BEIJING and a guest artist serving at the Traditional Chinese Painting Research Institute. executive council member of Chinese Railway Federation Literature and Art Circles, Beijing genre paintings, Wang was made a member of Chinese Artists Association, an Wang Daguan (1925-1997), Beijing native of Hui ethnic group. A self-taught artist old Exhibition Introduction To go with the theme, the sponsors hold an “Old Beijing Life With the theme of “Watch Old Beijing, Love New Beijing”, “The Old Beijing Gets and People Exhibition”. It is based on the 100-meter-long “Three- Moving” Multimedia and Digital Exhibition is based on A Round Glancing of Old Beijing, a Dimensional Miniature of Old Beijing Streets”, which is created by Beijing long painting scroll by Beijing artist Wang Daguan on the panorama of Old Beijing in 1930s. folk artist “Hutong Chang”. Reflecting daily life of the same period, the The digital representation is given by the original group who made the Riverside Scene in the exhibition showcases 120-odd shops and 130-odd trades, with over 300 Tomb-sweeping Day in the Chinese Pavilion of Shanghai World Expo a great success. The vivid and marvelous clay figures among them. In addition, in the exhibition exhibition is on display on an unprecedentedly huge monolithic screen measuring 228 meters hall also display hundreds of various stuffs that people used during the long and 3 meters tall.
    [Show full text]
  • Beijing Office of the Government of the Hong Kong Special Administrative Region
    Practical guide for Hong Kong people living in the Mainland – Beijing For Hong Kong people who are working, living and doing business in the Mainland 1 Contents Introduction of the Beijing Office of the Government of the Hong Kong Special Administrative Region ........................................................... 3 Preface ................................................................................................................. 5 I. An overview of Beijing ........................................................................... 6 II. Housing and living in Beijing .............................................................. 11 Living in Beijing .......................................................................................... 12 Transportation in Beijing ........................................................................... 21 Eating in Beijing ........................................................................................ 26 Visiting in Beijing ...................................................................................... 26 Shopping in Beijing ................................................................................... 27 III. Working in Beijing ................................................................................29 IV. Studying in Beijing ................................................................................ 32 V. Doing business in Beijing .................................................................... 41 Investment environment in Beijing..........................................................
    [Show full text]
  • 1 AMAN SUMMER PALACE AMANYARA Meetings & Corporate Events 1 AMANYARA Meetings & Corporate Events 1
    AMANAMANYARA SUMMER Meetings PALACE & Corporate Events 1 A land that has mystified and fascinated outsiders Activities Guide 中国作为魅力十足的神秘东方古国,数百年来吸引 for centuries, China boasts one of the world’s oldest 着世界游客心驰神往。中国拥有世界上最古老的 civilisations and some of its most recognisable 文明之一和最著名的人工奇迹,如远隔数千年的公 活动指南 landmarks, including the Great Wall. This iconic 元前世纪便屹立在首都北京北部山区的标志性建 structure straddles the mountains north of Beijing, 筑——长城。经过历史朝代的更迭重建,中国拥有 China’s capital, an ancient city dating from the first 众多被列入联合国教科文组织世界遗产名录的名 millennium BC. Rebuilt multiple times through its 胜古迹。如今,北京正以日新月异的速度持续焕发 dynastic history and home to numerous Unesco World 生机。 Heritage Sites, today Beijing’s renewal continues apace. 璀璨的古代文明与时尚的现代气息在北京得以完 A visit to Beijing offers travellers a kaleidoscope of 美的融合。自明朝(1368-1644)开始,北京的城市 old and new. With the Forbidden City at its heart, the 布局便以紫禁城为中心向四周以环形扩散展开。古 capital expands in concentric rings echoing a blueprint 代北京在庙宇和宫殿间留出的狭窄小路便是人们 from the Ming dynasty (1368-1644). Old Beijing is 熟知的胡同,如今北京二环路内偶然可见的残垣 found in the temples, palaces and narrow alleyways 断壁便是早已拆除的城墙原址。 AMAN SUMMER PALACE 2 known as hutongs within the city’s second ring road, 这座历史悠久的城市中心的附近区域却生动地展 the original site of the long-demolished city walls. 现了当代中国的繁荣景象。高耸入云的摩天大楼; 从美术馆,歌剧院到美食餐厅,绚烂多彩的文化和 Around this historic centre, the modern city is a 娱乐选择使这座城市丰富多彩。以闻名遐迩的颐 living showcase of contemporary China. Skyscrapers 和园命名,颐和安缦提供私密优享的入园通道进 reach for the heavens and the city’s rich culture is 入皇家园林。颐和安缦地理位置优越,方便客人前 celebrated with a wealth of cultural and entertainment 往宁静的古长城,距离故宫和北京市中心仅20公里 options, from art galleries and opera houses, to fine ( 约 4 5 分 钟 车 程 )。 dining. Situated alongside the Unesco-protected site that shares its name, Aman Summer Palace provides unparalleled access to this historic garden estate through a private entrance.
    [Show full text]
  • Profiling Underprivileged Residents with Mid-Term Public Transit Smartcard Data of Beijing
    Profiling underprivileged residents with mid-term public transit smartcard data of Beijing Ying Long, Beijing Institute of City Planning, China, [email protected] Xingjian Liu, University of North Carolina at Charlotte, USA Jiangping Zhou, Iowa State University, USA Yizhen Gu, University of California, Berkeley, USA Abstract: Mobility of economically underprivileged residents in China has seldom been well profiled due to privacy issue and the characteristics of Chinese over poverty. In this paper, we identify and characterize underprivileged residents in Beijing using ubiquitous public transport smartcard transactions in 2008 and 2010, respectively. We regard these frequent bus/metro riders (FRs) in China, especially in Beijing, as economically underprivileged residents. Our argument is tested against (1) the household travel survey in 2010, (2) a small-scale survey in 2012, as well as (3) our interviews with local residents in Beijing. Cardholders’ job and residence locations are identified using Smart Card Data (SCD) in 2008 and 2010. Our analysis is restricted to cardholders that use the same cards in both years. We then classify all identified FRs into 20 groups by residence changes (change, no change), workplace changes (change, no change, finding a job, losing a job, and all-time employed) during 2008-2010 and housing place in 2010 (within the fourth ring road or not). The underprivileged degree of each FR is then evaluated using the 2014 SCD. To the best of our knowledge, this is one of the first studies for understanding long- or mid-term urban dynamics using immediate “big data”, and also for profiling underprivileged residents in Beijing in a fine-scale.
    [Show full text]
  • THE NEW FINANCIAL DESTINATION Beijing Lize Financial Business District Office Market Overview and Forecast COLLIERS RADAR OFFICE | RESEARCH | BEIJING | 11 JUNE 2019
    COLLIERS RADAR OFFICE | RESEARCH | BEIJING | 11 JUNE 2019 Emily Cao Associate Director | Research | North China +86 10 8518 1633 [email protected] THE NEW FINANCIAL DESTINATION Beijing Lize Financial Business District Office Market Overview and Forecast COLLIERS RADAR OFFICE | RESEARCH | BEIJING | 11 JUNE 2019 Summary & Recommendations Geographical Green business As the final large scale development area between the 2nd and the 3rd Ring Road of advantage area Beijing, Lize Financial Business District has Lize has the shortest distance to the core office Lize is planned and constructed with high been considered as the 2nd Financial Street in areas among all the emerging office submarkets. standards as most projects are LEED certified. Beijing due to its prime location. With several Only 10+ minutes’ drive to West, South and Also, as the historic capital of the Jin Dynasty, prime office projects already completed, Lize is Fentai Railway Station from Lize. The city Lize has adopted a cultural and ecological fast developing into a new centre for the terminal of Daxing Int’l Airport to be inside Lize approach, making it a green business area that financial industry, especially with the release will largely improve the accessibility. embraces modern creativity and classical roots. of supporting policies in September 2018. Although the Lize office leasing market is still 2.19mn sq metres Competitive rent in the starting stage due to uncompleted infrastructure projects, we expect Lize to see Development of Lize is currently concentrated The net achievable rent in Lize is between rapid development during 2020-2022, after in the southern part. The office projects will be RMB180-210 per sq metre per month, lower rd the improvement of surrounding facilities.
    [Show full text]
  • Residential Care for Elderly People in Beijing, China
    RESIDENTIAL CARE FOR ELDERLY PEOPLE IN BEIJING, CHINA: A Study of the Relationship between Health and Place by YANG CHENG A thesis submitted to the Department of Geography in conformity with the requirements for the degree of Doctor of Philosophy Queen‘s University Kingston, Ontario, Canada April 2010 Copyright © Yang Cheng, 2010 Abstract This thesis is a study of the residential care for elderly people in Beijing, China. First, a set of statistical indicators are developed for mapping the spatial distribution of the elderly population and residential care facilities (RCFs). Secondly, in-depth, semi- structured interviews are used to understand the socio-cultural meanings of access, the decision making process in relocation, the well-being of elderly residents, as well as the challenges of residential care and social welfare reform. In total, 27 elderly residents, 16 family members, and five RCF managers were interviewed in six RCFs in Beijing. The constant comparative method is used to analyze all the transcribed interview materials. There are several major findings resulting from the research: the distribution of the elderly population and residential care resources is geographically uneven across the districts of Beijing and the supply of resources does not match the potential need. Elderly people and their family members choose residential care because of the shortage of community and home care resources and/or the advantages of residential care. The decision making process is a process of balancing geographical factors, quality of services, and financial affordability. Access to residential care is an interactive process influenced by geographical, economic, and social-cultural factors. The physical and socio-cultural environments of RCFs and individual‘s sense of place play important roles in their adaptation and well-being after the relocation from the home to a RCF.
    [Show full text]
  • Chairman Xi Remakes the PLA: Assessing Chinese Military Reforms
    Edited by Saunders, Ding, Chairman Xi Remakes the PLA hina’s current military reforms are unprecedented in their Scobell, Yang, and ambition and in the scale and scope of the organizational Wuthnow ASSESSING CHINESE MILITARY REFORMS Cchanges. Virtually every part of the People’s Liberation Army (PLA) now reports to different leaders, has had its mission and Chairman Xi Remakes the PLA Xi Remakes Chairman responsibilities changed, has lost or gained subordinate units, or has undergone a major internal reorganization. Drawing on papers presented at two conferences co-organized by the U.S. National Defense University, RAND, and Taiwan’s Council REFORMS MILITARY CHINESE ASSESSING of Advanced Policy Studies, this edited volume brings together some of the world’s best experts on the Chinese military to analyze the various dimensions of the reforms in detail and assess their implications for the PLA’s ability to conduct joint operations, for the Chinese Communist Party’s control of the army, and for civil-military integration. The contributors review the drivers and strategic context under- pinning the reform effort, explore the various dimensions of PLA efforts to build a force capable of conducting joint operations, con- sider the implications for the PLA services, and examine Xi Jinping’s role in driving the reforms through and using them to strengthen control over the military. The chapters chronicle successes and outstanding problems in the reform effort, and consider what the net effect will be as the PLA strives to become a “world- class” military by mid-century, if not much sooner. Edited by Phillip C.
    [Show full text]
  • This Article Appeared in the Beijinger's Sep-Oct Issue. Click Through To
    MID-AUTUMN FEST FOODS CAT CAFÉS BIRDING BEIJING TAIPEI 2017/09-10 EXPLORING BEIJING URBAN EXPLORATION, ALT-ACTIVITIES, AND CITY CeNTER HIKES 2017 Pizza Cup For more details, please visit thebeijinger.com or September 16 17 scan the QR code Theme:Carnival Wangjing SOHO Door: RMB 25 Presale: RMB 20 1 SEP/OCT 2017 旗下出版物 A Publication of MID-AUTUMN FEST FOODS CAT CAFÉS BIRDING BEIJING TAIPEI 2 0 1 7/ 0 9 - 1 0 出版发行: 云南出版集团 云南科技出版社有限责任公司 地址: 云南省昆明市环城西路609号, 云南新闻出版大楼2306室 责任编辑: 欧阳鹏, 张磊 书号: 978-7-900747-90-7 E XP LO R I N G BEIJING UR BAN EXPLORATION, ALT- ACTIVITI ES , A N D CI T Y CE NT ER H I K ES Since 2001 | 2001年创刊 thebeijinger.com A Publication of 广告代理: 北京爱见达广告有限公司 地址: 北京市朝阳区关东店北街核桃园30号 孚兴写字楼C座5层, 100020 Advertising Hotline/广告热线: 5941 0368, [email protected] Since 2006 | 2006年创刊 Beijing-kids.com Managing Editor Tom Arnstein Editors Kyle Mullin, Tracy Wang Copy Editor Mary Kate White Contributors Jeremiah Jenne, Andrew Killeen, Robynne Tindall 国际教育 · 家庭生活 · 都市资讯 True Run Media Founder & CEO Michael Wester Owner & Co-Founder Toni Ma 菁 彩 成 长 :孩 子 有 Art Director Susu Luo 认 知 障 碍 怎 么 办 ? How Can Parents Help Kids Designer Vila Wu With Special Needs? Production Manager Joey Guo Content Marketing Manager Robynne Tindall Marketing Director Lareina Yang Events & Brand Manager Mu Yu Marketing Team Helen Liu, Cindy Zhang 封面故事 教 育 创 新 , 未 来 可 期 Head of HR & Admin Tobal Loyola Innovative Education for the Future Finance Manager Judy Zhao Accountant Vicky Cui Since 2012 | 2012年创刊 Jingkids.com HR & Admin Officer Cao Zheng Digital Development Director
    [Show full text]
  • Predictability of Road Traffic and Congestion in Urban Areas
    RESEARCH ARTICLE Predictability of Road Traffic and Congestion in Urban Areas Jingyuan Wang1,2*, Yu Mao1, Jing Li1, Zhang Xiong1, Wen-Xu Wang3 1 School of Computer Science and Engineering, Beihang University, Beijing, China, 2 Research Institute in Shenzhen, Beihang University, Shenzhen, China, 3 School of Systems Science, Beijing Normal University, Beijing, China * [email protected] a11111 Abstract Mitigating traffic congestion on urban roads, with paramount importance in urban develop- ment and reduction of energy consumption and air pollution, depends on our ability to fore- see road usage and traffic conditions pertaining to the collective behavior of drivers, raising a significant question: to what degree is road traffic predictable in urban areas? Here we OPEN ACCESS rely on the precise records of daily vehicle mobility based on GPS positioning device in- stalled in taxis to uncover the potential daily predictability of urban traffic patterns. Using the Citation: Wang J, Mao Y, Li J, Xiong Z, Wang W-X (2015) Predictability of Road Traffic and Congestion mapping from the degree of congestion on roads into a time series of symbols and measur- in Urban Areas. PLoS ONE 10(4): e0121825. ing its entropy, we find a relatively high daily predictability of traffic conditions despite the ab- doi:10.1371/journal.pone.0121825 sence of any priori knowledge of drivers' origins and destinations and quite different travel Academic Editor: Matjaz Perc, University of Maribor, patterns between weekdays and weekends. Moreover, we find a counterintuitive depen- SLOVENIA dence of the predictability on travel speed: the road segment associated with intermediate Received: November 23, 2014 average travel speed is most difficult to be predicted.
    [Show full text]
  • UNWTO-WTCF City Tourism Performance Research Beijing Case Study
    UNWTO-WTCF City Tourism Performance Research Beijing Case Study Note: This document is a working paper 1 / 74 Contents Background .................................................................................................................... 4 1. Introduction to Beijing – the City .............................................................................. 5 2. Tourism Development in Beijing............................................................................... 8 2.1 Size of the Tourism Market ............................................................................. 8 2.2 Supply of Tourism Industry ............................................................................. 9 2.3 Investment in the Tourism Industry ............................................................... 13 2.4 Future Challenges .......................................................................................... 14 3. Findings of Beijing Tourism Performance Research(1): Destination Management 16 3.1 Destination Growth Strategy.......................................................................... 16 3.1.1 Destination Management Organization and Governance Structure.... 16 3.1.2 Vision for Tourism Development ....................................................... 21 3.1.3 Policies for Tourism Development ..................................................... 23 3.1.4 Sustainable Tourism Policy and Regulations ..................................... 25 3.1.5 Differentiation of the Destination ......................................................
    [Show full text]
  • MODERNIZING BEIJING a Thesis by Rutger Kuipers Content
    MODERNIZING BEIJING A thesis by Rutger Kuipers Content I Thesis ‘Modernizing Beijing’ Abstract and Acknowledgement 3 Introduction 4 1 History 7 1. China’s ancient architectural history 1.. General features 1..2 Imperial architecture 8 1..3 Residential architecture 9 1..4 Hutongs 0 1.2 Periods of Modernisation until 978 1.3 Rising China (after 978) 6 1.4 China’s future development and goals 9 2 Reconstructing Beijing 20 2. City planning and architecture of Beijing 2.2 Architectural debates on Beijing 23 2.2. Discussing Koolhaas’ CCTV 26 3 Theoretical framework 28 3. Regionalism 3.2 Supermodernism 3.3 Critical Regionalism 3.4 Defamiliarization 29 4 Case Studies in Beijing 32 4. Wu Liangyong: Ju’er Hutong 4.2 Steven Holl: Linked Hybrid 33 4.3 Andreu: National Theatre 34 5 Conclusions 36 Additions 37 References 39 Pictorial references 40 Modernizing Beijing Rutger H. Kuipers TU Delft MSc3 II Impressions of Beijing III Analyses and precedents IV Location Modernizing Beijing Rutger H. Kuipers TU Delft MSc3 2 Abstract Acknowledgement By modernizing the city, Beijing is upgrading to a Special thanks goes out to Karina Moraes Zarzar, higher level of prosperity. At the same time though Marc Koehler and to the mentors of the ExploreLab we see the reverse side of a global development, Studio for supporting me on this project. the interventions in the city ruin parts of the city by destroying its traditional architecture, in particular the Thanks to the founders of the ExploreLab Studio at traditional hutong-areas, which are one of the main TU Delft for providing the possibility of a graduation characteristics of this city, and which carry a long project based on personal interest.
    [Show full text]
  • Beijing City Lab
    Beijing City Lab Long Y, Liu X, Zhou J, Gu Y, 2014, Profiling underprivileged residents with mid- term public transit smartcard data of Beijing. Beijing City Lab. Working paper #44 Profiling underprivileged residents with mid-term public transit smartcard data of Beijing Ying Long, Beijing Institute of City Planning, China, [email protected] Xingjian Liu, University of North Carolina at Charlotte, USA Jiangping Zhou, Iowa State University, USA Yizhen Gu, University of California, Berkeley, USA Abstract: Mobility of economically underprivileged residents in China has seldom been well profiled due to privacy issue and the characteristics of Chinese over poverty. In this paper, we identify and characterize underprivileged residents in Beijing using overwhelmingly available public transport smartcard transactions in 2008 and 2010, respectively. We regard these frequent bus/metro riders (FRs) in China, especially in Beijing, as economically underprivileged residents, which has been proved by (1) the household travel survey in 2010, (2) a small-scale survey in 2012, as well as (3) our interviews with local residents in Beijing. Places of residence and work of cardholders are identified using the SCD in 2008 and 2010, respectively, in which a cardholder’s unique card ID kept the same. We then profile all FRs identified into 20 groups in terms of their place of residence variation (change, no change), workplace variation (change, no change, find a job, lose a job, and jobless all the time) during 2008-2010 and housing place in 2010 (within the fourth ring road or not) for deriving policy implications for practitioners. The underprivileged degree of each FR is then evaluated using the 2014 SCD.
    [Show full text]