Quantcast
Channel: CARTO Blog
Viewing all 820 articles
Browse latest View live

Map of the Week: Mapping scent in Cityscapes

$
0
0

As humans, our sense of smell, or olfaction, often triggers the recollection of memorable experiences and the reflexive tuning of our taste buds. How we rectify these triggers with our physical experience informs our response to navigation and often our reaction/attraction to others, areas, and items in our world. In this, the aromatic qualities of our urban landscape absorb a perfume accessory to its inhabitants but often heavily informed by their presence, and ever-important to our experience of geographic space.

A few projects have tackled the geospatial architecture of city scents, and most recently, so has our featured guest blogger. Read on to learn how he built SmellScapes using CartoDB!

If you’ve read up on some recent olfactory map press, you might be familiar with the Smelly Maps of London and Barcelona. These ‘maps of the week’ are brought to you by Rossano Schifanella, an Assistant Professor in Computer Science at the University of Turin, Italy. He designs new mapping tools aware of people’s multi-sensory experience and works on computational methods to model aesthetics, creativity, and social behavior in online platforms. In the following post, he’ll describe how he built these maps, and why.

On Mapping Scent

Humans are able to potentially discriminate between more than one trillion different odors. Yet city officials and urban planners deal only with the management of less than ten bad odors out of a trillion. This negative and oversimplified perspective is mainly due to the difficulty of measuring smell at scale. The goal of this project is to open up a new stream of research that celebrates the positive role that smell has to play in city life and to capture the urban smellscape through the lenses of digital data. The smelly maps of London and Barcelona show at a street segment level the most characteristic smell perceived in the area.

See how animal scents pervade city parks:

Smellscape Datasets

To create the smellscape of a city, first we collected smell-related words from Kate McLean’s work, and then we crawled pictures tagged with those terms from a corpus of Creative Commons Flickr geo-referenced photos. Studying the co-occurrences of smell related words in our photo corpus we were able to automatically detect semantically coherent smell categories (e.g., nature, emissions, food, or animals) that strikingly resembled the smell categories from the literature (for example, the categorization offered by Victoria Henshaw in her book “Urban Smellscapes: Understanding and Designing City Smell Environments”). Once we knew which tag was associated with a particular smell category, we were able to map the smellscape of an entire city simply using the coordinates attached to the Flickr pictures and matching them with the street segment geometry extracted from OpenStreetMap data. The maps in this post show at street segment level the most characteristic smell perceived in a street.

Style Behind Smells

I used a Category style since the map shows categorical data, i.e., each street segment is colored with the smell category that has the highest concentration in the area, while the intensity of the smell is not taken into account in our use case. We wanted to show a high level olfactory footprint of a street that was able to capture which smell a dweller will experience the most walking through that street.

Smell Map Styles in the Wizard

I didn’t use any particular API or library (learning now!), I imported the smell corpus and the OpenStreetMap data using the import wizard and then I filtered the original data with simple SQL statements to show the four most common smell categories for simplicity. I heavily used the CSS tab modifying the lines style attributes that has been crucial to deliver a visually appealing interface.

Sharing SmellScapes with the World

As a newcomer to the CartoDB ecosystem, I was impressed by how straightforward it was to implement a high quality, interactive, and visually appealing map following the wizards and applying a bunch of customizations through the CartoDB Editor interface. The result was ready for being shared with the press in the blink of an eye; the New Scientist, Washington Post, Telegraph, and Wired all took interest!

For a scientist who wants to disseminate his results to a broad audience that’s one of the most valuable features a mapping tool can provide.

As a computer scientist and a geek fascinated by the maps and visualization tools, I’m excited to explore all the features provided by the CartoDB Platform, in particular the ability to manage data through APIs and to perform geospatial analysis on the fly. Currently, I’m using the CartoDB.js library to incorporate smell related information to an external visualization of pleasant routes in a city. So far so cool, stay tuned!

Interested in following up or just keeping apprised? Follow Rossano on Twitter @rschifan, check out all of his maps on his profile page, and read up on the project via the site and the accompanying research paper. And finally follow the work of Rossano’s collaborators: Daniele Quercia (formerly at Yahoo Labs, visiting at University of Cambridge), Luca Maria Aiello (Yahoo Labs), and Kate McLean (Royal College of Art), whose collective efforts made this project possible.

Meantime, happy data mapping!


Let your labels shine!

$
0
0

A few months ago we announced our brand new free basemaps—Positron and Dark Matter—built with OpenStreetMap data and designed with the help of our friends at Stamen; your data will absolutely pop when using them.

Label sandwich in CartoDB

