Alternatives to CARTO logo

Alternatives to CARTO

Mapbox, ArcGIS, Tableau, Google Maps, and Leaflet are the most popular alternatives and competitors to CARTO.
39
77
+ 1
3

What is CARTO and what are its top alternatives?

The CARTO platform empowers everyone, from business analysts to data scientists, to turn location data into business outcomes. We accelerate innovation, power new use cases and disrupt business models through Location Intelligence.
CARTO is a tool in the Mapping APIs category of a tech stack.
CARTO is an open source tool with 2.8K GitHub stars and 653 GitHub forks. Here’s a link to CARTO's open source repository on GitHub

Top Alternatives to CARTO

  • Mapbox
    Mapbox

    We make it possible to pin travel spots on Pinterest, find restaurants on Foursquare, and visualize data on GitHub. ...

  • ArcGIS
    ArcGIS

    It is a geographic information system for working with maps and geographic information. It is used for creating and using maps, compiling geographic data, analyzing mapped information, sharing and much more. ...

  • Tableau
    Tableau

    Tableau can help anyone see and understand their data. Connect to almost any database, drag and drop to create visualizations, and share with a click. ...

  • Google Maps
    Google Maps

    Create rich applications and stunning visualisations of your data, leveraging the comprehensiveness, accuracy, and usability of Google Maps and a modern web platform that scales as you grow. ...

  • Leaflet
    Leaflet

    Leaflet is an open source JavaScript library for mobile-friendly interactive maps. It is developed by Vladimir Agafonkin of MapBox with a team of dedicated contributors. Weighing just about 30 KB of gzipped JS code, it has all the features most developers ever need for online maps. ...

  • Postman
    Postman

    It is the only complete API development environment, used by nearly five million developers and more than 100,000 companies worldwide. ...

  • Postman
    Postman

    It is the only complete API development environment, used by nearly five million developers and more than 100,000 companies worldwide. ...

  • Stack Overflow
    Stack Overflow

    Stack Overflow is a question and answer site for professional and enthusiast programmers. It's built and run by you as part of the Stack Exchange network of Q&A sites. With your help, we're working together to build a library of detailed answers to every question about programming. ...

CARTO alternatives & related posts

Mapbox logo

Mapbox

716
112
Design and publish beautiful maps
716
112
PROS OF MAPBOX
  • 28
    Best mapping service outside of Google Maps
  • 22
    OpenStreetMap
  • 15
    Beautifully vectorable
  • 11
    Fluid user experience
  • 8
    Extensible
  • 7
    React/ RNative integration
  • 5
    3D Layers
  • 4
    Low Level API
  • 4
    Affordable
  • 3
    Great customer support
  • 3
    Custom themes
  • 2
    High data volume rendering
