I'm creating a spatial table in PostGIS. My geometries are going to be abstract, not related to a real world. So I need some fake SRID. What is the right way to do it?
Is it possible to use a fake projection in PostGIS?
100 views Asked by Alexey Pomelov At
1
There are 1 answers
Related Questions in POSTGIS
- Connecting to Postgres running in a Docker container using psql
- Publishing PostGIS-Raster Using Mapserver
- PostgreSQL: Speed Up Updating a Column using Aggregate Value from Another Column
- Getting inner holes in a multipolygon using PostGis
- How to select all groups of intersecting polygons from a single table using PostGIS
- Polygon overlap queries very slow
- North/South/East/West coordinate in postgis to use with st_contains
- Prepopulating PostGIS with OSM data works with Docker Desktop, but not with Azure pipeline
- TypeORM/NestJS "type "geography" does not exist" when running tests
- Failure to retrieve PostGIS Geometry with Go `orb` and `wkb`
- Defining a unique key on a PostGIS table
- fill psql db -> current transaction is aborted, commands ignored until end of transaction block
- Postgresql: create index issue"Index row requires 23653 maximum size 8191" error 54000
- I have Shape Area and Shape Length of a polygon shapefile. How can I convert these to geometries in PostgreSQL?
- Optimising neighbour query in postgis
Related Questions in PROJECTION
- JPA SPECIFICATION WITH INTERFACE PROJECTIONS
- vertica projections: adding new columns leads to reusing aliases of old columns
- Find the real sizes of a rectangle drawn into an image
- 3D RGB-D Panorama to 3D mesh
- Is there a way to return the aggregate count in a Dynamic Projection with Specification in JPA?
- Projecting a 3D radial density profile into 2D
- Camera calibration for Nuscenes dataset for Radar only
- Is there a way to resample a raster to a lower resolution using a weighted average of constituent pixels?
- Dynamic Projection Mapping with Kinect Fusion
- How to define the restriction of a function to a smaller domain, i.e. the function projection
- i have two geodata frames in geopandas that are not aligning
- Determine vergence point on HL2
- How does the R package `terra` determine the number of dimensions of a raster projected without a template?
- How to plot POP2 grid (POP_gx1v7) data on map with xarray and cartopy?
- JPA return selected OneToMany list in query as single Java object in projection result
Related Questions in SRID
- EPSG:4326 layer on top of a EPSG:27700 base layer
- PostgreSQL: After transforming SRID to 32650, openstreet map doesn't show correct location, working on DBeaver
- MariaDB ignores SRID in ST_PointFromWKB() function. Is this a bug or am I missing something?
- How to change the projection in DataGrip's Geo Viewer?
- Why is MySQL Database not using my spatial index?
- MySQL 8.0.30+ - Check if a POINT() is inside a POLYGON() using SRID 4326
- Error: st_crs(x) == st_crs(y) is not TRUE
- Can someone tell me why this keeps returning degrees instead of meters?
- How is postgis treating coordinates sent with different SRID
- MySQL 8 st_distance_sphere gives different values for different SRID
- Insert new Spatial Reference System (SRID) into SQL Server
- Set SRID in View From XY Data
- Custom SRID in Django-Leaflet
- How to transform an point cloud at once in PostgreSQL with PostGIS
- Is it possible to use a fake projection in PostGIS?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
If your coordinates are not part of any spatial reference system, use
SRID=0.(Or if you have older PostGIS versions, this is
SRID=-1)