In the process of building Positron and Dark Matter we worked to ensure that layers could be entirely hidden from basemaps or just used separately, both of which can be very effective for specific uses like visualizing OSM data, overlaying cartography features over satellite imagery, or labeling the world in a completely different way.

We are now introducing a new feature that takes advantage of these new layers to make your maps shine even more than usual. Starting today, all CartoDB maps using Positron, Dark Matter, or Stamen Toner basemaps will have the possibility to overlay the labels layer on top of the data layer. Now you can add more spatial context to your maps.

Please see below for more examples of how much maps can be improved with our brand new feature:

Label sandwich in CartoDB

Label sandwich in CartoDB

We have decided to make this new “sandwich” the default option, but in case you’d prefer to use the regular or light versions of the basemaps, you can still choose them in the basemap selector. We know that rendering labels on top of other layers won’t work in certain situations, and that’s why you’ll still have the option to render labels under your data layers.

Label sandwich in CartoDB

Although the related documentation is already published, in the upcoming days we will also explain how all this can be used in cartodb.js and how you can benefit from it by building awesome spatial apps.

We hope you enjoy this new addition, and look forward to hearing your feedback about it. Just email us at support@cartodb.com

Happy data mapping!

Finding the Nearest Neighbor

$
0
0
Won't you be my Neighbor?

Apps with maps, on phones and on the web, are frequently built around “nearest neighbor” queries, sifting through a database to find the records that are contextually appropriate given an input location.

  • Find me all the records that fit in the map!
  • Find me all the records within 1km of the user location!
  • Find me the 10 records nearest to the user!

For “records”, replace with “restaurants” or “gas stations” or “future close friends” depending on the application you are building.

All of these questions can be answered with SQL, and with the CartoDB SQL API it’s easy to send them to the database to get back the data your app needs!

Find Things Within a Box

The map window in an app defines a box, and it’s not uncommon to just want a list of things that are visible right now.

SELECT*FROMmytableWHEREST_Intersects(ST_MakeEnvelope(%minlon,%minlat,%maxlon,%maxlat,4326),the_geom);

The query just builds a query envelope and then finds all the records that intersect it.

Find Things Within a Radius

Frequently an app will use a query point, either the center of a view, or the location of a zip code or other named place to center a radius query.

SELECT*FROMmytableWHEREST_DWithin(ST_Transform(CDB_LatLng(%lat,%lon),3857),the_geom_webmercator,%radius/cos(%lat*pi()/180));

In order to do a distance calculation, this query uses the the_geom_webmercator column, which (surprise!) is in the Mercator projection (aka “EPSG:3857”). Because Mercator distorts features at the poles by stretching them larger, we have to scale up the distance the further north the query is, hence the trigonometry applied to the radius parameter.

Find the Nearest Things

Like the previous example, a query point can seed a list of “things nearest to the point”. Unlike the radius query, we don’t care how far away (or near) the results are, we just want the closest ones.

SELECT*FROMmytableORDERBYthe_geom_webmercator<->ST_Transform(CDB_LatLng(%lat,%lon),3857)LIMIT%numrecords

The query returns the records in order of closest to furthest, stopping when the LIMIT number of records is reached. If you omit the LIMIT you’ll get the whole table back, in sorted order (ouch!).

Take a Risk the Right Way with CartoDB's Financial Risk Whitepaper Assessment

$
0
0

One of the biggest challenges of the 2008 global financial crisis was the inability for financial institutions to handle risk management in a rapidly changing demographic. For businesses to progress post-crisis, re-imagining business intelligence and bringing their companies up-to-date with new technology became an imperative. CartoDB’s financial risk analysis has proposed the best solutions for meeting the needs of financial instutions to handle risks arising from rapidly changing client and customer demographics.

Financial risk

CartoDB has the mapping capabilities financial institutions need to bridge the generational gap. In our latest whitepaper on risk management through spatial analytics and social media GIS visualizations, CartoDB explains why using mapping software not only makes sense but is best when it is made easy. When businesses use spatial analytics and social media to assess risk they not only bring their business model up-to-date but they also incorporate some of the latest in analytics technology.

CartoDB’s road to risk management recovery is one of the best solutions for integrating popular trends and visual analytics into necessary business assessment tools. We’ve taken the knowledge generated from social media data and combined it with geospatial analytics to give businesses insights that allow for the best risk assessments.

Taking a risk doesn’t have to be crisis.

CartoDB will be in San Diego; let's meet up!

$
0
0