CONS OF MAPBOX
    Be the first to leave a con

    related Mapbox posts

    Stephen Gheysens
    Lead Solutions Engineer at Inscribe · | 7 upvotes · 477.8K views

    Google Maps lets "property owners and their authorized representatives" upload indoor maps, but this appears to lack navigation ("wayfinding").

    MappedIn is a platform and has SDKs for building indoor mapping experiences (https://www.mappedin.com/) and ESRI ArcGIS also offers some indoor mapping tools (https://www.esri.com/en-us/arcgis/indoor-gis/overview). Finally, there used to be a company called LocusLabs that is now a part of Atrius and they were often integrated into airlines' apps to provide airport maps with wayfinding (https://atrius.com/solutions/personal-experiences/personal-wayfinder/).

    I previously worked at Mapbox and while I believe that it's a great platform for building map-based experiences, they don't have any simple solutions for indoor wayfinding. If I were doing this for fun as a side-project and prioritized saving money over saving time, here is what I would do:

    • Create a graph-based dataset representing the walking paths around your university, where nodes/vertexes represent the intersections of paths, and edges represent paths (literally paths outside, hallways, short path segments that represent entering rooms). You could store this in a hosted graph-based database like Neo4j, Amazon Neptune , or Azure Cosmos DB (with its Gremlin API) and use built-in "shortest path" queries, or deploy a PostgreSQL service with pgRouting.

    • Add two properties to each edge: one property for the distance between its nodes (libraries like @turf/helpers will have a distance function if you have the latitude & longitude of each node), and another property estimating the walking time (based on the distance). Once you have these values saved in a graph-based format, you should be able to easily query and find the data representation of paths between two points.

    • At this point, you'd have the routing problem solved and it would come down to building a UI. Mapbox arguably leads the industry in developer tools for custom map experiences. You could convert your nodes/edges to GeoJSON, then either upload to Mapbox and create a Tileset to visualize the paths, or add the GeoJSON to the map on the fly.

    *You might be able to use open source routing tools like OSRM (https://github.com/Project-OSRM/osrm-backend/issues/6257) or Graphhopper (instead of a custom graph database implementation), but it would likely be more involved to maintain these services.

    See more

    Which will give a better map (better view, markers options, info window) in an Android OS app?

    Leaflet with Mapbox or Leaflet with OpenStreetMap?

    See more
    ArcGIS logo

    ArcGIS

    137
    20
    A geographic information system for working with maps
    137
    20
    PROS OF ARCGIS
    • 7
      Reponsive
    • 4
      A lot of widgets
    • 4
      Data driven vizualisation
    • 2
      Easy tà learn
    • 2
      3D
    • 1
      Easy API
    CONS OF ARCGIS
      Be the first to leave a con

      related ArcGIS posts

      Stephen Gheysens
      Lead Solutions Engineer at Inscribe · | 7 upvotes · 477.8K views

      Google Maps lets "property owners and their authorized representatives" upload indoor maps, but this appears to lack navigation ("wayfinding").

      MappedIn is a platform and has SDKs for building indoor mapping experiences (https://www.mappedin.com/) and ESRI ArcGIS also offers some indoor mapping tools (https://www.esri.com/en-us/arcgis/indoor-gis/overview). Finally, there used to be a company called LocusLabs that is now a part of Atrius and they were often integrated into airlines' apps to provide airport maps with wayfinding (https://atrius.com/solutions/personal-experiences/personal-wayfinder/).

      I previously worked at Mapbox and while I believe that it's a great platform for building map-based experiences, they don't have any simple solutions for indoor wayfinding. If I were doing this for fun as a side-project and prioritized saving money over saving time, here is what I would do:

      • Create a graph-based dataset representing the walking paths around your university, where nodes/vertexes represent the intersections of paths, and edges represent paths (literally paths outside, hallways, short path segments that represent entering rooms). You could store this in a hosted graph-based database like Neo4j, Amazon Neptune , or Azure Cosmos DB (with its Gremlin API) and use built-in "shortest path" queries, or deploy a PostgreSQL service with pgRouting.

      • Add two properties to each edge: one property for the distance between its nodes (libraries like @turf/helpers will have a distance function if you have the latitude & longitude of each node), and another property estimating the walking time (based on the distance). Once you have these values saved in a graph-based format, you should be able to easily query and find the data representation of paths between two points.

      • At this point, you'd have the routing problem solved and it would come down to building a UI. Mapbox arguably leads the industry in developer tools for custom map experiences. You could convert your nodes/edges to GeoJSON, then either upload to Mapbox and create a Tileset to visualize the paths, or add the GeoJSON to the map on the fly.

      *You might be able to use open source routing tools like OSRM (https://github.com/Project-OSRM/osrm-backend/issues/6257) or Graphhopper (instead of a custom graph database implementation), but it would likely be more involved to maintain these services.

      See more
      Tableau logo

      Tableau

      1.3K
      8
      Tableau helps people see and understand data.
      1.3K
      8
      PROS OF TABLEAU
      • 6
        Capable of visualising billions of rows
      • 1
        Intuitive and easy to learn
      • 1
        Responsive
      CONS OF TABLEAU
      • 3
        Very expensive for small companies

      related Tableau posts

      Looking for the best analytics software for a medium-large-sized firm. We currently use a Microsoft SQL Server database that is analyzed in Tableau desktop/published to Tableau online for users to access dashboards. Is it worth the cost savings/time to switch over to using SSRS or Power BI? Does anyone have experience migrating from Tableau to SSRS /or Power BI? Our other option is to consider using Tableau on-premises instead of online. Using custom SQL with over 3 million rows really decreases performances and results in processing times that greatly exceed our typical experience. Thanks.

      See more
      Shared insights
      on
      TableauTableauQlikQlikPowerBIPowerBI

      Hello everyone,

      My team and I are currently in the process of selecting a Business Intelligence (BI) tool for our actively developing company, which has over 500 employees. We are considering open-source options.

      We are keen to connect with a Head of Analytics or BI Analytics professional who has extensive experience working with any of these systems and is willing to share their insights. Ideally, we would like to speak with someone from companies that have transitioned from proprietary BI tools (such as PowerBI, Qlik, or Tableau) to open-source BI tools, or vice versa.

      If you have any contacts or recommendations for individuals we could reach out to regarding this matter, we would greatly appreciate it. Additionally, if you are personally willing to share your experiences, please feel free to reach out to me directly. Thank you!

      See more
      Google Maps logo

      Google Maps

      41.8K
      567
      Build highly customisable maps with your own content and imagery
      41.8K
      567
      PROS OF GOOGLE MAPS
      • 253
        Free
      • 136
        Address input through maps api
      • 82
        Sharable Directions
      • 47
        Google Earth
      • 46
        Unique
      • 3
        Custom maps designing
      CONS OF GOOGLE MAPS
      • 5
        Google Attributions and logo
      • 2
        Only map allowed alongside google place autocomplete

      related Google Maps posts

      Tom Klein

      Google Analytics is a great tool to analyze your traffic. To debug our software and ask questions, we love to use Postman and Stack Overflow. Google Drive helps our team to share documents. We're able to build our great products through the APIs by Google Maps, CloudFlare, Stripe, PayPal, Twilio, Let's Encrypt, and TensorFlow.

      See more

      A huge component of our product relies on gathering public data about locations of interest. Google Places API gives us that ability in the most efficient way. Since we are primarily going to be using as google data as a source of information for our MVP, we might as well start integrating the Google Places API in our system. We have worked with Google Maps in the past and we might take some inspiration from our previous projects onto this one.

      See more
      Leaflet logo

      Leaflet

      1.4K
      112
      JavaScript library for mobile-friendly interactive maps
      1.4K
      112
      PROS OF LEAFLET
      • 34
        Light weight
      • 29
        Free
      • 12
        Evolutive via plugins
      • 11
        OpenStreetMap
      • 10
        Strong community
      • 7
        Choice of map providers
      • 6
        Easy API
      • 3
        Alternative to Google Maps
      CONS OF LEAFLET
        Be the first to leave a con

        related Leaflet posts

        Which will give a better map (better view, markers options, info window) in an Android OS app?

        Leaflet with Mapbox or Leaflet with OpenStreetMap?

        See more
        Postman logo

        Postman

        95.1K
        1.8K
        Only complete API development environment
        95.1K
        1.8K
        PROS OF POSTMAN
        • 490
          Easy to use
        • 369
          Great tool
        • 276
          Makes developing rest api's easy peasy
        • 156
          Easy setup, looks good
        • 144
          The best api workflow out there
        • 53
          It's the best
        • 53
          History feature
        • 44
          Adds real value to my workflow
        • 43
          Great interface that magically predicts your needs
        • 35
          The best in class app
        • 12
          Can save and share script
        • 10
          Fully featured without looking cluttered
        • 8
          Collections
        • 8
          Option to run scrips
        • 8
          Global/Environment Variables
        • 7
          Shareable Collections
        • 7
          Dead simple and useful. Excellent
        • 7
          Dark theme easy on the eyes
        • 6
          Awesome customer support
        • 6
          Great integration with newman
        • 5
          Documentation
        • 5
          Simple
        • 5
          The test script is useful
        • 4
          Saves responses
        • 4
          This has simplified my testing significantly
        • 4
          Makes testing API's as easy as 1,2,3
        • 4
          Easy as pie
        • 3
          API-network
        • 3
          I'd recommend it to everyone who works with apis
        • 3
          Mocking API calls with predefined response
        • 2
          Now supports GraphQL
        • 2
          Postman Runner CI Integration
        • 2
          Easy to setup, test and provides test storage
        • 2
          Continuous integration using newman
        • 2
          Pre-request Script and Test attributes are invaluable
        • 2
          Runner
        • 2
          Graph
        • 1
          <a href="http://fixbit.com/">useful tool</a>
        CONS OF POSTMAN
        • 10
          Stores credentials in HTTP
        • 9
          Bloated features and UI
        • 8
          Cumbersome to switch authentication tokens
        • 7
          Poor GraphQL support
        • 5
          Expensive
        • 3
          Not free after 5 users
        • 3
          Can't prompt for per-request variables
        • 1
          Import swagger
        • 1
          Support websocket
        • 1
          Import curl

        related Postman posts

        Noah Zoschke
        Engineering Manager at Segment · | 30 upvotes · 3M views

        We just launched the Segment Config API (try it out for yourself here) — a set of public REST APIs that enable you to manage your Segment configuration. A public API is only as good as its #documentation. For the API reference doc we are using Postman.

        Postman is an “API development environment”. You download the desktop app, and build API requests by URL and payload. Over time you can build up a set of requests and organize them into a “Postman Collection”. You can generalize a collection with “collection variables”. This allows you to parameterize things like username, password and workspace_name so a user can fill their own values in before making an API call. This makes it possible to use Postman for one-off API tasks instead of writing code.

        Then you can add Markdown content to the entire collection, a folder of related methods, and/or every API method to explain how the APIs work. You can publish a collection and easily share it with a URL.

        This turns Postman from a personal #API utility to full-blown public interactive API documentation. The result is a great looking web page with all the API calls, docs and sample requests and responses in one place. Check out the results here.

        Postman’s powers don’t end here. You can automate Postman with “test scripts” and have it periodically run a collection scripts as “monitors”. We now have #QA around all the APIs in public docs to make sure they are always correct

        Along the way we tried other techniques for documenting APIs like ReadMe.io or Swagger UI. These required a lot of effort to customize.

        Writing and maintaining a Postman collection takes some work, but the resulting documentation site, interactivity and API testing tools are well worth it.

        See more
        Simon Reymann
        Senior Fullstack Developer at QUANTUSflow Software GmbH · | 27 upvotes · 5.4M views

        Our whole Node.js backend stack consists of the following tools:

        • Lerna as a tool for multi package and multi repository management
        • npm as package manager
        • NestJS as Node.js framework
        • TypeScript as programming language
        • ExpressJS as web server
        • Swagger UI for visualizing and interacting with the API’s resources
        • Postman as a tool for API development
        • TypeORM as object relational mapping layer
        • JSON Web Token for access token management

        The main reason we have chosen Node.js over PHP is related to the following artifacts:

        • Made for the web and widely in use: Node.js is a software platform for developing server-side network services. Well-known projects that rely on Node.js include the blogging software Ghost, the project management tool Trello and the operating system WebOS. Node.js requires the JavaScript runtime environment V8, which was specially developed by Google for the popular Chrome browser. This guarantees a very resource-saving architecture, which qualifies Node.js especially for the operation of a web server. Ryan Dahl, the developer of Node.js, released the first stable version on May 27, 2009. He developed Node.js out of dissatisfaction with the possibilities that JavaScript offered at the time. The basic functionality of Node.js has been mapped with JavaScript since the first version, which can be expanded with a large number of different modules. The current package managers (npm or Yarn) for Node.js know more than 1,000,000 of these modules.
        • Fast server-side solutions: Node.js adopts the JavaScript "event-loop" to create non-blocking I/O applications that conveniently serve simultaneous events. With the standard available asynchronous processing within JavaScript/TypeScript, highly scalable, server-side solutions can be realized. The efficient use of the CPU and the RAM is maximized and more simultaneous requests can be processed than with conventional multi-thread servers.
        • A language along the entire stack: Widely used frameworks such as React or AngularJS or Vue.js, which we prefer, are written in JavaScript/TypeScript. If Node.js is now used on the server side, you can use all the advantages of a uniform script language throughout the entire application development. The same language in the back- and frontend simplifies the maintenance of the application and also the coordination within the development team.
        • Flexibility: Node.js sets very few strict dependencies, rules and guidelines and thus grants a high degree of flexibility in application development. There are no strict conventions so that the appropriate architecture, design structures, modules and features can be freely selected for the development.
        See more
        Postman logo

        Postman

        95.1K
        1.8K
        Only complete API development environment
        95.1K
        1.8K
        PROS OF POSTMAN
        • 490
          Easy to use
        • 369
          Great tool
        • 276
          Makes developing rest api's easy peasy
        • 156
          Easy setup, looks good
        • 144
          The best api workflow out there
        • 53
          It's the best
        • 53
          History feature
        • 44
          Adds real value to my workflow
        • 43
          Great interface that magically predicts your needs
        • 35
          The best in class app
        • 12
          Can save and share script
        • 10
          Fully featured without looking cluttered
        • 8
          Collections
        • 8
          Option to run scrips
        • 8
          Global/Environment Variables
        • 7
          Shareable Collections
        • 7
          Dead simple and useful. Excellent
        • 7
          Dark theme easy on the eyes
        • 6
          Awesome customer support
        • 6
          Great integration with newman
        • 5
          Documentation
        • 5
          Simple
        • 5
          The test script is useful
        • 4
          Saves responses
        • 4
          This has simplified my testing significantly
        • 4
          Makes testing API's as easy as 1,2,3
        • 4
          Easy as pie
        • 3
          API-network
        • 3
          I'd recommend it to everyone who works with apis
        • 3
          Mocking API calls with predefined response
        • 2
          Now supports GraphQL
        • 2
          Postman Runner CI Integration
        • 2
          Easy to setup, test and provides test storage
        • 2
          Continuous integration using newman
        • 2
          Pre-request Script and Test attributes are invaluable
        • 2
          Runner
        • 2
          Graph
        • 1
          <a href="http://fixbit.com/">useful tool</a>
        CONS OF POSTMAN
        • 10
          Stores credentials in HTTP
        • 9
          Bloated features and UI
        • 8
          Cumbersome to switch authentication tokens
        • 7
          Poor GraphQL support
        • 5
          Expensive
        • 3
          Not free after 5 users
        • 3
          Can't prompt for per-request variables
        • 1
          Import swagger
        • 1
          Support websocket
        • 1
          Import curl

        related Postman posts

        Noah Zoschke
        Engineering Manager at Segment · | 30 upvotes · 3M views

        We just launched the Segment Config API (try it out for yourself here) — a set of public REST APIs that enable you to manage your Segment configuration. A public API is only as good as its #documentation. For the API reference doc we are using Postman.

        Postman is an “API development environment”. You download the desktop app, and build API requests by URL and payload. Over time you can build up a set of requests and organize them into a “Postman Collection”. You can generalize a collection with “collection variables”. This allows you to parameterize things like username, password and workspace_name so a user can fill their own values in before making an API call. This makes it possible to use Postman for one-off API tasks instead of writing code.

        Then you can add Markdown content to the entire collection, a folder of related methods, and/or every API method to explain how the APIs work. You can publish a collection and easily share it with a URL.

        This turns Postman from a personal #API utility to full-blown public interactive API documentation. The result is a great looking web page with all the API calls, docs and sample requests and responses in one place. Check out the results here.

        Postman’s powers don’t end here. You can automate Postman with “test scripts” and have it periodically run a collection scripts as “monitors”. We now have #QA around all the APIs in public docs to make sure they are always correct

        Along the way we tried other techniques for documenting APIs like ReadMe.io or Swagger UI. These required a lot of effort to customize.

        Writing and maintaining a Postman collection takes some work, but the resulting documentation site, interactivity and API testing tools are well worth it.

        See more
        Simon Reymann
        Senior Fullstack Developer at QUANTUSflow Software GmbH · | 27 upvotes · 5.4M views

        Our whole Node.js backend stack consists of the following tools:

        • Lerna as a tool for multi package and multi repository management
        • npm as package manager
        • NestJS as Node.js framework
        • TypeScript as programming language
        • ExpressJS as web server
        • Swagger UI for visualizing and interacting with the API’s resources
        • Postman as a tool for API development
        • TypeORM as object relational mapping layer
        • JSON Web Token for access token management

        The main reason we have chosen Node.js over PHP is related to the following artifacts:

        • Made for the web and widely in use: Node.js is a software platform for developing server-side network services. Well-known projects that rely on Node.js include the blogging software Ghost, the project management tool Trello and the operating system WebOS. Node.js requires the JavaScript runtime environment V8, which was specially developed by Google for the popular Chrome browser. This guarantees a very resource-saving architecture, which qualifies Node.js especially for the operation of a web server. Ryan Dahl, the developer of Node.js, released the first stable version on May 27, 2009. He developed Node.js out of dissatisfaction with the possibilities that JavaScript offered at the time. The basic functionality of Node.js has been mapped with JavaScript since the first version, which can be expanded with a large number of different modules. The current package managers (npm or Yarn) for Node.js know more than 1,000,000 of these modules.
        • Fast server-side solutions: Node.js adopts the JavaScript "event-loop" to create non-blocking I/O applications that conveniently serve simultaneous events. With the standard available asynchronous processing within JavaScript/TypeScript, highly scalable, server-side solutions can be realized. The efficient use of the CPU and the RAM is maximized and more simultaneous requests can be processed than with conventional multi-thread servers.
        • A language along the entire stack: Widely used frameworks such as React or AngularJS or Vue.js, which we prefer, are written in JavaScript/TypeScript. If Node.js is now used on the server side, you can use all the advantages of a uniform script language throughout the entire application development. The same language in the back- and frontend simplifies the maintenance of the application and also the coordination within the development team.
        • Flexibility: Node.js sets very few strict dependencies, rules and guidelines and thus grants a high degree of flexibility in application development. There are no strict conventions so that the appropriate architecture, design structures, modules and features can be freely selected for the development.
        See more
        Stack Overflow logo

        Stack Overflow

        69.3K
        893
        Question and answer site for professional and enthusiast programmers
        69.3K
        893
        PROS OF STACK OVERFLOW
        • 257
          Scary smart community
        • 206
          Knows all
        • 142
          Voting system
        • 134
          Good questions
        • 83
          Good SEO
        • 22
          Addictive
        • 14
          Tight focus
        • 10
          Share and gain knowledge
        • 7
          Useful
        • 3
          Fast loading
        • 2
          Gamification
        • 1
          Knows everyone
        • 1
          Experts share experience and answer questions
        • 1
          Stack overflow to developers As google to net surfers
        • 1
          Questions answered quickly
        • 1
          No annoying ads
        • 1
          No spam
        • 1
          Fast community response
        • 1
          Good moderators
        • 1
          Quick answers from users
        • 1
          Good answers
        • 1
          User reputation ranking
        • 1
          Efficient answers
        • 1
          Leading developer community
        CONS OF STACK OVERFLOW
        • 3
          Not welcoming to newbies
        • 3
          Unfair downvoting
        • 3
          Unfriendly moderators
        • 3
          No opinion based questions
        • 3
          Mean users
        • 2
          Limited to types of questions it can accept

        related Stack Overflow posts

        Tom Klein

        Google Analytics is a great tool to analyze your traffic. To debug our software and ask questions, we love to use Postman and Stack Overflow. Google Drive helps our team to share documents. We're able to build our great products through the APIs by Google Maps, CloudFlare, Stripe, PayPal, Twilio, Let's Encrypt, and TensorFlow.

        See more