Some companies ask their users to follow them, but we love following our users. Since the Esri User Conference will be happening in San Diego next week, we’ll be there to celebrate the geospatial industry. We’ll be at the Half Door Brewing Company, right in the heart of the Gaslamp Quarter, on Sunday July 19th, from
8 p.m. onward for some CartoDBeers and snacks. We’ll also be in San Diego for the week, meeting with partners and clients, so drop me an email if you would like to meet up.

San Diego

The fact is, CartoDB loves companies that have contributed to the growth and expansion of the geospatial industry, where it has always been important for geographers to talk with each other and about our different systems. We recognize this at CartoDB, and we’ve designed our platform from day one to work seamlessly with Esri tools and formats.

Aside from our simple drag-and-drop Esri Shapefile import support, a key feature in CartoDB that demonstrates this integration, is our ArcGIS™ Server connector. With just a few clicks, users of any of our paid plans can synchronize one of their ArcGIS™ Server layers as a CartoDB dataset once or on a schedule, ready for easy visualization and sharing on our platform.

To get more information about it, simply register here.

4 Ideas about the CartoDB Sync Tables functionality

$
0
0

Sync Tables are my favorites; having almost real-time maps without having to code a single line is something that I find amazing, even if this element has been a CartoDB staple for a long time now. This is my personal tribute to the feature, and a list of ideas that I hope you find inspiring.

Sync Tables

Data collection tool using Google Drive.

It’s as easy as creating a Google Drive spreadsheet and connecting it to CartoDB. Design the form on Drive and share it with your visitors. Your maps will reflect the data you have in the spreadsheet being populated with your friends’ and/or visitors’ submissions.

Dynamic analysis with Open Data sources.

Connect data from any data portal in one of the CartoDB’s supported formats by copying the download link and connecting it to CartoDB. Imagine the amount of things you could do if you combine your own data with climate alerts such as storms or hurricanes, traffic data, or even with open311 reports.

Avoid data management issues with the Dropbox connector.

Let’s say that you work with data across different departments but you don’t want to spend money and time on new infrastructure right now. Create a folder on dropbox, share it with your colleagues, connect those datasets to CartoDB, and tell them to override the existing files with the new data whenever they like. Your maps will be refreshed automatically when the data is changed, and you will still have a version you can control thanks to Dropbox itself. Magic!

Monitor Mailchimp campaigns.

Mailchimp connector can also make use of the Sync Tables functionality, so you deploy your email campaign, connect the data to CartoDB, create a map, and put it in “the big screen” so that you and your team will be able to see how it performs and seamlessly run powerful campaigns performance analysis.

Aren’t Sync Tables amazing? Although they are only available under the paid plans, this shouldn’t be a problem since there is a 14-day trial included with all our plans. So no excuse not to try them!

Happy data mapping!

One-Click mapping: The Mapping Revolution

$
0
0

Remember the days before cell phones, when you used to have to wait around at home to take a call? Or when the only way you could buy books, groceries, and clothes was by physically going to a store? Or when you had to select the best way to visualize your data on a map by clicking through various options yourself? No more.

one click Cloropleth example

CartoDB One-Click Mapping has landed. CartoDB already let you jump from datasets to shareable, web-based data visualizations in a matter of seconds. With One-Click Mapping, that jump is even shorter.

Our brand new functionality will analyze your uploaded datasets and make suggestions of columns to visualize, offering you a selection of ready-made maps from the moment you click over to the dashboard. The platform will now give you a variety of sample maps to choose from, tailored to fit your visualization needs.

You’ll be able to scroll through the options to see which visualization will tell the best story about your data without having to do all the investigation yourself. And, of course, the map you choose will remain fully editable, allowing you to make all the fine tweaks your heart desires.

One-Click mapping example

Building One-Click Mapping has been extremely fun for us because we have not seen anything like this before. Even more fun has been seeing it in action and looking at the time we save you by writing code to analyze your datasets!

One-Click Mapping helps with the initial design of your maps by identifying the columns in your datasets that are best suited for mapping, based on some basic rules of thumb for data visualization.

For example, datasets that contain a timestamp column weigh in favor of visualizing with spatio-temporal Torque maps. If we see that another column has very few nulls and several unique values, we’ll suggest a category map. And with just one click, you have access to these pre-styled maps!

For numerical data, our analysis looks at the shape of the histogram to identify the quantification method (which calculates the width of bins for a histogram) that should apply. If the data is highly clustered the algorithm will favor a choropleth map over a bubble map. For choropleths, if the data peaks in the center or on the edges, we apply a divergent color ramp like you see for election maps. Data that falls to the right, left, or is flat gets a sequential color ramp.

Want to use it? Just log into your account and create a new map! Once created, you will see the suggestions dialog in the lower left of your map.

We’re excited for you to try out this feature today; give it a go and let us know what you think of it! This is only our first implementation of the feature, so watch this space for announcements about smarter mapping. This is just the beginning!

Happy data mapping!

Welcome Matt Forrest!

$
0
0

Matt Forrest

Matt Forrest is a map, transit, and technology enthusiast, and now he’s joined our New York office as our new Account Manager. Matt will put his business, project management, and consulting experience to work as he helps our customers analyze their data and build applications with CartoDB.

What were you doing before joining CartoDB?

Just prior, I was the Principal of Cardinal Maps, where I built maps for a wide variety of clients, from transit agencies to NGOs to small businesses. I used CartoDB quite a bit, so I am very familiar with it and really excited to be a part of the team!

What attracted you to CartoDB?

I have been working with CartoDB for a long time as both a user and Partner, and I have enjoyed watching the platform grow and expand. I’m really excited to be a part of where we are heading. I love making maps and CartoDB lets me take an idea to map like no other tool I’ve used before.

What is it about the job that drew you in and keeps you energized?

Learning about what clients are building and what maps they want to make and helping with those ideas is a big passion of mine.

What is your favorite place in NYC?

East Village. Literally any kind of food you could ever want.

What are your interests outside of work? Why?

I like to stay active and take advantage of everything NYC has to offer. I’m also a big fan of the Green Bay Packers and the Wisconsin Badgers. Big fan.

What’s something people might be surprised to know about you?

My first trip to New York City when I was 16. I decided to go on Total Request Live (TRL!) on MTV, and I got to be on the show! The Rock was on the show that day, which was pretty awesome.

Have you had any moments that really helped define your professional path?

I made a map of the skyway system in Minneapolis. The official map is pretty bad, and I decided to restyle it following the aesthetics of a subway map. I tweeted it to one paper in Minneapolis, and within 24 hours it was all over the place. Just seeing that happen and seeing people understand the goal of the map (and actually using it) was something I’ll never forget.


Enterprise Spotlight: PlaceSpeak

$
0
0
PlaceSpeak

CartoDB has always been a big advocate of civic technology. From our partnerships with organizations such as Code for America and rapidly growing grant programs for startups, climate action, and non-profits, we’re always looking for ways to help civic tech organizations and companies excel at what they do best.

Recently, we had the pleasure of collaborating with PlaceSpeak, a Vancouver-based company that has taken cities and civic participation to new heights across the world! With our love for civic technology, beautiful and insightful mapping, and community collaboration, it was only a matter of time before our paths crossed and civic co-creation with cutting edge technology was able to blossom.

PlaceSpeak advances public consultation to a whole new level by enabling evidence-based decision making. Built on the idea that technology can both empower citizens and optimize city processes, their platform allows citizens to influence the decision making process influencing their communities in an open, safe, secure, and transparent manner. PlaceSpeak leverages the “network effect” to encourage civic engagement, notify citizens of relevant consultations in their area, and provide them with the opportunity to contribute direct and meaningful feedback. With business and civic innovation like that, PlaceSpeak is speaking our language!

We set out together with the common goal of creating meaningful collaboration. With CartoDB’s leading-edge GIS technology and PlaceSpeak’s civic data, we created an incredibly beautiful user growth map to help PlaceSpeak not only share their amazing story and help their clients understand their civic engagement growth, but to look good doing it!

To learn more about our collaboration by checking out PlaceSpeak’s blog post about our maps. What will future collaborations hold for PlaceSpeak and CartoDB? Stay tuned to watch our civic collaboration grow!

Happy Data Mapping!

Geocoding with CartoDB: Magic at your fingertips

$
0
0

Sometimes datasets don’t contain any geospatial columns, but they have names, IP addresses, zip codes, or other information that can be translated into coordinates. CartoDB is able to assist you with this type of data.

Geocoding data example

Sometimes we just do magic

When you import a dataset into your CartoDB account, an algorithm looks for data that can be transformed into coordinates (country names, city names, IP addresses, etc.). If there is a low number of duplicate rows and a big enough sample, the algorithm transforms the data for you and pins it on your map. As simple as that—you don’t need to move a finger.

Dealing with complexity smoothly

There are some cases where, for whatever reason, CartoDB cannot georeference your dataset automatically. But don’t panic if this happens—we’ve rebuilt our georeferencing UI so it’s more accessible than ever.

If you’d like your data to be geocoded to administrative regions, zip codes, place names, or even convert IP addresses into locations around the world, you just need to follow the instructions on the UI and give the CartoDB algorithm some hints about how to interpret the data.

And if you’d like to transform address information into coordinates, you can do this, as well. Using our high-resolution geocoder you can convert address information into high-resolution Lat. Long. at a low cost: just $15 per 1,000 rows.

Happy data mapping!

CartoDB in Bogotá, Colombia for Geomatics Week

$
0
0

International Geomatics Week 2015 will take place in Bogotá’s Whyndam Hotel from August 10 - 14, 2015 as part of the Agustín Codazzi Geographical Institute’s 80th anniversary celebrations. The event’s focus is “Geospatial Information for Peacebuilding,” and will consist of talks, workshops, and networking events about innovative cloud-based geospatial technologies, and their applications in the public and private sectors.

Innovation, new technologies, and all things cloud-related are at the very core of CartoDB, so we couldn’t miss this event! Our very own Javier de la Torre will be delivering a keynote on the next generation of geospatial platforms at 9:15 on Tuesday August 11, and hosting a workshop about CartoDB and QGIS on Thursday, August 13. Browse through the full schedule here.

Bogota - Author: https://www.flickr.com/photos/gogeid/

In addition to participating in this event we would like to celebrate the geospatial industry and meet users from the local community. So if you’re in Bogotá next week, please join us and our friends at Kudos for GeoBeers at 6 p.m. on Wednesday, August 12 at the BW Buffalo Wings Capital Towers. We’ll chat about maps, web technologies, and all things data; please confirm your
attendance here.

And last but not least, we’re excited to announce that Kudos will be launching the new QGISCartoDB plugin during the CartoDB-sponsored GeoBeers. This newest version includes performance improvements for data editing, as well as functionalities like multi-user account management and the ability to publish a QGIS project as a map on CartoDB.

Happy data mapping!

Open Call: Insight. A Data and Design Competition

$
0
0

We love our community of mappers, designers, and data-afficionados. Which is why CartoDB is proud to announce: Insight. A Data and Design Competition in conjunction with Measure, a Storefront for Art and Architecture exhibit in New York City!

This open call for submissions brings together data visualization and the built environment in contemporary culture, with the goal of inspiring beautiful, creative, and complex works using CartoDB. Create and submit projects that merge information design and beauty into cultural and spatial insight and you could be awarded $500.00, win premium CartoDB infrastructure, and have your work exhibited at Measure, an exhibition by Storefront for Art and Architecture. Be sure to check out the list of participating artists you could be exhibited with!

At CartoDB we have the pleasure of seeing beautiful, creative, and insightful maps from our community come through our office every day. Many of those maps get the recognition and exposure they deserve in our gallery, publications, and as features on our blog, but too often, some of the most creative and impressive projects don’t. We set out to find ways of elevating our map making community, and teamed up with Storefront for Art and Architecture to celebrate beautifully insightful projects, give away great prizes, and inspire our community to create and share work around the measurable and immeasurable.

measure

New to CartoDB? Getting started making maps and submitting projects to our competition is easy! After creating a free account, checkout our common data and other data resources to make your first visualization in minutes. Our documentation pages and our CartoDB academy courses help you take maps and leverage our platfiorm to the next level.

With so many incredible and insightful projects being built by our community, we wanted to share some love and give back by pitting everyone against each other in a high-stakes free for all! (Just kidding!)

Happy Data Mapping!

TechChange Workshop on Real-time Mapping

$
0
0

At the invitation of Eva Adler and Norman Shamas, I had the pleasure of giving a workshop on CartoDB’s real-time mapping capabilities for the TechChange class Mapping for Social Good. Eva Adler’s course covers an impressive array of material on web mapping related to global development work.

I gave a short workshop introducing the real-time mapping available through CartoDB’s sync tables to create a map that updates hourly with earthquake data pulled from the United States Geological Survey servers. Using the spatial analysis functionality of PostGIS, I showed how to join the dataset of earthquakes (which comes as latitude/longitude points) with the districts of Nepal (which are polygons), producing a map from an on-the-fly calculation. The result visualizes the largest earthquake from the USGS dataset that intersects with a district in Nepal. This is the SQL that I used (names changed for readability):

SELECTn.district_name,n.the_geom_webmercator,max(e.magnitude)Asmax_magnitude,n.cartodb_idFROMnepal_districtsASnJOINall_month_10AseONST_Intersects(n.the_geom,e.the_geom)GROUPBYn.district_name,n.the_geom_webmercator,n.cartodb_id

All you need to do is paste your custom SQL into the SQL tray in the CartoDB Editor when you’re creating your visualization and it will run against your tables to produce the up-to-date map everytime someone looks at it. It’s pretty magical in my opinion! If you want to learn the basics of SQL, checkout our course on SQL and PostGIS in our Map Academy.

Want to get this crash course on mapping real-time data that is beyond just a basic dataset? Take a look at the write up and watch the video.

Mapping for Social Good will be taught again starting October 26, so don’t fret about missing Eva’s course this time around. If you want to get trained in other next-generation skills, check out TechChange’s awesome offerings.

Happy data Mapping!

Come join us at Chi Hacknight!

$
0
0
ChiHackNight

We’re hosting a workshop in Chicago, IL, this week, and you’re invited! Join us for some geo-fun as we take on the Chi-town civic tech scene.

Chicago has one of the best open data portals of any city out there, giving mappers and civic hackers access to data about problem landlords, crime in Chicago, socio-economic factors and much more.

For the past few years one the best ways to learn about this open data and to connect with people and projects that where using it, has been to attend Chi Hacknight (formerly Open Gov Hack Night). This weekly event includes talks by speakers working on interesting civc projects, learning and working groups and time to hack with other civic minded people.

For the past few weeks we have been running a mapping workshop at Chi Hacknight where anyone can come down to get help mapping their data or just to learn about web based maps. If your in Chicago on a Thursday between 6 and 10pm come join us on the 8th floor of the Merchandise Mart. Bring your own data to map or if you don’t have any come along anyway and we can get you started with data sets from the city data portal.

If you need more inspiration on what to come and build take a look at some of these projects that Chi Hacknight attendees have produced with CartoDB:

The hardship index in the greater Chicago area:

Parking meters in Chicago and how much they cost:

Insight Competition Judges Announced!

$
0
0

As our first ever data and design competition ramps up, we at CartoDB and Storefront for Art and Architecture are working hard to make both the competition and the Measure exhibit a big success with our all-star panel of competition judges!

In case you’ve been under a rock the past week, CartoDB in conjunction with Measure, a Storefront for Art and Architecture exhibit in New York City announced Insight: A Data and Design Competition. This open call for submissions brings together data visualization and the built environment in contemporary culture, with the goal of inspiring beautiful, creative, and complex works using CartoDB.

In constructing our competition judges panel, we wanted to bring together great minds from across various technical, data stories, and design professions. Take a look at our all-star panel:

  • Chrys Wu wears many hats, including developer advocate at The New York Times and one of the original founders and local organizers of Hacks/Hackers.

  • Alan McConchie is a Design Technologist at Stamen Design. He is also a PhD candidate studying OpenStreetMap and the social dynamics of crowdsourced map making. Alan also runs the geowebchat monthly Twitter conversation about all things maps and geo.

  • Nadja Popovich is an interactive journalist at The Guardian - US, where she writes and makes graphics with a focus on health, science, and politics. Her work maps data in creative but not always cartographic ways: tracking the trajectory of cultural and social experience or characterizing how our circumstance and surroundings map to us as humans.

  • Simon Rogers is a data journalist, writer, and speaker currently working as the data editor on the Trends team at Google and teaching at Berkeley. Previous to his current positions, Simon created the data blog and worked at Twitter.

  • Eva Franch is the Executive Director and Chief Curator of Storefront for Art and Architecture. In 2014, Franch was selected along with Storefront and a curatorial and design team to curate the U.S. Pavilion at the Venice Architecture Biennale, presenting a project called OfficeUS. As an architect and public intellectual, Franch has taught at many institutions and lectures frequently across the world. She is interested in the importance of alternative practices in the construction and understanding of public life.

judges

What a lineup! If you haven’t done so already, checkout the competition criteria and submit your cultural and spatial insight projects. You could be awarded $500.00, win premium CartoDB infrastructure, and have your work exhibited at Measure, an exhibition by Storefront for Art and Architecture. Be sure to check out the list of participating artists you could be exhibited with!

Good luck!

Happy Data Mapping!


Pitch in at MapLift: Earn Boosted CartoDB Features!

$
0
0
MapLift - Author: http://nacis.org/maplift/

As mappers, you might be familiar with a few theories of cosmology related to how our earth supports itself, the less scientific of them being the most fascinating. In Ancient Greece and Rome, Atlas was the titan who lifted the earth and sky. In A Brief History of Time, the opening anecdote suggests that the earth is flat and supported on the back of a turtle, or a chain of “turtles all the way down”.

While the globes of myth were supported on the shoulders (and shells) of a few, today’s cartography is the crowdsourced result of a world of contributors. We like to think that contemporary mapmakers are building the modern atlas, and resources like Wikipedia support the modern gazeteer. At MapLift you can contribute to both! What’s more, we’ll give you CartoDB support to do so! Read on to learn more about how we’re partnering with NACIS to build a better open gazeteer for the world.

What is MapLift?

MapLift is a weeklong series of events meant to engage the public in mapping for Wikipedia. If you like maps and have ever looked at a Wikipedia reference (which you already have if you’re this far in the blogpost!), then you qualify to participate!

From August 28th through September 4th, join the NACIS (North American Cartographic Society), the FixWikiMaps Project, and CartoDB in improving the quality of encyclopedic maps on the open web.

CartoDB @ MapLift

Aside from our own Wikipedian efforts, we’ll be supporting mappers near and far via upgraded accounts for MapLift members, and by extension NACIS members working with CartoDB!

CartoDB - Author: https://cartodb.com/gallery/

MapLifters benefit from:

  • Free upgraded Academy Accounts, designed particularly for learners and educational explorers
  • Sign up here if you’re a part of MapLift

NACIS members benefit from:

  • Free CartoDB accounts with 100MB of added space
  • Private tables
  • Sync tables
  • 30% off any subsequent account upgrades

Check out the NACIS members benefits page on login to learn how you can redeem your accounts. You can email Aurelia, aurelia@cartodb.com with any questions.

Get Involved!

Help us “lift” maps without the titan Atlas! Sign up for a MapLift event in your area, and check out the NACIS member benefits for your boosted CartoDB account!

Summer Mapping Project

$
0
0

With summer starting to wrap up in the Northern Hemisphere, so are trips to the beach, the mountains, or anywhere in between. What better time than now to highlight all the memories made with your GPS mobile device?

I recently took the train from Beijing, China to St. Petersburg, Russia on my honeymoon. Being a map scientist, I was obviously thinking about maps the whole way, and was able to find some nice ways to track my journey.

Data Collection Toolkit

  • A GeoJSON file of the rail line for most of our journey was helpfully shared as a GitHub Gist.

  • MovesApp gives you back your GPS data in a handy CSV file, nice for putting a trip on the map! This mostly worked but there are some times where my location was interpolated between readings.

  • CartoDB for putting #1 and #2 on the map.

Great Wall

Automation and Parsing

What felt left out was how to incorporate the geo-tagged images I took on my phone. To be able to do this, I needed:

  • Images hosted online so I can include them in the infowindow template;
  • Latitude and longitude stored in the EXIF data for each image;
  • The information from the last two steps in a dataset that I upload to CartoDB.

Naturally, I decided to write a script to automate the whole process. My script is available in my GitHub repo img-mapping.

This Python script extracts the GPS data from each image, pushes each image to an Amazon Web Services S3 bucket, inserts the latitude, longitude, and image URL into a CSV table, and then uses CartoDB’s Import API to get the data in my account.

Olkhon Island and Lake Baikal

Visualization

Next I logged into my CartoDB account to create the map. I made a multilayer map with the bottom layer from the GeoJSON of the train line mentioned above, the second layer the CSV I got from my MovesApp, and the third layer markers representing the position where the pictures were taken. I also threw on a Torque layer for good measure to visualize our position in the time dimension.

The last step was configuring the hovers on the image layer so that the images show when their markers are inspected. Using mustache template notation, you can grab data associated with the marker and have it rendered in HTML. For instance, my templates were styled like this to show images:

<divclass="cartodb-tooltip-content-wrapper"><divclass="cartodb-tooltip-content"><imgsrc="{{url}}"style="width: 150px;"/></div></div>

What kinds of maps can you make for your summer project? Feel free to fork my script and improve on it!

Want more to do? Check out our tutorial on Fulcrum with CartoDB for mapping mobile data. The fitness app Strava allow you to export your data as GPX, which can visualized with CartoDB. If you want some courses to work through, check out our Map Academy.

Happy Mapping!

CartoDB - The Proven Path forward for Google Maps Engine Users

$
0
0
Google Maps

The migration from GME to CartoDB is incredibly easy. Organizations ready to make the switch can maintain the same great platform and elements that make cartography and data visualization great.

CartoDB guarantees the type of flexible scaling that meets even the most demanding enterprise needs. CartoDB can sit on top of the Google Maps platform and perform well no matter how much data you upload and which device you view your maps with. CartoDB supports vector and raster data, has a powerful styling language, a rich set of REST APIs, and is designed to perform under heavy usage without map view limits.

To receive an invitation to our upcoming webinars beginning August 2015 and learn more about the power of CartoDB as a replacement to Google Maps Engine, please complete the form on this page.

Happy data mapping!

CartoDB at SXSW 2016 - Vote for us!

$
0
0
SXSW 2016

Once a year the worlds of tech and music converge in a celebration of all things cool, hip, and innovative. South by Southwest is one of the most important tech events in the United States. Last year, this popular festival received more than 3,500 entries - making panel selection a really competitive process.

It is with great pleasure that CartoDB announces our three submitted panels for SXSW Interactive PanelPicker!

Our co-founder, Segio Alvarez along with Nicolas Belmonte from Uber, Eliot Van Buskirk from Spotify and Jer Thorp from The Office for Creative Research, will be discussing big data and its impact on the human psyche in the proposed panel, The Effect of Big Data on Human Behavior.

Andrew Hill presents an impressive disccusion on how data design and analytics are shaping our world in the suggested panel: How Your Data Can And Will Transform The World.

CartoDB’s Aurelia Moser will explore how time sensitive maps can provide insights into our past and future in the proposed session Mapping Spacetime: Time Travel via Timeless Maps.

This is where we need your help. If you want to hear our panelists in Austin, Texas next March follow these steps:

1) Log in - If you don’t have a SXSW account, sign up

2) Search and select CartoDB’s panels using the above links

3) Start voting by clicking the “thumbs up” button!

Voting is open until September 4, 2015

Thanks and hope to hear us in Austin next March!

Happy mapping!

Two weeks left to submit projects for Insight: A Data and Design Competition!

$
0
0

There have been many exciting happenings this month at CartoDB. From growing our partnership with Code for America, to our upcoming CartoCamp at NYU it’s been a busy week for our community! Earlier this month we also announced Insight. A Data and Design Competition in conjunction with Measure, a Storefront for Art and Architecture exhibit in New York City. We have had a lot of insightful projects already submitted, and with the August 31st deadline just short of two weeks away, we want to inspire our world of map makers to submit some great maps and creative projects!

Since our open call for submissions launched, the submissions have been rolling in and we can’t be more excited. We’ve featured all of the submitted maps at Measure on a rolling basis to be seen by thousands of exhibit goers! We wanted to take the time to celebrate some of these entries, and in the process, inspire you and your creative teams to submit, be displayed at Storefront, and even win some great prizes! Checkout some fo the great submissions below, and check back often for more!


Invisible Neighborhoods

Invisible Neighborhoods uses crowdsourced data to render boundaries and stories from members of the community at large. Participants are free to draw and name neighborhoods, and view those drawn by others. There are no rules about what participants may include in their neighborhood descriptions, which results in a rich mix of social commentary, history, personal experience, and idealistic day dreaming. Checkout the interactive project by clicking below!

insight invisible

I Move

Everywhere I’ve walked or biked in the last 900+ days. Our phone carriers, governments, and software providers have subpoena’able access to our phones location data, and have the ability to use it to build up a fairly complete map of our life. We never get to see this map. What does it look like? What does it say about us? What assumptions can you make about someone’s life this way, and how right or wrong are they?

Internaut Explorer

Our ability to investigate the depths of the Web is severely limited by keyword search. What if we simply want to explore? This project is a novel Web navigation paradigm; millions of pages from an open-content directory (DMOZ.org) placed on an interactive map. It visualizes the directory in a way that can be used for both intentional and accidental information seeking. The serendipity inherent in its visual design is a purposeful characteristic that lets you wander the wilderness of the Web. Checkout the interactive site here or by clicking below!

insight

Time Zones & Cities Map of the World

I conceived of and created this map during Azavea’s Art Hack day in August of 2013. Each year Azavea holds an annual Hack Day, where the whole company works together on projects around a specific theme. The theme for 2013 was “Art Hack Day” with goals of creating art out of data and to work together projects that transcend teams.

This simple map uses cartocss and open data to create a visually appealing interactive map that allows its users to explore the world as a canvas.

Instagramming the High Line

The success of Instagram has created the potential for a new dimension of public participation in the landscape. Enormous volumes of visual data harnessed through the Instagram API Console are at our fingertips, and as viewed on the accompanying maps, the outcomes have the potential to offer practitioners a unique, behind the scenes vantage point.


Talk about inspiration! These are only a few of the many great submissions we’ve received already. If you haven’t done so yet, checkout the competiton criteria and submit your mapping project today! Remember: Submission deadline is August 31st.

Wether you’re new to CartoDB or a seasoned cartographer, Insight is a great opportunity to share and celebrate amazing work! If you’re new, start by creating a free account, then checkout our common data and other data resources to make your first visualization in minutes. Additionally, our documentation pages and our CartoDB academy courses can help even the most seasoned map-maker grow their skills!

Happy Data Mapping!

Viewing all 820 articles
Browse latest View live